From 8990855f88c8cf0803bcf7220699c54b46b0d546 Mon Sep 17 00:00:00 2001 From: Robin Appelman <icewind@owncloud.com> Date: Wed, 29 Aug 2012 21:52:42 +0200 Subject: add OC.get and OC.set to get/set variables by name in javascript --- core/js/js.js | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) (limited to 'core') diff --git a/core/js/js.js b/core/js/js.js index c38eebbff29..0a7c84f61da 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -587,3 +587,40 @@ function formatDate(date){ t('files','July'), t('files','August'), t('files','September'), t('files','October'), t('files','November'), t('files','December') ]; return monthNames[date.getMonth()]+' '+date.getDate()+', '+date.getFullYear()+', '+((date.getHours()<10)?'0':'')+date.getHours()+':'+((date.getMinutes()<10)?'0':'')+date.getMinutes(); } + +/** + * get a variable by name + * @param string name + */ +OC.get=function(name) { + var namespaces = name.split("."); + var tail = namespaces.pop(); + var context=window; + + for(var i = 0; i < namespaces.length; i++) { + context = context[namespaces[i]]; + if(!context){ + return false; + } + } + return context[tail]; +} + +/** + * set a variable by name + * @param string name + * @param mixed value + */ +OC.set=function(name, value) { + var namespaces = name.split("."); + var tail = namespaces.pop(); + var context=window; + + for(var i = 0; i < namespaces.length; i++) { + if(!context[namespaces[i]]){ + context[namespaces[i]]={}; + } + context = context[namespaces[i]]; + } + context[tail]=value; +} -- cgit v1.2.3 From 6324daecc08e947e9290228a5bf6dca49ceeabaa Mon Sep 17 00:00:00 2001 From: Bart Visscher <bartv@thisnet.nl> Date: Thu, 30 Aug 2012 23:10:24 +0200 Subject: Don't wait for document ready for setting requesttoken --- core/templates/layout.user.php | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'core') diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index 2abe4da8538..a2560b755fa 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -31,14 +31,10 @@ ?> <?php endforeach; ?> <script type="text/javascript"> - $(function() { - requesttoken = '<?php echo $_['requesttoken']; ?>'; - OC.EventSource.requesttoken=requesttoken; - $(document).bind('ajaxSend', function(elm, xhr, s){ - if(requesttoken) { - xhr.setRequestHeader('requesttoken', requesttoken); - } - }); + requesttoken = '<?php echo $_['requesttoken']; ?>'; + OC.EventSource.requesttoken=requesttoken; + $(document).bind('ajaxSend', function(elm, xhr, s){ + xhr.setRequestHeader('requesttoken', requesttoken); }); </script> </head> -- cgit v1.2.3 From 61a3e5f96b5019f89587e8cead63988f274d140e Mon Sep 17 00:00:00 2001 From: Jörn Friedrich Dreyer <jfd@butonic.de> Date: Fri, 31 Aug 2012 00:59:10 +0200 Subject: unify permissions (1/3): add permission conastants to javascript OC --- core/js/js.js | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'core') diff --git a/core/js/js.js b/core/js/js.js index 0a7c84f61da..7ce349a2147 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -40,6 +40,11 @@ function fileDownloadPath(dir, file) { } OC={ + PERMISSION_CREATE:4, + PERMISSION_READ:1, + PERMISSION_UPDATE:2, + PERMISSION_DELETE:8, + PERMISSION_SHARE:16, webroot:oc_webroot, appswebroots:oc_appswebroots, currentUser:(typeof oc_current_user!=='undefined')?oc_current_user:false, -- cgit v1.2.3 From 3ba27e624f2c36044a982bc0cd69f07106e61e96 Mon Sep 17 00:00:00 2001 From: Jörn Friedrich Dreyer <jfd@butonic.de> Date: Fri, 31 Aug 2012 01:05:36 +0200 Subject: unify permissions (2/3): change apps to use OC::PERMISSION_X --- apps/files/js/fileactions.js | 8 ++++---- apps/files_sharing/js/public.js | 2 +- apps/files_sharing/js/share.js | 2 +- apps/files_versions/js/versions.js | 2 +- core/js/share.js | 36 ++++++++++++++++++------------------ 5 files changed, 25 insertions(+), 25 deletions(-) (limited to 'core') diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index 89e7bdd7ad7..f587e99f966 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -156,12 +156,12 @@ $(document).ready(function(){ } else { var downloadScope = 'file'; } - FileActions.register(downloadScope,'Download', FileActions.PERMISSION_READ, function(){return OC.imagePath('core','actions/download')},function(filename){ + FileActions.register(downloadScope,'Download', OC.PERMISSION_READ, function(){return OC.imagePath('core','actions/download')},function(filename){ window.location=OC.filePath('files', 'ajax', 'download.php') + encodeURIComponent('?files='+encodeURIComponent(filename)+'&dir='+encodeURIComponent($('#dir').val())); }); }); -FileActions.register('all','Delete', FileActions.PERMISSION_DELETE, function(){return OC.imagePath('core','actions/delete')},function(filename){ +FileActions.register('all','Delete', OC.PERMISSION_DELETE, function(){return OC.imagePath('core','actions/delete')},function(filename){ if(Files.cancelUpload(filename)) { if(filename.substr){ filename=[filename]; @@ -179,11 +179,11 @@ FileActions.register('all','Delete', FileActions.PERMISSION_DELETE, function(){r $('.tipsy').remove(); }); -FileActions.register('all','Rename', FileActions.PERMISSION_UPDATE, function(){return OC.imagePath('core','actions/rename')},function(filename){ +FileActions.register('all','Rename', OC.PERMISSION_UPDATE, function(){return OC.imagePath('core','actions/rename')},function(filename){ FileList.rename(filename); }); -FileActions.register('dir','Open', FileActions.PERMISSION_READ, '', function(filename){ +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); }); diff --git a/apps/files_sharing/js/public.js b/apps/files_sharing/js/public.js index 1ab61d476ec..92b626bba18 100644 --- a/apps/files_sharing/js/public.js +++ b/apps/files_sharing/js/public.js @@ -10,7 +10,7 @@ $(document).ready(function() { // Show file preview if previewer is available, images are already handled by the template if (mimetype.substr(0, mimetype.indexOf('/')) != 'image') { // Trigger default action if not download TODO - var action = FileActions.getDefault(mimetype, 'file', FileActions.PERMISSION_READ); + var action = FileActions.getDefault(mimetype, 'file', OC.PERMISSION_READ); if (typeof action === 'undefined') { $('#noPreview').show(); } else { diff --git a/apps/files_sharing/js/share.js b/apps/files_sharing/js/share.js index 79ab4adebac..a171751589a 100644 --- a/apps/files_sharing/js/share.js +++ b/apps/files_sharing/js/share.js @@ -2,7 +2,7 @@ $(document).ready(function() { if (typeof OC.Share !== 'undefined' && typeof FileActions !== 'undefined') { OC.Share.loadIcons('file'); - FileActions.register('all', 'Share', FileActions.PERMISSION_READ, function(filename) { + FileActions.register('all', 'Share', OC.PERMISSION_READ, function(filename) { // Return the correct sharing icon if (scanFiles.scanning) { return; } // workaround to prevent additional http request block scanning feedback if ($('#dir').val() == '/') { diff --git a/apps/files_versions/js/versions.js b/apps/files_versions/js/versions.js index e34a6f50cac..a9cf6171e45 100644 --- a/apps/files_versions/js/versions.js +++ b/apps/files_versions/js/versions.js @@ -11,7 +11,7 @@ $(document).ready(function() { $(document).ready(function(){ if (typeof FileActions !== 'undefined') { // Add history button to files/index.php - FileActions.register('file','History', FileActions.PERMISSION_UPDATE, function(){return OC.imagePath('core','actions/history')},function(filename){ + FileActions.register('file','History', OC.PERMISSION_UPDATE, function(){return OC.imagePath('core','actions/history')},function(filename){ if (scanFiles.scanning){return;}//workaround to prevent additional http request block scanning feedback diff --git a/core/js/share.js b/core/js/share.js index 8bfbdd36e19..f8ff6907329 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -129,7 +129,7 @@ OC.Share={ } html += '<br />'; } - if (possiblePermissions & OC.Share.PERMISSION_SHARE) { + if (possiblePermissions & OC.PERMISSION_SHARE) { html += '<input id="shareWith" type="text" placeholder="Share with" />'; html += '<ul id="shareWithList">'; html += '</ul>'; @@ -187,7 +187,7 @@ OC.Share={ var shareWith = selected.item.value.shareWith; $(this).val(shareWith); // Default permissions are Read and Share - var permissions = OC.Share.PERMISSION_READ | OC.Share.PERMISSION_SHARE; + var permissions = OC.PERMISSION_READ | OC.PERMISSION_SHARE; OC.Share.share(itemType, itemSource, shareType, shareWith, permissions, function() { OC.Share.addShareWith(shareType, shareWith, permissions, possiblePermissions); $('#shareWith').val(''); @@ -224,24 +224,24 @@ OC.Share={ } OC.Share.itemShares[shareType].push(shareWith); var editChecked = createChecked = updateChecked = deleteChecked = shareChecked = ''; - if (permissions & OC.Share.PERMISSION_CREATE) { + if (permissions & OC.PERMISSION_CREATE) { createChecked = 'checked="checked"'; editChecked = 'checked="checked"'; } - if (permissions & OC.Share.PERMISSION_UPDATE) { + if (permissions & OC.PERMISSION_UPDATE) { updateChecked = 'checked="checked"'; editChecked = 'checked="checked"'; } - if (permissions & OC.Share.PERMISSION_DELETE) { + if (permissions & OC.PERMISSION_DELETE) { deleteChecked = 'checked="checked"'; editChecked = 'checked="checked"'; } - if (permissions & OC.Share.PERMISSION_SHARE) { + if (permissions & OC.PERMISSION_SHARE) { shareChecked = 'checked="checked"'; } var html = '<li style="clear: both;" data-share-type="'+shareType+'" data-share-with="'+shareWith+'">'; html += shareWith; - if (possiblePermissions & OC.Share.PERMISSION_CREATE || possiblePermissions & OC.Share.PERMISSION_UPDATE || possiblePermissions & OC.Share.PERMISSION_DELETE) { + if (possiblePermissions & OC.PERMISSION_CREATE || possiblePermissions & OC.PERMISSION_UPDATE || possiblePermissions & OC.PERMISSION_DELETE) { if (editChecked == '') { html += '<label style="display:none;">'; } else { @@ -252,17 +252,17 @@ OC.Share={ html += '<a href="#" class="showCruds" style="display:none;"><img class="svg" alt="Unshare" src="'+OC.imagePath('core', 'actions/triangle-s')+'"/></a>'; html += '<a href="#" class="unshare" style="display:none;"><img class="svg" alt="Unshare" src="'+OC.imagePath('core', 'actions/delete')+'"/></a>'; html += '<div class="cruds" style="display:none;">'; - if (possiblePermissions & OC.Share.PERMISSION_CREATE) { - html += '<label><input type="checkbox" name="create" class="permissions" '+createChecked+' data-permissions="'+OC.Share.PERMISSION_CREATE+'" />create</label>'; + if (possiblePermissions & OC.PERMISSION_CREATE) { + html += '<label><input type="checkbox" name="create" class="permissions" '+createChecked+' data-permissions="'+OC.PERMISSION_CREATE+'" />create</label>'; } - if (possiblePermissions & OC.Share.PERMISSION_UPDATE) { - html += '<label><input type="checkbox" name="update" class="permissions" '+updateChecked+' data-permissions="'+OC.Share.PERMISSION_UPDATE+'" />update</label>'; + if (possiblePermissions & OC.PERMISSION_UPDATE) { + html += '<label><input type="checkbox" name="update" class="permissions" '+updateChecked+' data-permissions="'+OC.PERMISSION_UPDATE+'" />update</label>'; } - if (possiblePermissions & OC.Share.PERMISSION_DELETE) { - html += '<label><input type="checkbox" name="delete" class="permissions" '+deleteChecked+' data-permissions="'+OC.Share.PERMISSION_DELETE+'" />delete</label>'; + if (possiblePermissions & OC.PERMISSION_DELETE) { + html += '<label><input type="checkbox" name="delete" class="permissions" '+deleteChecked+' data-permissions="'+OC.PERMISSION_DELETE+'" />delete</label>'; } - if (possiblePermissions & OC.Share.PERMISSION_SHARE) { - html += '<label><input type="checkbox" name="share" class="permissions" '+shareChecked+' data-permissions="'+OC.Share.PERMISSION_SHARE+'" />share</label>'; + if (possiblePermissions & OC.PERMISSION_SHARE) { + html += '<label><input type="checkbox" name="share" class="permissions" '+shareChecked+' data-permissions="'+OC.PERMISSION_SHARE+'" />share</label>'; } html += '</div>'; html += '</li>'; @@ -386,7 +386,7 @@ $(document).ready(function() { $(checkboxes).filter('input[name="edit"]').attr('checked', true); } } - var permissions = OC.Share.PERMISSION_READ; + var permissions = OC.PERMISSION_READ; $(checkboxes).filter(':not(input[name="edit"])').filter(':checked').each(function(index, checkbox) { permissions |= $(checkbox).data('permissions'); }); @@ -398,7 +398,7 @@ $(document).ready(function() { var itemSource = $('#dropdown').data('item-source'); if (this.checked) { // Create a link - OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, '', OC.Share.PERMISSION_READ, function() { + OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, '', OC.PERMISSION_READ, function() { OC.Share.showLink(itemSource); // TODO Change icon }); @@ -423,7 +423,7 @@ $(document).ready(function() { if (event.keyCode == 13) { var itemType = $('#dropdown').data('item-type'); var itemSource = $('#dropdown').data('item-source'); - OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, $(this).val(), OC.Share.PERMISSION_READ, function() { + OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, $(this).val(), OC.PERMISSION_READ, function() { $('#linkPassText').val(''); $('#linkPassText').attr('placeholder', 'Password protected'); }); -- cgit v1.2.3 From ca8120e9f429ba088a9ff6b525ae0762fd7d4f07 Mon Sep 17 00:00:00 2001 From: Jörn Friedrich Dreyer <jfd@butonic.de> Date: Fri, 31 Aug 2012 01:08:38 +0200 Subject: unify permissions (3/3): remove old PERMISSION_X from FileActions & OC.Share --- apps/files/js/fileactions.js | 5 ----- core/js/share.js | 5 ----- 2 files changed, 10 deletions(-) (limited to 'core') diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index f587e99f966..ea3522cb101 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -1,9 +1,4 @@ FileActions={ - PERMISSION_CREATE:4, - PERMISSION_READ:1, - PERMISSION_UPDATE:2, - PERMISSION_DELETE:8, - PERMISSION_SHARE:16, actions:{}, defaults:{}, icons:{}, diff --git a/core/js/share.js b/core/js/share.js index f8ff6907329..642c2e1fe4f 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -3,11 +3,6 @@ OC.Share={ SHARE_TYPE_GROUP:1, SHARE_TYPE_LINK:3, SHARE_TYPE_EMAIL:4, - PERMISSION_CREATE:4, - PERMISSION_READ:1, - PERMISSION_UPDATE:2, - PERMISSION_DELETE:8, - PERMISSION_SHARE:16, itemShares:[], statuses:[], droppedDown:false, -- cgit v1.2.3 From 75cd7eacf8b7e130c94c258bf86502a06a5b2d17 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud <thomas.mueller@tmit.eu> Date: Fri, 31 Aug 2012 02:07:19 +0200 Subject: [tx-robot] updated from transifex --- apps/files/l10n/de.php | 8 +- apps/files/l10n/fr.php | 8 +- apps/files/l10n/lv.php | 24 +++- apps/files_external/l10n/es.php | 7 +- apps/files_external/l10n/eu.php | 1 + apps/files_sharing/l10n/ca.php | 4 +- apps/files_sharing/l10n/de.php | 4 +- apps/files_sharing/l10n/es.php | 8 +- apps/files_sharing/l10n/eu.php | 8 +- apps/files_sharing/l10n/fi_FI.php | 8 +- apps/files_sharing/l10n/fr.php | 4 +- apps/files_sharing/l10n/it.php | 4 +- apps/files_sharing/l10n/ja_JP.php | 4 +- apps/files_sharing/l10n/pl.php | 8 +- apps/files_sharing/l10n/ru.php | 4 +- apps/files_sharing/l10n/sl.php | 4 +- apps/files_sharing/l10n/sv.php | 4 +- apps/files_sharing/l10n/th_TH.php | 4 +- apps/user_ldap/l10n/eu.php | 1 + apps/user_ldap/l10n/pl.php | 1 + apps/user_ldap/l10n/ro.php | 1 + core/l10n/de.php | 2 +- core/l10n/fr.php | 28 ++-- l10n/af/core.po | 32 ++--- l10n/af/files.po | 35 +++-- l10n/af/files_sharing.po | 12 +- l10n/af/settings.po | 4 +- l10n/ar/core.po | 32 ++--- l10n/ar/files.po | 35 +++-- l10n/ar/files_sharing.po | 12 +- l10n/ar/settings.po | 4 +- l10n/ar_SA/core.po | 32 ++--- l10n/ar_SA/files.po | 35 +++-- l10n/ar_SA/files_sharing.po | 12 +- l10n/ar_SA/settings.po | 4 +- l10n/bg_BG/core.po | 32 ++--- l10n/bg_BG/files.po | 35 +++-- l10n/bg_BG/files_sharing.po | 12 +- l10n/bg_BG/settings.po | 4 +- l10n/ca/core.po | 34 ++--- l10n/ca/files.po | 35 +++-- l10n/ca/files_sharing.po | 14 +- l10n/ca/settings.po | 6 +- l10n/cs_CZ/core.po | 32 ++--- l10n/cs_CZ/files.po | 35 +++-- l10n/cs_CZ/files_sharing.po | 12 +- l10n/cs_CZ/settings.po | 4 +- l10n/da/core.po | 32 ++--- l10n/da/files.po | 35 +++-- l10n/da/files_sharing.po | 12 +- l10n/da/settings.po | 4 +- l10n/de/core.po | 34 ++--- l10n/de/files.po | 45 +++--- l10n/de/files_sharing.po | 14 +- l10n/de/settings.po | 14 +- l10n/de/user_ldap.po | 6 +- l10n/el/core.po | 32 ++--- l10n/el/files.po | 35 +++-- l10n/el/files_sharing.po | 12 +- l10n/el/settings.po | 4 +- l10n/eo/core.po | 32 ++--- l10n/eo/files.po | 35 +++-- l10n/eo/files_sharing.po | 12 +- l10n/eo/settings.po | 4 +- l10n/es/core.po | 32 ++--- l10n/es/files.po | 35 +++-- l10n/es/files_external.po | 17 +-- l10n/es/files_sharing.po | 19 ++- l10n/es/settings.po | 4 +- l10n/et_EE/core.po | 32 ++--- l10n/et_EE/files.po | 37 ++--- l10n/et_EE/files_sharing.po | 12 +- l10n/et_EE/settings.po | 4 +- l10n/eu/core.po | 32 ++--- l10n/eu/files.po | 35 +++-- l10n/eu/files_external.po | 6 +- l10n/eu/files_sharing.po | 18 ++- l10n/eu/settings.po | 4 +- l10n/eu/user_ldap.po | 8 +- l10n/eu_ES/core.po | 32 ++--- l10n/eu_ES/files.po | 35 +++-- l10n/eu_ES/files_sharing.po | 12 +- l10n/eu_ES/settings.po | 4 +- l10n/fa/core.po | 32 ++--- l10n/fa/files.po | 37 ++--- l10n/fa/files_sharing.po | 12 +- l10n/fa/settings.po | 4 +- l10n/fi/core.po | 32 ++--- l10n/fi/files.po | 35 +++-- l10n/fi/files_sharing.po | 12 +- l10n/fi/settings.po | 4 +- l10n/fi_FI/core.po | 32 ++--- l10n/fi_FI/files.po | 37 ++--- l10n/fi_FI/files_sharing.po | 18 ++- l10n/fi_FI/settings.po | 4 +- l10n/fr/core.po | 61 ++++---- l10n/fr/files.po | 44 +++--- l10n/fr/files_sharing.po | 15 +- l10n/fr/settings.po | 4 +- l10n/gl/core.po | 32 ++--- l10n/gl/files.po | 35 +++-- l10n/gl/files_sharing.po | 12 +- l10n/gl/settings.po | 4 +- l10n/he/core.po | 32 ++--- l10n/he/files.po | 35 +++-- l10n/he/files_sharing.po | 12 +- l10n/he/settings.po | 4 +- l10n/hi/core.po | 32 ++--- l10n/hi/files.po | 37 ++--- l10n/hi/files_sharing.po | 12 +- l10n/hi/settings.po | 4 +- l10n/hr/core.po | 32 ++--- l10n/hr/files.po | 37 ++--- l10n/hr/files_sharing.po | 12 +- l10n/hr/settings.po | 4 +- l10n/hu_HU/core.po | 32 ++--- l10n/hu_HU/files.po | 35 +++-- l10n/hu_HU/files_sharing.po | 12 +- l10n/hu_HU/settings.po | 4 +- l10n/hy/core.po | 32 ++--- l10n/hy/files.po | 35 +++-- l10n/hy/files_sharing.po | 12 +- l10n/hy/settings.po | 4 +- l10n/ia/core.po | 32 ++--- l10n/ia/files.po | 35 +++-- l10n/ia/files_sharing.po | 12 +- l10n/ia/settings.po | 4 +- l10n/id/core.po | 32 ++--- l10n/id/files.po | 37 ++--- l10n/id/files_sharing.po | 12 +- l10n/id/settings.po | 4 +- l10n/id_ID/core.po | 32 ++--- l10n/id_ID/files.po | 35 +++-- l10n/id_ID/files_sharing.po | 12 +- l10n/id_ID/settings.po | 4 +- l10n/it/core.po | 32 ++--- l10n/it/files.po | 35 +++-- l10n/it/files_sharing.po | 14 +- l10n/it/settings.po | 4 +- l10n/ja_JP/core.po | 32 ++--- l10n/ja_JP/files.po | 35 +++-- l10n/ja_JP/files_sharing.po | 14 +- l10n/ja_JP/settings.po | 4 +- l10n/ko/core.po | 32 ++--- l10n/ko/files.po | 37 ++--- l10n/ko/files_sharing.po | 12 +- l10n/ko/settings.po | 4 +- l10n/lb/core.po | 32 ++--- l10n/lb/files.po | 35 +++-- l10n/lb/files_sharing.po | 12 +- l10n/lb/settings.po | 4 +- l10n/lt_LT/core.po | 32 ++--- l10n/lt_LT/files.po | 37 ++--- l10n/lt_LT/files_sharing.po | 12 +- l10n/lt_LT/settings.po | 4 +- l10n/lv/core.po | 32 ++--- l10n/lv/files.po | 79 ++++++----- l10n/lv/files_sharing.po | 12 +- l10n/lv/settings.po | 4 +- l10n/mk/core.po | 32 ++--- l10n/mk/files.po | 35 +++-- l10n/mk/files_sharing.po | 12 +- l10n/mk/settings.po | 4 +- l10n/ms_MY/core.po | 32 ++--- l10n/ms_MY/files.po | 35 +++-- l10n/ms_MY/files_sharing.po | 12 +- l10n/ms_MY/settings.po | 4 +- l10n/nb_NO/core.po | 32 ++--- l10n/nb_NO/files.po | 37 ++--- l10n/nb_NO/files_sharing.po | 12 +- l10n/nb_NO/settings.po | 4 +- l10n/nl/core.po | 32 ++--- l10n/nl/files.po | 37 ++--- l10n/nl/files_sharing.po | 12 +- l10n/nl/settings.po | 4 +- l10n/nn_NO/core.po | 32 ++--- l10n/nn_NO/files.po | 35 +++-- l10n/nn_NO/files_sharing.po | 12 +- l10n/nn_NO/settings.po | 4 +- l10n/pl/core.po | 32 ++--- l10n/pl/files.po | 35 +++-- l10n/pl/files_sharing.po | 19 ++- l10n/pl/settings.po | 4 +- l10n/pl/user_ldap.po | 9 +- l10n/pl_PL/core.po | 272 +++++++++++++++++++++++++++++++++++ l10n/pl_PL/files.po | 223 +++++++++++++++++++++++++++++ l10n/pl_PL/files_encryption.po | 34 +++++ l10n/pl_PL/files_external.po | 82 +++++++++++ l10n/pl_PL/files_sharing.po | 38 +++++ l10n/pl_PL/files_versions.po | 26 ++++ l10n/pl_PL/lib.po | 112 +++++++++++++++ l10n/pl_PL/settings.po | 274 ++++++++++++++++++++++++++++++++++++ l10n/pl_PL/user_ldap.po | 170 ++++++++++++++++++++++ l10n/pt_BR/core.po | 32 ++--- l10n/pt_BR/files.po | 37 ++--- l10n/pt_BR/files_sharing.po | 12 +- l10n/pt_BR/settings.po | 4 +- l10n/pt_PT/core.po | 32 ++--- l10n/pt_PT/files.po | 37 ++--- l10n/pt_PT/files_sharing.po | 12 +- l10n/pt_PT/settings.po | 4 +- l10n/ro/core.po | 32 ++--- l10n/ro/files.po | 35 +++-- l10n/ro/files_sharing.po | 12 +- l10n/ro/settings.po | 35 ++--- l10n/ro/user_ldap.po | 9 +- l10n/ru/core.po | 32 ++--- l10n/ru/files.po | 37 ++--- l10n/ru/files_sharing.po | 15 +- l10n/ru/settings.po | 4 +- l10n/ru_RU/core.po | 32 ++--- l10n/ru_RU/files.po | 37 ++--- l10n/ru_RU/files_sharing.po | 12 +- l10n/ru_RU/settings.po | 4 +- l10n/sk_SK/core.po | 32 ++--- l10n/sk_SK/files.po | 35 +++-- l10n/sk_SK/files_sharing.po | 12 +- l10n/sk_SK/settings.po | 4 +- l10n/sl/core.po | 32 ++--- l10n/sl/files.po | 35 +++-- l10n/sl/files_sharing.po | 14 +- l10n/sl/settings.po | 4 +- l10n/so/core.po | 32 ++--- l10n/so/files.po | 35 +++-- l10n/so/files_sharing.po | 12 +- l10n/so/settings.po | 4 +- l10n/sr/core.po | 32 ++--- l10n/sr/files.po | 35 +++-- l10n/sr/files_sharing.po | 12 +- l10n/sr/settings.po | 4 +- l10n/sr@latin/core.po | 32 ++--- l10n/sr@latin/files.po | 35 +++-- l10n/sr@latin/files_sharing.po | 12 +- l10n/sr@latin/settings.po | 4 +- l10n/sv/core.po | 32 ++--- l10n/sv/files.po | 37 ++--- l10n/sv/files_sharing.po | 14 +- l10n/sv/settings.po | 4 +- l10n/templates/core.pot | 30 ++-- l10n/templates/files.pot | 33 +++-- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 10 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/th_TH/core.po | 32 ++--- l10n/th_TH/files.po | 35 +++-- l10n/th_TH/files_sharing.po | 14 +- l10n/th_TH/settings.po | 4 +- l10n/tr/core.po | 32 ++--- l10n/tr/files.po | 35 +++-- l10n/tr/files_sharing.po | 12 +- l10n/tr/settings.po | 4 +- l10n/uk/core.po | 32 ++--- l10n/uk/files.po | 35 +++-- l10n/uk/files_sharing.po | 12 +- l10n/uk/settings.po | 4 +- l10n/vi/core.po | 32 ++--- l10n/vi/files.po | 35 +++-- l10n/vi/files_sharing.po | 12 +- l10n/vi/settings.po | 4 +- l10n/zh_CN.GB2312/core.po | 32 ++--- l10n/zh_CN.GB2312/files.po | 35 +++-- l10n/zh_CN.GB2312/files_sharing.po | 12 +- l10n/zh_CN.GB2312/settings.po | 4 +- l10n/zh_CN/core.po | 32 ++--- l10n/zh_CN/files.po | 37 ++--- l10n/zh_CN/files_sharing.po | 12 +- l10n/zh_CN/settings.po | 4 +- l10n/zh_TW/core.po | 32 ++--- l10n/zh_TW/files.po | 35 +++-- l10n/zh_TW/files_sharing.po | 12 +- l10n/zh_TW/settings.po | 4 +- settings/l10n/de.php | 10 +- settings/l10n/ro.php | 15 ++ 277 files changed, 4160 insertions(+), 2333 deletions(-) create mode 100644 l10n/pl_PL/core.po create mode 100644 l10n/pl_PL/files.po create mode 100644 l10n/pl_PL/files_encryption.po create mode 100644 l10n/pl_PL/files_external.po create mode 100644 l10n/pl_PL/files_sharing.po create mode 100644 l10n/pl_PL/files_versions.po create mode 100644 l10n/pl_PL/lib.po create mode 100644 l10n/pl_PL/settings.po create mode 100644 l10n/pl_PL/user_ldap.po (limited to 'core') diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index 5da3a997213..aad89a6d4d4 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -1,7 +1,7 @@ <?php $TRANSLATIONS = array( "There is no error, the file uploaded with success" => "Datei fehlerfrei hochgeladen.", "The uploaded file exceeds the upload_max_filesize directive in php.ini" => "Die Größe der hochzuladenden Datei überschreitet die upload_max_filesize-Richtlinie in php.ini", -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Die größe der hochzuladenden Datei überschreitet die MAX_FILE_SIZE-Richtlinie, die im HTML-Formular angegeben wurde", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Die Größe der hochzuladenden Datei überschreitet die MAX_FILE_SIZE-Richtlinie, die im HTML-Formular angegeben wurde", "The uploaded file was only partially uploaded" => "Die Datei wurde nur teilweise hochgeladen.", "No file was uploaded" => "Es wurde keine Datei hochgeladen.", "Missing a temporary folder" => "Temporärer Ordner fehlt.", @@ -20,7 +20,7 @@ "Upload Error" => "Fehler beim Hochladen", "Pending" => "Ausstehend", "Upload cancelled." => "Hochladen abgebrochen.", -"Invalid name, '/' is not allowed." => "Ungültiger Name, \"/\" ist nicht erlaubt.", +"Invalid name, '/' is not allowed." => "Ungültiger Name: \"/\" ist nicht erlaubt.", "Size" => "Größe", "Modified" => "Bearbeitet", "folder" => "Ordner", @@ -30,10 +30,10 @@ "File handling" => "Dateibehandlung", "Maximum upload size" => "Maximale Upload-Größe", "max. possible: " => "maximal möglich:", -"Needed for multi-file and folder downloads." => "Für Mehrfachdateien- und Ordnerdownloads benötigt:", +"Needed for multi-file and folder downloads." => "Für Mehrfachdatei- und Ordnerdownloads benötigt:", "Enable ZIP-download" => "ZIP-Download aktivieren", "0 is unlimited" => "0 bedeutet unbegrenzt", -"Maximum input size for ZIP files" => "Maximale Größe für ZIP Dateien", +"Maximum input size for ZIP files" => "Maximale Größe für ZIP-Dateien", "New" => "Neu", "Text file" => "Textdatei", "Folder" => "Ordner", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index 6eb4341bd6e..6cedfe2f912 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -15,11 +15,11 @@ "with" => "avec", "undo" => "annuler", "deleted" => "supprimé", -"generating ZIP-file, it may take some time." => "Générer un fichier ZIP, cela peut prendre du temps", +"generating ZIP-file, it may take some time." => "Fichier ZIP en cours d'assemblage ; cela peut prendre du temps.", "Unable to upload your file as it is a directory or has 0 bytes" => "Impossible de charger vos fichiers car il s'agit d'un dossier ou le fichier fait 0 octet.", "Upload Error" => "Erreur de chargement", "Pending" => "En cours", -"Upload cancelled." => "Chargement annulé", +"Upload cancelled." => "Chargement annulé.", "Invalid name, '/' is not allowed." => "Nom invalide, '/' n'est pas autorisé.", "Size" => "Taille", "Modified" => "Modifié", @@ -39,13 +39,13 @@ "Folder" => "Dossier", "From url" => "Depuis URL", "Upload" => "Envoyer", -"Cancel upload" => "Annuler envoi", +"Cancel upload" => "Annuler l'envoi", "Nothing in here. Upload something!" => "Il n'y a rien ici ! Envoyez donc quelque chose :)", "Name" => "Nom", "Share" => "Partager", "Download" => "Téléchargement", "Upload too large" => "Fichier trop volumineux", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Les fichiers que vous essayez d'envoyer dépassent la taille maximale permise par ce serveur.", -"Files are being scanned, please wait." => "Les fichiers sont analysés, patientez svp.", +"Files are being scanned, please wait." => "Les fichiers sont en cours d'analyse, veuillez patienter.", "Current scanning" => "Analyse en cours" ); diff --git a/apps/files/l10n/lv.php b/apps/files/l10n/lv.php index 54bd79f5526..2ce800a065e 100644 --- a/apps/files/l10n/lv.php +++ b/apps/files/l10n/lv.php @@ -1,6 +1,17 @@ <?php $TRANSLATIONS = array( +"No file was uploaded" => "Neviens fails netika augšuplādēts", +"Failed to write to disk" => "Nav iespējams saglabāt", "Files" => "Faili", "Delete" => "Izdzēst", +"already exists" => "tāds fails jau eksistē", +"replace" => "aizvietot", +"cancel" => "atcelt", +"replaced" => "aizvietots", +"with" => "ar", +"undo" => "vienu soli atpakaļ", +"deleted" => "izdzests", +"generating ZIP-file, it may take some time." => "lai uzģenerētu ZIP failu, kāds brīdis ir jāpagaida", +"Unable to upload your file as it is a directory or has 0 bytes" => "Nav iespējams augšuplādēt jūsu failu, jo tāds jau eksistē vai arī failam nav izmēra (0 baiti)", "Upload Error" => "Augšuplādēšanas laikā radās kļūda", "Pending" => "Gaida savu kārtu", "Upload cancelled." => "Augšuplāde ir atcelta", @@ -12,9 +23,20 @@ "file" => "fails", "files" => "faili", "Maximum upload size" => "Maksimālais failu augšuplādes apjoms", +"max. possible: " => "maksīmālais iespējamais:", +"Enable ZIP-download" => "Iespējot ZIP lejuplādi", +"0 is unlimited" => "0 ir neierobežots", +"New" => "Jauns", +"Text file" => "Teksta fails", +"Folder" => "Mape", +"From url" => "No URL saites", "Upload" => "Augšuplādet", +"Cancel upload" => "Atcelt augšuplādi", "Nothing in here. Upload something!" => "Te vēl nekas nav. Rīkojies, sāc augšuplādēt", "Name" => "Nosaukums", +"Share" => "Līdzdalīt", "Download" => "Lejuplādēt", -"Upload too large" => "Fails ir par lielu lai to augšuplādetu" +"Upload too large" => "Fails ir par lielu lai to augšuplādetu", +"Files are being scanned, please wait." => "Faili šobrīd tiek caurskatīti, nedaudz jāpagaida.", +"Current scanning" => "Šobrīd tiek pārbaudīti" ); diff --git a/apps/files_external/l10n/es.php b/apps/files_external/l10n/es.php index c1c605735fe..004c352c199 100644 --- a/apps/files_external/l10n/es.php +++ b/apps/files_external/l10n/es.php @@ -1,5 +1,6 @@ <?php $TRANSLATIONS = array( "External Storage" => "Almacenamiento externo", +"Mount point" => "Punto de montaje", "Backend" => "Motor", "Configuration" => "Configuración", "Options" => "Opciones", @@ -9,5 +10,9 @@ "All Users" => "Todos los usuarios", "Groups" => "Grupos", "Users" => "Usuarios", -"Delete" => "Eliiminar" +"Delete" => "Eliiminar", +"SSL root certificates" => "Raíz de certificados SSL ", +"Import Root Certificate" => "Importar certificado raíz", +"Enable User External Storage" => "Habilitar almacenamiento de usuario externo", +"Allow users to mount their own external storage" => "Permitir a los usuarios montar su propio almacenamiento externo" ); diff --git a/apps/files_external/l10n/eu.php b/apps/files_external/l10n/eu.php index a594cdff1f2..d1028d2b9bb 100644 --- a/apps/files_external/l10n/eu.php +++ b/apps/files_external/l10n/eu.php @@ -1,6 +1,7 @@ <?php $TRANSLATIONS = array( "External Storage" => "Kanpoko Biltegiratzea", "Mount point" => "Montatze puntua", +"Backend" => "Motorra", "Configuration" => "Konfigurazioa", "Options" => "Aukerak", "Add mount point" => "Gehitu muntatze puntua", diff --git a/apps/files_sharing/l10n/ca.php b/apps/files_sharing/l10n/ca.php index 5409762d604..b8a1110fe03 100644 --- a/apps/files_sharing/l10n/ca.php +++ b/apps/files_sharing/l10n/ca.php @@ -1,4 +1,6 @@ <?php $TRANSLATIONS = array( "Password" => "Contrasenya", -"Submit" => "Envia" +"Submit" => "Envia", +"Download" => "Baixa", +"web services under your control" => "controleu els vostres serveis web" ); diff --git a/apps/files_sharing/l10n/de.php b/apps/files_sharing/l10n/de.php index 0c38f957fcc..bfb0d076a31 100644 --- a/apps/files_sharing/l10n/de.php +++ b/apps/files_sharing/l10n/de.php @@ -1,4 +1,6 @@ <?php $TRANSLATIONS = array( "Password" => "Passwort", -"Submit" => "Absenden" +"Submit" => "Absenden", +"Download" => "Download", +"web services under your control" => "Web-Services unter Ihrer Kontrolle" ); diff --git a/apps/files_sharing/l10n/es.php b/apps/files_sharing/l10n/es.php index 85f880927d6..0bc085c4d35 100644 --- a/apps/files_sharing/l10n/es.php +++ b/apps/files_sharing/l10n/es.php @@ -1,6 +1,6 @@ <?php $TRANSLATIONS = array( -"Size" => "Tamaño", -"Modified" => "Modificado", -"Delete all" => "Eliminar todo", -"Delete" => "Eliminar" +"Password" => "Contraseña", +"Submit" => "Enviar", +"Download" => "Descargar", +"web services under your control" => "Servicios web bajo su control" ); diff --git a/apps/files_sharing/l10n/eu.php b/apps/files_sharing/l10n/eu.php index 916c3151dcf..a1f810826c2 100644 --- a/apps/files_sharing/l10n/eu.php +++ b/apps/files_sharing/l10n/eu.php @@ -1,6 +1,6 @@ <?php $TRANSLATIONS = array( -"Size" => "Tamaina", -"Modified" => "Aldatuta", -"Delete all" => "Ezabatu dena", -"Delete" => "Ezabatu" +"Password" => "Pasahitza", +"Submit" => "Bidali", +"Download" => "Deskargatu", +"web services under your control" => "web zerbitzuak zure kontrolpean" ); diff --git a/apps/files_sharing/l10n/fi_FI.php b/apps/files_sharing/l10n/fi_FI.php index ca7928aeecb..ce2c5932d48 100644 --- a/apps/files_sharing/l10n/fi_FI.php +++ b/apps/files_sharing/l10n/fi_FI.php @@ -1,6 +1,6 @@ <?php $TRANSLATIONS = array( -"Size" => "Koko", -"Modified" => "Muokattu", -"Delete all" => "Poista kaikki", -"Delete" => "Poista" +"Password" => "Salasana", +"Submit" => "Lähetä", +"Download" => "Lataa", +"web services under your control" => "verkkopalvelut hallinnassasi" ); diff --git a/apps/files_sharing/l10n/fr.php b/apps/files_sharing/l10n/fr.php index 31256d54a43..91a6e3e92c6 100644 --- a/apps/files_sharing/l10n/fr.php +++ b/apps/files_sharing/l10n/fr.php @@ -1,4 +1,6 @@ <?php $TRANSLATIONS = array( "Password" => "Mot de passe", -"Submit" => "Envoyer" +"Submit" => "Envoyer", +"Download" => "Télécharger", +"web services under your control" => "services web sous votre contrôle" ); diff --git a/apps/files_sharing/l10n/it.php b/apps/files_sharing/l10n/it.php index 476221846a4..de06afc2697 100644 --- a/apps/files_sharing/l10n/it.php +++ b/apps/files_sharing/l10n/it.php @@ -1,4 +1,6 @@ <?php $TRANSLATIONS = array( "Password" => "Password", -"Submit" => "Invia" +"Submit" => "Invia", +"Download" => "Scarica", +"web services under your control" => "servizi web nelle tue mani" ); diff --git a/apps/files_sharing/l10n/ja_JP.php b/apps/files_sharing/l10n/ja_JP.php index 3bbfd69285e..2ac295bdd3a 100644 --- a/apps/files_sharing/l10n/ja_JP.php +++ b/apps/files_sharing/l10n/ja_JP.php @@ -1,4 +1,6 @@ <?php $TRANSLATIONS = array( "Password" => "パスワード", -"Submit" => "送信" +"Submit" => "送信", +"Download" => "ダウンロード", +"web services under your control" => "管理下のウェブサービス" ); diff --git a/apps/files_sharing/l10n/pl.php b/apps/files_sharing/l10n/pl.php index 7f612126b93..5810cc6d796 100644 --- a/apps/files_sharing/l10n/pl.php +++ b/apps/files_sharing/l10n/pl.php @@ -1,6 +1,6 @@ <?php $TRANSLATIONS = array( -"Size" => "Rozmiar", -"Modified" => "Zmodyfikowane", -"Delete all" => "Usuń wszystko", -"Delete" => "Usuń" +"Password" => "Hasło", +"Submit" => "Wyślij", +"Download" => "Pobierz", +"web services under your control" => "Kontrolowane serwisy" ); diff --git a/apps/files_sharing/l10n/ru.php b/apps/files_sharing/l10n/ru.php index 05ca8c3e498..958ac1030d7 100644 --- a/apps/files_sharing/l10n/ru.php +++ b/apps/files_sharing/l10n/ru.php @@ -1,4 +1,6 @@ <?php $TRANSLATIONS = array( "Password" => "Пароль", -"Submit" => "Отправить" +"Submit" => "Отправить", +"Download" => "Скачать", +"web services under your control" => "веб-сервисы под вашим управлением" ); diff --git a/apps/files_sharing/l10n/sl.php b/apps/files_sharing/l10n/sl.php index ea8ffaa28d6..9ff8b079d71 100644 --- a/apps/files_sharing/l10n/sl.php +++ b/apps/files_sharing/l10n/sl.php @@ -1,4 +1,6 @@ <?php $TRANSLATIONS = array( "Password" => "Geslo", -"Submit" => "Pošlji" +"Submit" => "Pošlji", +"Download" => "Prenesi", +"web services under your control" => "spletne storitve pod vašim nadzorom" ); diff --git a/apps/files_sharing/l10n/sv.php b/apps/files_sharing/l10n/sv.php index f8cd6b3a361..7a580c36a5a 100644 --- a/apps/files_sharing/l10n/sv.php +++ b/apps/files_sharing/l10n/sv.php @@ -1,4 +1,6 @@ <?php $TRANSLATIONS = array( "Password" => "Lösenord", -"Submit" => "Skicka" +"Submit" => "Skicka", +"Download" => "Ladda ner", +"web services under your control" => "webbtjänster under din kontroll" ); diff --git a/apps/files_sharing/l10n/th_TH.php b/apps/files_sharing/l10n/th_TH.php index d2567aea514..41fa4aeddb4 100644 --- a/apps/files_sharing/l10n/th_TH.php +++ b/apps/files_sharing/l10n/th_TH.php @@ -1,4 +1,6 @@ <?php $TRANSLATIONS = array( "Password" => "รหัสผ่าน", -"Submit" => "ส่ง" +"Submit" => "ส่ง", +"Download" => "ดาวน์โหลด", +"web services under your control" => "เว็บเซอร์วิสที่คุณควบคุมการใช้งานได้" ); diff --git a/apps/user_ldap/l10n/eu.php b/apps/user_ldap/l10n/eu.php index cc042b13892..35dacef3f2f 100644 --- a/apps/user_ldap/l10n/eu.php +++ b/apps/user_ldap/l10n/eu.php @@ -32,5 +32,6 @@ "The LDAP attribute to use to generate the groups`s ownCloud name." => "ownCloud taldearen izena sortzeko erabiliko den LDAP atributua", "in bytes" => "bytetan", "in seconds. A change empties the cache." => "segundutan. Aldaketak katxea husten du.", +"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Utzi hutsik erabiltzaile izenarako (lehentsia). Bestela zehaztu LDAP/AD atributua.", "Help" => "Laguntza" ); diff --git a/apps/user_ldap/l10n/pl.php b/apps/user_ldap/l10n/pl.php index fa7618d68dc..7ebebe1e073 100644 --- a/apps/user_ldap/l10n/pl.php +++ b/apps/user_ldap/l10n/pl.php @@ -32,5 +32,6 @@ "The LDAP attribute to use to generate the groups`s ownCloud name." => "Atrybut LDAP służy do generowania nazwy grup ownCloud.", "in bytes" => "w bajtach", "in seconds. A change empties the cache." => "w sekundach. Zmiana opróżnia pamięć podręczną.", +"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Pozostaw puste dla user name (domyślnie). W przeciwnym razie podaj atrybut LDAP/AD.", "Help" => "Pomoc" ); diff --git a/apps/user_ldap/l10n/ro.php b/apps/user_ldap/l10n/ro.php index 326e47f96fe..beeed857455 100644 --- a/apps/user_ldap/l10n/ro.php +++ b/apps/user_ldap/l10n/ro.php @@ -32,5 +32,6 @@ "The LDAP attribute to use to generate the groups`s ownCloud name." => "Atributul LDAP folosit pentru a genera numele grupurilor din ownCloud", "in bytes" => "în octeți", "in seconds. A change empties the cache." => "în secunde. O schimbare curăță memoria tampon.", +"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Lăsați gol pentru numele de utilizator (implicit). În caz contrar, specificați un atribut LDAP / AD.", "Help" => "Ajutor" ); diff --git a/core/l10n/de.php b/core/l10n/de.php index 9ed2d617828..81f4b0082c2 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -20,7 +20,7 @@ "No" => "Nein", "Yes" => "Ja", "Ok" => "OK", -"No categories selected for deletion." => "Keine Kategorien zum Löschen angegeben.", +"No categories selected for deletion." => "Es wurde keine Kategorien zum Löschen ausgewählt.", "Error" => "Fehler", "ownCloud password reset" => "ownCloud-Passwort zurücksetzen", "Use the following link to reset your password: {link}" => "Nutzen Sie den nachfolgenden Link, um Ihr Passwort zurückzusetzen: {link}", diff --git a/core/l10n/fr.php b/core/l10n/fr.php index 43917917ad8..095a2024734 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -4,19 +4,19 @@ "This category already exists: " => "Cette catégorie existe déjà : ", "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Paramètres", -"January" => "Janvier", -"February" => "Février", -"March" => "Mars", -"April" => "Avril", -"May" => "Mai", -"June" => "Juin", -"July" => "Juillet", -"August" => "Août", -"September" => "Septembre", -"October" => "Octobre", -"November" => "Novembre", -"December" => "Décembre", -"Cancel" => "Annulé", +"January" => "janvier", +"February" => "février", +"March" => "mars", +"April" => "avril", +"May" => "mai", +"June" => "juin", +"July" => "juillet", +"August" => "août", +"September" => "septembre", +"October" => "octobre", +"November" => "novembre", +"December" => "décembre", +"Cancel" => "Annuler", "No" => "Non", "Yes" => "Oui", "Ok" => "Ok", @@ -24,7 +24,7 @@ "Error" => "Erreur", "ownCloud password reset" => "Réinitialisation de votre mot de passe Owncloud", "Use the following link to reset your password: {link}" => "Utilisez le lien suivant pour réinitialiser votre mot de passe : {link}", -"You will receive a link to reset your password via Email." => "Vous allez recevoir un e-mail contenant un lien pour réinitialiser votre mot de passe", +"You will receive a link to reset your password via Email." => "Vous allez recevoir un e-mail contenant un lien pour réinitialiser votre mot de passe.", "Requested" => "Demande envoyée", "Login failed!" => "Nom d'utilisateur ou e-mail invalide", "Username" => "Nom d'utilisateur", diff --git a/l10n/af/core.po b/l10n/af/core.po index ccd5e089755..ea01e99a967 100644 --- a/l10n/af/core.po +++ b/l10n/af/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" @@ -33,55 +33,55 @@ msgstr "" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "" @@ -243,7 +243,7 @@ msgstr "" msgid "web services under your control" msgstr "" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "" diff --git a/l10n/af/files.po b/l10n/af/files.po index b683bb7b55b..8e51d3bfb68 100644 --- a/l10n/af/files.po +++ b/l10n/af/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: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-21 00:04+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Files" msgstr "" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "" @@ -83,51 +83,56 @@ msgstr "" msgid "deleted" msgstr "" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "" diff --git a/l10n/af/files_sharing.po b/l10n/af/files_sharing.po index d4cd168bfa2..4e3ab5ee477 100644 --- a/l10n/af/files_sharing.po +++ b/l10n/af/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" @@ -25,10 +25,14 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 msgid "web services under your control" msgstr "" diff --git a/l10n/af/settings.po b/l10n/af/settings.po index 6d0d9b557f6..11af545b8c7 100644 --- a/l10n/af/settings.po +++ b/l10n/af/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 49b92956735..090905898dc 100644 --- a/l10n/ar/core.po +++ b/l10n/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -34,55 +34,55 @@ msgstr "" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "تعديلات" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "" @@ -244,7 +244,7 @@ msgstr "انهاء التعديلات" msgid "web services under your control" msgstr "خدمات الوب تحت تصرفك" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "الخروج" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 36056ab59ee..5c481bb7b5c 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/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: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-21 00:04+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -52,7 +52,7 @@ msgstr "" msgid "Files" msgstr "الملفات" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "محذوف" @@ -84,51 +84,56 @@ msgstr "" msgid "deleted" msgstr "" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "حجم" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "معدل" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "" diff --git a/l10n/ar/files_sharing.po b/l10n/ar/files_sharing.po index 26243d6704a..6aeb9ddf0e5 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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -25,10 +25,14 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 msgid "web services under your control" msgstr "" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 2eb8acb179b..c1af2bbd91a 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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_SA/core.po b/l10n/ar_SA/core.po index 0c523d9c89c..c5b0902e925 100644 --- a/l10n/ar_SA/core.po +++ b/l10n/ar_SA/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" "MIME-Version: 1.0\n" @@ -33,55 +33,55 @@ msgstr "" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "" @@ -243,7 +243,7 @@ msgstr "" msgid "web services under your control" msgstr "" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "" diff --git a/l10n/ar_SA/files.po b/l10n/ar_SA/files.po index 1e89550f0eb..70a8de06f9e 100644 --- a/l10n/ar_SA/files.po +++ b/l10n/ar_SA/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: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-21 00:04+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Files" msgstr "" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "" @@ -83,51 +83,56 @@ msgstr "" msgid "deleted" msgstr "" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "" diff --git a/l10n/ar_SA/files_sharing.po b/l10n/ar_SA/files_sharing.po index da6efbbe014..b0c8fb706a3 100644 --- a/l10n/ar_SA/files_sharing.po +++ b/l10n/ar_SA/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" "MIME-Version: 1.0\n" @@ -25,10 +25,14 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 msgid "web services under your control" msgstr "" diff --git a/l10n/ar_SA/settings.po b/l10n/ar_SA/settings.po index 4d65ee350ac..cfa336caae1 100644 --- a/l10n/ar_SA/settings.po +++ b/l10n/ar_SA/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 0616f0e42ca..f4673d7f749 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -37,55 +37,55 @@ msgstr "Категорията вече съществува:" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Настройки" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "Януари" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "Февруари" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "Март" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "Април" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "Май" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "Юни" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "Юли" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "Август" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "Септември" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "Октомври" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "Ноември" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "Декември" @@ -247,7 +247,7 @@ msgstr "Завършване на настройките" msgid "web services under your control" msgstr "" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "Изход" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index d016c1a31f4..98e68910a2b 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/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: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-21 00:04+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -53,7 +53,7 @@ msgstr "Грешка при запис на диска" msgid "Files" msgstr "Файлове" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "Изтриване" @@ -85,51 +85,56 @@ msgstr "" msgid "deleted" msgstr "" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "Грешка при качване" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "Качването е отменено." -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "Неправилно име – \"/\" не е позволено." -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "Размер" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "Променено" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "папка" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "папки" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "файл" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "" diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index 7a922d60dd5..fa2d7899a7d 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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -25,10 +25,14 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 msgid "web services under your control" msgstr "" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 3a29d8dc141..123996f9b88 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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/ca/core.po b/l10n/ca/core.po index 8f332e15f5e..e3c5dd92d5c 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -4,13 +4,13 @@ # # Translators: # <joan@montane.cat>, 2012. -# <rcalvoi@yahoo.com>, 2011, 2012. +# <rcalvoi@yahoo.com>, 2011-2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -35,55 +35,55 @@ msgstr "Aquesta categoria ja existeix:" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Arranjament" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "Gener" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "Febrer" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "Març" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "Abril" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "Maig" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "Juny" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "Juliol" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "Agost" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "Setembre" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "Octubre" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "Novembre" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "Desembre" @@ -245,7 +245,7 @@ msgstr "Acaba la configuració" msgid "web services under your control" msgstr "controleu els vostres serveis web" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "Surt" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index aa8f41dca0a..6ccc8e9492c 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/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: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-21 00:04+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -53,7 +53,7 @@ msgstr "Ha fallat en escriure al disc" msgid "Files" msgstr "Fitxers" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "Suprimeix" @@ -85,51 +85,56 @@ msgstr "desfés" msgid "deleted" msgstr "esborrat" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "s'estan generant fitxers ZIP, pot trigar una estona." -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "No es pot pujar el fitxer perquè és una carpeta o té 0 bytes" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "Error en la pujada" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "Pendents" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "La pujada s'ha cancel·lat." -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "El nom no és vàlid, no es permet '/'." -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "Mida" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "Modificat" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "carpeta" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "carpetes" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "fitxer" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "fitxers" diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index fef4b1281ea..1aa4ee0ad45 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:04+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -26,10 +26,14 @@ msgstr "Contrasenya" msgid "Submit" msgstr "Envia" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" +msgstr "Baixa" + +#: templates/public.php:18 +msgid "No preview available for" msgstr "" -#: templates/public.php:17 +#: templates/public.php:23 msgid "web services under your control" -msgstr "" +msgstr "controleu els vostres serveis web" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index eb85441ce01..5c73f9a9cac 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -4,13 +4,13 @@ # # Translators: # <joan@montane.cat>, 2012. -# <rcalvoi@yahoo.com>, 2011, 2012. +# <rcalvoi@yahoo.com>, 2011-2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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/cs_CZ/core.po b/l10n/cs_CZ/core.po index d147edfd66b..3db3e84583e 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -36,55 +36,55 @@ msgstr "Tato kategorie již existuje:" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Nastavení" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "Leden" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "Únor" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "Březen" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "Duben" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "Květen" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "Červen" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "Červenec" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "Srpen" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "Září" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "Říjen" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "Listopad" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "Prosinec" @@ -246,7 +246,7 @@ msgstr "Dokončit instalaci" msgid "web services under your control" msgstr "webové služby pod Vaší kontrolou" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "Odhlásit se" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 77f16b10d67..0fbfcb882df 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: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-21 00:04+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -53,7 +53,7 @@ msgstr "Zápis na disk se nezdařil" msgid "Files" msgstr "Soubory" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "Vymazat" @@ -85,51 +85,56 @@ msgstr "zpět" msgid "deleted" msgstr "smazáno" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "generuji ZIP soubor, může to chvíli trvat" -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nemohu nahrát váš soubor neboť to je adresář a nebo má nulovou délku." -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "Chyba při nahrávání" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "Očekává se" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "Nahrávání zrušeno" -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "Špatné jméno, znak '/' není povolen" -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "Velikost" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "Změněno" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "adresář" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "adresáře" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "soubor" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "soubory" diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index a171c9c25e2..1927da6f119 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -27,10 +27,14 @@ msgstr "Heslo" msgid "Submit" msgstr "Potvrdit" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 msgid "web services under your control" msgstr "" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 4bded3012fd..aa8bbf08b2d 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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/da/core.po b/l10n/da/core.po index 305bbc24a35..383cb162d33 100644 --- a/l10n/da/core.po +++ b/l10n/da/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -38,55 +38,55 @@ msgstr "Denne kategori eksisterer allerede: " msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Indstillinger" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "Januar" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "Februar" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "Marts" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "April" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "Maj" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "Juni" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "Juli" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "August" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "September" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "Oktober" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "November" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "December" @@ -248,7 +248,7 @@ msgstr "Afslut opsætning" msgid "web services under your control" msgstr "Webtjenester under din kontrol" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "Log ud" diff --git a/l10n/da/files.po b/l10n/da/files.po index 3524d6c05af..777667d6f5f 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-21 00:04+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -55,7 +55,7 @@ msgstr "Fejl ved skrivning til disk." msgid "Files" msgstr "Filer" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "Slet" @@ -87,51 +87,56 @@ msgstr "fortryd" msgid "deleted" msgstr "Slettet" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "genererer ZIP-fil, det kan tage lidt tid." -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Kunne ikke uploade din fil, da det enten er en mappe eller er tom" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "Fejl ved upload" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "Afventer" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "Upload afbrudt." -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "Ugyldigt navn, '/' er ikke tilladt." -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "Størrelse" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "Ændret" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "mappe" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "mapper" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "fil" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "filer" diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po index 3da44603932..cae9bfa4d9b 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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -25,10 +25,14 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 msgid "web services under your control" msgstr "" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 57da9905662..d2f0b1630e5 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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 3d6111bb191..c9a09ce63a0 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:02+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -44,55 +44,55 @@ msgstr "Kategorie existiert bereits:" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "Januar" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "Februar" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "März" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "April" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "Mai" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "Juni" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "Juli" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "August" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "September" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "Oktober" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "November" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "Dezember" @@ -114,7 +114,7 @@ msgstr "OK" #: js/oc-vcategories.js:68 msgid "No categories selected for deletion." -msgstr "Keine Kategorien zum Löschen angegeben." +msgstr "Es wurde keine Kategorien zum Löschen ausgewählt." #: js/oc-vcategories.js:68 msgid "Error" @@ -254,7 +254,7 @@ msgstr "Installation abschließen" msgid "web services under your control" msgstr "Web-Services unter Ihrer Kontrolle" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "Abmelden" diff --git a/l10n/de/files.po b/l10n/de/files.po index b7f13aa7020..eb9ea98a4c2 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 09:11+0000\n" -"Last-Translator: traductor <transifex.3.mensaje@spamgourmet.com>\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -39,7 +39,7 @@ msgstr "Die Größe der hochzuladenden Datei überschreitet die upload_max_files msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Die größe der hochzuladenden Datei überschreitet die MAX_FILE_SIZE-Richtlinie, die im HTML-Formular angegeben wurde" +msgstr "Die Größe der hochzuladenden Datei überschreitet die MAX_FILE_SIZE-Richtlinie, die im HTML-Formular angegeben wurde" #: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" @@ -61,7 +61,7 @@ msgstr "Fehler beim Schreiben auf die Festplatte" msgid "Files" msgstr "Dateien" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "Löschen" @@ -93,51 +93,56 @@ msgstr "rückgängig machen" msgid "deleted" msgstr "gelöscht" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "Erstelle ZIP-Datei. Dies kann eine Weile dauern." -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Ihre Datei kann nicht hochgeladen werden, da sie ein Verzeichnis ist oder 0 Bytes hat." -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "Fehler beim Hochladen" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "Ausstehend" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "Hochladen abgebrochen." -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." -msgstr "Ungültiger Name, \"/\" ist nicht erlaubt." +msgstr "Ungültiger Name: \"/\" ist nicht erlaubt." -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "Größe" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "Bearbeitet" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "Ordner" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "Ordner" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "Datei" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "Dateien" @@ -155,7 +160,7 @@ msgstr "maximal möglich:" #: templates/admin.php:9 msgid "Needed for multi-file and folder downloads." -msgstr "Für Mehrfachdateien- und Ordnerdownloads benötigt:" +msgstr "Für Mehrfachdatei- und Ordnerdownloads benötigt:" #: templates/admin.php:9 msgid "Enable ZIP-download" @@ -167,7 +172,7 @@ msgstr "0 bedeutet unbegrenzt" #: templates/admin.php:12 msgid "Maximum input size for ZIP files" -msgstr "Maximale Größe für ZIP Dateien" +msgstr "Maximale Größe für ZIP-Dateien" #: templates/index.php:7 msgid "New" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index e77ca7577ba..f1fdd9e874b 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:04+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -29,10 +29,14 @@ msgstr "Passwort" msgid "Submit" msgstr "Absenden" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" +msgstr "Download" + +#: templates/public.php:18 +msgid "No preview available for" msgstr "" -#: templates/public.php:17 +#: templates/public.php:23 msgid "web services under your control" -msgstr "" +msgstr "Web-Services unter Ihrer Kontrolle" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 0a51e4476bf..37cd269f546 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -28,7 +28,7 @@ msgstr "" #: ajax/apps/ocs.php:23 msgid "Unable to load list from App Store" -msgstr "Liste der Apps im Store konnte nicht geladen werden." +msgstr "Die Liste der Apps im Store konnte nicht geladen werden." #: ajax/lostpassword.php:14 msgid "Email saved" @@ -144,11 +144,11 @@ msgstr "Fügen Sie Ihre App hinzu" #: templates/apps.php:26 msgid "Select an App" -msgstr "Wähle eine Anwendung aus" +msgstr "Wählen Sie eine Anwendung aus" #: templates/apps.php:29 msgid "See application page at apps.owncloud.com" -msgstr "Weitere Anwendungen auf apps.owncloud.com" +msgstr "Weitere Anwendungen finden Sie auf apps.owncloud.com" #: templates/apps.php:30 msgid "-licensed" @@ -168,7 +168,7 @@ msgstr "Große Dateien verwalten" #: templates/help.php:10 msgid "Ask a question" -msgstr "Stell eine Frage" +msgstr "Stellen Sie eine Frage" #: templates/help.php:22 msgid "Problems connecting to help database." @@ -244,7 +244,7 @@ msgstr "Helfen Sie bei der Übersetzung" #: templates/personal.php:51 msgid "use this address to connect to your ownCloud in your file manager" -msgstr "Benutzen Sie diese Adresse, um Ihr ownCloud mit deinem Dateimanager zu verbinden." +msgstr "Benutzen Sie diese Adresse, um Ihre ownCloud mit Ihrem Dateimanager zu verbinden." #: templates/users.php:21 templates/users.php:76 msgid "Name" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index 6f9cced66a2..18c835e0663 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-29 02:01+0200\n" -"PO-Revision-Date: 2012-08-29 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-30 11:12+0000\n" +"Last-Translator: traductor <transifex.3.mensaje@spamgourmet.com>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/el/core.po b/l10n/el/core.po index c256cef3fba..57cba80d051 100644 --- a/l10n/el/core.po +++ b/l10n/el/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -37,55 +37,55 @@ msgstr "Αυτή η κατηγορία υπάρχει ήδη" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Ρυθμίσεις" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "Ιανουάριος" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "Φεβρουάριος" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "Μάρτιος" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "Απρίλιος" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "Μάϊος" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "Ιούνιος" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "Ιούλιος" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "Αύγουστος" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "Σεπτέμβριος" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "Οκτώβριος" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "Νοέμβριος" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "Δεκέμβριος" @@ -247,7 +247,7 @@ msgstr "Ολοκλήρωση εγκατάστασης" msgid "web services under your control" msgstr "Υπηρεσίες web υπό τον έλεγχό σας" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "Αποσύνδεση" diff --git a/l10n/el/files.po b/l10n/el/files.po index de2b3f80a1d..cb1f1d7a3d7 100644 --- a/l10n/el/files.po +++ b/l10n/el/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: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-21 00:04+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -54,7 +54,7 @@ msgstr "Η εγγραφή στο δίσκο απέτυχε" msgid "Files" msgstr "Αρχεία" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "Διαγραφή" @@ -86,51 +86,56 @@ msgstr "αναίρεση" msgid "deleted" msgstr "διαγράφηκε" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "παραγωγή αρχείου ZIP, ίσως διαρκέσει αρκετά." -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Αδυναμία στην μεταφόρτωση του αρχείου σας αφού είναι φάκελος ή έχει 0 bytes" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "Σφάλμα Μεταφόρτωσης" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "Εν αναμονή" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "Η μεταφόρτωση ακυρώθηκε." -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "Μη έγκυρο όνομα, το '/' δεν επιτρέπεται." -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "Μέγεθος" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "Τροποποιήθηκε" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "φάκελος" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "φάκελοι" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "αρχείο" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "αρχεία" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index 22f31372832..fafebf49441 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:04+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -27,10 +27,14 @@ msgstr "Συνθηματικό" msgid "Submit" msgstr "Καταχώρηση" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 msgid "web services under your control" msgstr "" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index f15267edf6c..9ecb275bd71 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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/eo/core.po b/l10n/eo/core.po index 79b7ff3e24b..ccfd988fd2e 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -36,55 +36,55 @@ msgstr "Ĉi tiu kategorio jam ekzistas: " msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Agordo" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "Januaro" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "Februaro" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "Marto" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "Aprilo" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "Majo" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "Junio" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "Julio" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "Aŭgusto" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "Septembro" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "Oktobro" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "Novembro" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "Decembro" @@ -246,7 +246,7 @@ msgstr "Fini la instalon" msgid "web services under your control" msgstr "TTT-servoj sub via kontrolo" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "Elsaluti" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index cc7ffcd01a2..d84ef73a64a 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/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: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-21 00:04+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -53,7 +53,7 @@ msgstr "Malsukcesis skribo al disko" msgid "Files" msgstr "Dosieroj" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "Forigi" @@ -85,51 +85,56 @@ msgstr "malfari" msgid "deleted" msgstr "forigita" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "generanta ZIP-dosiero, ĝi povas daŭri iom da tempo" -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Ne eblis alŝuti vian dosieron ĉar ĝi estas dosierujo aŭ havas 0 duumokojn" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "Alŝuta eraro" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "Traktotaj" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "La alŝuto nuliĝis." -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "Nevalida nomo, “/” ne estas permesata." -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "Grando" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "Modifita" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "dosierujo" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "dosierujoj" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "dosiero" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "dosieroj" diff --git a/l10n/eo/files_sharing.po b/l10n/eo/files_sharing.po index 0cb4c533a4b..8ad6599fb06 100644 --- a/l10n/eo/files_sharing.po +++ b/l10n/eo/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -26,10 +26,14 @@ msgstr "Pasvorto" msgid "Submit" msgstr "Sendi" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 msgid "web services under your control" msgstr "" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 75eea7b7431..776ade3f9e0 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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 8c8a0c622ae..e6464ac375e 100644 --- a/l10n/es/core.po +++ b/l10n/es/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -40,55 +40,55 @@ msgstr "Esta categoría ya existe: " msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Ajustes" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "Enero" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "Febrero" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "Marzo" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "Abril" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "Mayo" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "Junio" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "Julio" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "Agosto" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "Septiembre" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "Octubre" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "Noviembre" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "Diciembre" @@ -250,7 +250,7 @@ msgstr "Completar la instalación" msgid "web services under your control" msgstr "servicios web bajo tu control" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "Salir" diff --git a/l10n/es/files.po b/l10n/es/files.po index d7855d52e08..1e703f1a811 100644 --- a/l10n/es/files.po +++ b/l10n/es/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: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-21 00:04+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -54,7 +54,7 @@ msgstr "La escritura en disco ha fallado" msgid "Files" msgstr "Archivos" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "Eliminado" @@ -86,51 +86,56 @@ msgstr "deshacer" msgid "deleted" msgstr "borrado" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "generando un fichero ZIP, puede llevar un tiempo." -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "No ha sido posible subir tu archivo porque es un directorio o tiene 0 bytes" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "Error al subir el archivo" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "Pendiente" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "Subida cancelada." -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "Nombre no válido, '/' no está permitido." -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "Tamaño" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "Modificado" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "carpeta" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "carpetas" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "archivo" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "archivos" diff --git a/l10n/es/files_external.po b/l10n/es/files_external.po index 2a26b728a93..b8da8c77251 100644 --- a/l10n/es/files_external.po +++ b/l10n/es/files_external.po @@ -4,13 +4,14 @@ # # Translators: # Javier Llorente <javier@opensuse.org>, 2012. +# <pedro.navia@etecsa.cu>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 09:26+0000\n" -"Last-Translator: Javier Llorente <javier@opensuse.org>\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-30 20:26+0000\n" +"Last-Translator: pedro.navia <pedro.navia@etecsa.cu>\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" @@ -24,7 +25,7 @@ msgstr "Almacenamiento externo" #: templates/settings.php:7 templates/settings.php:19 msgid "Mount point" -msgstr "" +msgstr "Punto de montaje" #: templates/settings.php:8 msgid "Backend" @@ -68,16 +69,16 @@ msgstr "Eliiminar" #: templates/settings.php:88 msgid "SSL root certificates" -msgstr "" +msgstr "Raíz de certificados SSL " #: templates/settings.php:102 msgid "Import Root Certificate" -msgstr "" +msgstr "Importar certificado raíz" #: templates/settings.php:108 msgid "Enable User External Storage" -msgstr "" +msgstr "Habilitar almacenamiento de usuario externo" #: templates/settings.php:109 msgid "Allow users to mount their own external storage" -msgstr "" +msgstr "Permitir a los usuarios montar su propio almacenamiento externo" diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po index d514ee6fc42..7d36e72c7dd 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.po @@ -4,12 +4,13 @@ # # Translators: # Javier Llorente <javier@opensuse.org>, 2012. +# <pedro.navia@etecsa.cu>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:04+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -20,16 +21,20 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "" +msgstr "Contraseña" #: templates/authenticate.php:6 msgid "Submit" -msgstr "" +msgstr "Enviar" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" +msgstr "Descargar" + +#: templates/public.php:18 +msgid "No preview available for" msgstr "" -#: templates/public.php:17 +#: templates/public.php:23 msgid "web services under your control" -msgstr "" +msgstr "Servicios web bajo su control" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 4c222cc9d61..de248b3617a 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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/et_EE/core.po b/l10n/et_EE/core.po index b9b71d86bab..0767a4e42fa 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -34,55 +34,55 @@ msgstr "See kategooria on juba olemas: " msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Seaded" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "Jaanuar" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "Veebruar" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "Märts" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "Aprill" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "Mai" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "Juuni" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "Juuli" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "August" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "September" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "Oktoober" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "November" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "Detsember" @@ -244,7 +244,7 @@ msgstr "Lõpeta seadistamine" msgid "web services under your control" msgstr "veebiteenused sinu kontrolli all" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "Logi välja" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index d0fad31b018..89b36a84150 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/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: 2012-08-26 19:46+0200\n" -"PO-Revision-Date: 2012-08-26 17:20+0000\n" -"Last-Translator: Rivo Zängov <eraser@eraser.ee>\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -52,7 +52,7 @@ msgstr "Kettale kirjutamine ebaõnnestus" msgid "Files" msgstr "Failid" -#: js/fileactions.js:111 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "Kustuta" @@ -84,51 +84,56 @@ msgstr "tagasi" msgid "deleted" msgstr "kustutatud" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "ZIP-faili loomine, see võib veidi aega võtta." -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Sinu faili üleslaadimine ebaõnnestus, kuna see on kaust või selle suurus on 0 baiti" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "Üleslaadimise viga" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "Ootel" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "Üleslaadimine tühistati." -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "Vigane nimi, '/' pole lubatud." -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "Suurus" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "Muudetud" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "kaust" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "kausta" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "fail" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "faili" diff --git a/l10n/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po index 1d7b7f670aa..7942c92767e 100644 --- a/l10n/et_EE/files_sharing.po +++ b/l10n/et_EE/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -26,10 +26,14 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 msgid "web services under your control" msgstr "" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 1031fe83cf9..e0a595aa1a7 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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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/eu/core.po b/l10n/eu/core.po index 3e613136b36..63b63ad545a 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -35,55 +35,55 @@ msgstr "Kategoria hau dagoeneko existitzen da:" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Ezarpenak" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "Urtarrila" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "Otsaila" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "Martxoa" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "Apirila" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "Maiatza" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "Ekaina" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "Uztaila" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "Abuztua" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "Iraila" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "Urria" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "Azaroa" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "Abendua" @@ -245,7 +245,7 @@ msgstr "Bukatu konfigurazioa" msgid "web services under your control" msgstr "web zerbitzuak zure kontrolpean" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "Saioa bukatu" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index d450fd0522e..a0e689fba4d 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/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: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-21 00:04+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -53,7 +53,7 @@ msgstr "Errore bat izan da diskoan idazterakoan" msgid "Files" msgstr "Fitxategiak" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "Ezabatu" @@ -85,51 +85,56 @@ msgstr "desegin" msgid "deleted" msgstr "ezabatuta" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "ZIP-fitxategia sortzen ari da, denbora har dezake" -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Ezin da zure fitxategia igo, karpeta bat da edo 0 byt ditu" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "Igotzean errore bat suertatu da" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "Zain" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "Igoera ezeztatuta" -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "Baliogabeko izena, '/' ezin da erabili. " -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "Tamaina" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "Aldatuta" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "karpeta" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "Karpetak" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "fitxategia" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "fitxategiak" diff --git a/l10n/eu/files_external.po b/l10n/eu/files_external.po index eae79964961..f614dd9418d 100644 --- a/l10n/eu/files_external.po +++ b/l10n/eu/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: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-27 09:04+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-30 20:52+0000\n" "Last-Translator: asieriko <asieriko@gmail.com>\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -28,7 +28,7 @@ msgstr "Montatze puntua" #: templates/settings.php:8 msgid "Backend" -msgstr "" +msgstr "Motorra" #: templates/settings.php:9 msgid "Configuration" diff --git a/l10n/eu/files_sharing.po b/l10n/eu/files_sharing.po index a968b59ddc6..a519a3b4f4b 100644 --- a/l10n/eu/files_sharing.po +++ b/l10n/eu/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -20,16 +20,20 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "" +msgstr "Pasahitza" #: templates/authenticate.php:6 msgid "Submit" -msgstr "" +msgstr "Bidali" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" +msgstr "Deskargatu" + +#: templates/public.php:18 +msgid "No preview available for" msgstr "" -#: templates/public.php:17 +#: templates/public.php:23 msgid "web services under your control" -msgstr "" +msgstr "web zerbitzuak zure kontrolpean" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index a234da4f08e..bf2a28693e8 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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 8b6abda92f0..a8b8ab93ae8 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-29 02:01+0200\n" -"PO-Revision-Date: 2012-08-29 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-30 21:29+0000\n" +"Last-Translator: asieriko <asieriko@gmail.com>\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" @@ -164,7 +164,7 @@ msgstr "segundutan. Aldaketak katxea husten du." msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "" +msgstr "Utzi hutsik erabiltzaile izenarako (lehentsia). Bestela zehaztu LDAP/AD atributua." #: templates/settings.php:32 msgid "Help" diff --git a/l10n/eu_ES/core.po b/l10n/eu_ES/core.po index 31a6a198e8b..a6da3a496e9 100644 --- a/l10n/eu_ES/core.po +++ b/l10n/eu_ES/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -33,55 +33,55 @@ msgstr "" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "" @@ -243,7 +243,7 @@ msgstr "" msgid "web services under your control" msgstr "" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "" diff --git a/l10n/eu_ES/files.po b/l10n/eu_ES/files.po index cf36b73d5b6..1a86a78d4b6 100644 --- a/l10n/eu_ES/files.po +++ b/l10n/eu_ES/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: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-21 00:04+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Files" msgstr "" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "" @@ -83,51 +83,56 @@ msgstr "" msgid "deleted" msgstr "" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "" diff --git a/l10n/eu_ES/files_sharing.po b/l10n/eu_ES/files_sharing.po index d5d03fe6b7e..da8e6d23662 100644 --- a/l10n/eu_ES/files_sharing.po +++ b/l10n/eu_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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -25,10 +25,14 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 msgid "web services under your control" msgstr "" diff --git a/l10n/eu_ES/settings.po b/l10n/eu_ES/settings.po index 6a72266529b..1b7b2386fa9 100644 --- a/l10n/eu_ES/settings.po +++ b/l10n/eu_ES/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index c122ee9da13..6099da454e0 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -34,55 +34,55 @@ msgstr "این گروه از قبل اضافه شده" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "تنظیمات" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "ژانویه" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "فبریه" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "مارس" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "آوریل" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "می" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "ژوئن" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "جولای" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "آگوست" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "سپتامبر" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "اکتبر" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "نوامبر" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "دسامبر" @@ -244,7 +244,7 @@ msgstr "اتمام نصب" msgid "web services under your control" msgstr "سرویس وب تحت کنترل شما" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "خروج" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 5dc2cb2c38f..136043a67d5 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 20:17+0000\n" -"Last-Translator: Mohammad Dashtizadeh <mohammad@dashtizadeh.net>\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -54,7 +54,7 @@ msgstr "نوشتن بر روی دیسک سخت ناموفق بود" msgid "Files" msgstr "فایل ها" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "پاک کردن" @@ -86,51 +86,56 @@ msgstr "بازگشت" msgid "deleted" msgstr "حذف شده" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "در حال ساخت فایل فشرده ممکن است زمان زیادی به طول بیانجامد" -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "ناتوان در بارگذاری یا فایل یک پوشه است یا 0بایت دارد" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "خطا در بار گذاری" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "در انتظار" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "بار گذاری لغو شد" -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "نام نامناسب '/' غیرفعال است" -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "اندازه" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "تغییر یافته" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "پوشه" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "پوشه ها" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "پرونده" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "پرونده ها" diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po index 4e3884cb872..84f1a537d3c 100644 --- a/l10n/fa/files_sharing.po +++ b/l10n/fa/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -26,10 +26,14 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 msgid "web services under your control" msgstr "" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 91b49981745..639ac0d5399 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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/core.po b/l10n/fi/core.po index 80fab1564a0..9471fc3066c 100644 --- a/l10n/fi/core.po +++ b/l10n/fi/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" "MIME-Version: 1.0\n" @@ -33,55 +33,55 @@ msgstr "" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "" @@ -243,7 +243,7 @@ msgstr "" msgid "web services under your control" msgstr "" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "" diff --git a/l10n/fi/files.po b/l10n/fi/files.po index edf5daa8da9..64ed9831969 100644 --- a/l10n/fi/files.po +++ b/l10n/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: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-21 00:04+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Files" msgstr "" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "" @@ -83,51 +83,56 @@ msgstr "" msgid "deleted" msgstr "" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "" diff --git a/l10n/fi/files_sharing.po b/l10n/fi/files_sharing.po index 7675786f940..4cee2cd498e 100644 --- a/l10n/fi/files_sharing.po +++ b/l10n/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" "MIME-Version: 1.0\n" @@ -25,10 +25,14 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 msgid "web services under your control" msgstr "" diff --git a/l10n/fi/settings.po b/l10n/fi/settings.po index 58689bc1d07..6b51b7912ac 100644 --- a/l10n/fi/settings.po +++ b/l10n/fi/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 93613a36f7e..6ad322c5cc7 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -38,55 +38,55 @@ msgstr "Tämä luokka on jo olemassa: " msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Asetukset" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "Tammikuu" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "Helmikuu" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "Maaliskuu" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "Huhtikuu" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "Toukokuu" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "Kesäkuu" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "Heinäkuu" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "Elokuu" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "Syyskuu" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "Lokakuu" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "Marraskuu" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "Joulukuu" @@ -248,7 +248,7 @@ msgstr "Viimeistele asennus" msgid "web services under your control" msgstr "verkkopalvelut hallinnassasi" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "Kirjaudu ulos" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index e4ee45867c3..1faa1deb756 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 12:10+0000\n" -"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -55,7 +55,7 @@ msgstr "Levylle kirjoitus epäonnistui" msgid "Files" msgstr "Tiedostot" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "Poista" @@ -87,51 +87,56 @@ msgstr "kumoa" msgid "deleted" msgstr "poistettu" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "luodaan ZIP-tiedostoa, tämä saattaa kestää hetken." -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Tiedoston lähetys epäonnistui, koska sen koko on 0 tavua tai kyseessä on kansio" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "Lähetysvirhe." -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "Odottaa" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "Lähetys peruttu." -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "Virheellinen nimi, merkki '/' ei ole sallittu." -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "Koko" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "Muutettu" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "kansio" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "kansiota" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "tiedosto" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "tiedostoa" diff --git a/l10n/fi_FI/files_sharing.po b/l10n/fi_FI/files_sharing.po index 833c5b7206a..252458e4cb1 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -20,16 +20,20 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "" +msgstr "Salasana" #: templates/authenticate.php:6 msgid "Submit" -msgstr "" +msgstr "Lähetä" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" +msgstr "Lataa" + +#: templates/public.php:18 +msgid "No preview available for" msgstr "" -#: templates/public.php:17 +#: templates/public.php:23 msgid "web services under your control" -msgstr "" +msgstr "verkkopalvelut hallinnassasi" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 1066e0aad1b..5423bc6e94b 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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 957e66b736e..44ac2aa06cd 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Guillaume Paumier <guillom.pom@gmail.com>, 2012. # Nahir Mohamed <nahirmoha@gmail.com>, 2012. # <nathaplop@gmail.com>, 2012. # <rom1dep@gmail.com>, 2011. @@ -11,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -37,61 +38,61 @@ msgstr "Cette catégorie existe déjà : " msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Paramètres" -#: js/js.js:586 +#: js/js.js:591 msgid "January" -msgstr "Janvier" +msgstr "janvier" -#: js/js.js:586 +#: js/js.js:591 msgid "February" -msgstr "Février" +msgstr "février" -#: js/js.js:586 +#: js/js.js:591 msgid "March" -msgstr "Mars" +msgstr "mars" -#: js/js.js:586 +#: js/js.js:591 msgid "April" -msgstr "Avril" +msgstr "avril" -#: js/js.js:586 +#: js/js.js:591 msgid "May" -msgstr "Mai" +msgstr "mai" -#: js/js.js:586 +#: js/js.js:591 msgid "June" -msgstr "Juin" +msgstr "juin" -#: js/js.js:587 +#: js/js.js:592 msgid "July" -msgstr "Juillet" +msgstr "juillet" -#: js/js.js:587 +#: js/js.js:592 msgid "August" -msgstr "Août" +msgstr "août" -#: js/js.js:587 +#: js/js.js:592 msgid "September" -msgstr "Septembre" +msgstr "septembre" -#: js/js.js:587 +#: js/js.js:592 msgid "October" -msgstr "Octobre" +msgstr "octobre" -#: js/js.js:587 +#: js/js.js:592 msgid "November" -msgstr "Novembre" +msgstr "novembre" -#: js/js.js:587 +#: js/js.js:592 msgid "December" -msgstr "Décembre" +msgstr "décembre" #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" -msgstr "Annulé" +msgstr "Annuler" #: js/oc-dialogs.js:159 msgid "No" @@ -123,7 +124,7 @@ msgstr "Utilisez le lien suivant pour réinitialiser votre mot de passe : {link} #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Vous allez recevoir un e-mail contenant un lien pour réinitialiser votre mot de passe" +msgstr "Vous allez recevoir un e-mail contenant un lien pour réinitialiser votre mot de passe." #: lostpassword/templates/lostpassword.php:5 msgid "Requested" @@ -247,7 +248,7 @@ msgstr "Terminer l'installation" msgid "web services under your control" msgstr "services web sous votre contrôle" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "Se déconnecter" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 19cb780d180..6bc9f20b8b8 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -6,6 +6,7 @@ # Cyril Glapa <kyriog@gmail.com>, 2012. # Geoffrey Guerrier <geoffrey.guerrier@gmail.com>, 2012. # <guiguidu31300@gmail.com>, 2012. +# Guillaume Paumier <guillom.pom@gmail.com>, 2012. # Nahir Mohamed <nahirmoha@gmail.com>, 2012. # <rom1dep@gmail.com>, 2011. # Romain DEP. <rom1dep@gmail.com>, 2012. @@ -13,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-21 00:04+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -57,7 +58,7 @@ msgstr "Erreur d'écriture sur le disque" msgid "Files" msgstr "Fichiers" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "Supprimer" @@ -89,51 +90,56 @@ msgstr "annuler" msgid "deleted" msgstr "supprimé" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." -msgstr "Générer un fichier ZIP, cela peut prendre du temps" +msgstr "Fichier ZIP en cours d'assemblage ; cela peut prendre du temps." -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Impossible de charger vos fichiers car il s'agit d'un dossier ou le fichier fait 0 octet." -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "Erreur de chargement" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "En cours" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." -msgstr "Chargement annulé" +msgstr "Chargement annulé." -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "Nom invalide, '/' n'est pas autorisé." -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "Taille" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "Modifié" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "dossier" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "dossiers" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "fichier" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "fichiers" @@ -187,7 +193,7 @@ msgstr "Envoyer" #: templates/index.php:27 msgid "Cancel upload" -msgstr "Annuler envoi" +msgstr "Annuler l'envoi" #: templates/index.php:39 msgid "Nothing in here. Upload something!" @@ -217,7 +223,7 @@ msgstr "Les fichiers que vous essayez d'envoyer dépassent la taille maximale pe #: templates/index.php:71 msgid "Files are being scanned, please wait." -msgstr "Les fichiers sont analysés, patientez svp." +msgstr "Les fichiers sont en cours d'analyse, veuillez patienter." #: templates/index.php:74 msgid "Current scanning" diff --git a/l10n/fr/files_sharing.po b/l10n/fr/files_sharing.po index e32eca06093..d107f296193 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/files_sharing.po @@ -4,14 +4,15 @@ # # Translators: # <gp4004@arghh.org>, 2012. +# Guillaume Paumier <guillom.pom@gmail.com>, 2012. # Romain DEP. <rom1dep@gmail.com>, 2012. # <windes@tructor.net>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:04+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -28,10 +29,14 @@ msgstr "Mot de passe" msgid "Submit" msgstr "Envoyer" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" +msgstr "Télécharger" + +#: templates/public.php:18 +msgid "No preview available for" msgstr "" -#: templates/public.php:17 +#: templates/public.php:23 msgid "web services under your control" -msgstr "" +msgstr "services web sous votre contrôle" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index b4f394d0216..2fbf6fe41c3 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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/gl/core.po b/l10n/gl/core.po index 631545f49af..4dd5e3d6f22 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -35,55 +35,55 @@ msgstr "Esta categoría xa existe: " msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Preferencias" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "Xaneiro" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "Febreiro" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "Marzo" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "Abril" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "Maio" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "Xuño" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "Xullo" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "Agosto" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "Setembro" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "Outubro" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "Novembro" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "Nadal" @@ -245,7 +245,7 @@ msgstr "Rematar configuración" msgid "web services under your control" msgstr "servizos web baixo o seu control" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "Desconectar" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 6725283e332..d42c63821bc 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/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: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-21 00:04+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -53,7 +53,7 @@ msgstr "Erro ao escribir no disco" msgid "Files" msgstr "Ficheiros" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "Eliminar" @@ -85,51 +85,56 @@ msgstr "desfacer" msgid "deleted" msgstr "eliminado" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "xerando ficheiro ZIP, pode levar un anaco." -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Non se puido subir o ficheiro pois ou é un directorio ou ten 0 bytes" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "Erro na subida" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "Pendentes" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "Subida cancelada." -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "Nome non válido, '/' non está permitido." -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "Tamaño" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "Modificado" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "cartafol" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "cartafoles" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "ficheiro" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "ficheiros" diff --git a/l10n/gl/files_sharing.po b/l10n/gl/files_sharing.po index 9199ce9fce9..88ab1587760 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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -25,10 +25,14 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 msgid "web services under your control" msgstr "" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 7293a341002..cd8e1f47a9b 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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/he/core.po b/l10n/he/core.po index 0105184ff93..e061910f3cf 100644 --- a/l10n/he/core.po +++ b/l10n/he/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -36,55 +36,55 @@ msgstr "קטגוריה זאת כבר קיימת: " msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "הגדרות" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "ינואר" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "פברואר" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "מרץ" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "אפריל" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "מאי" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "יוני" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "יולי" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "אוגוסט" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "ספטמבר" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "אוקטובר" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "נובמבר" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "דצמבר" @@ -246,7 +246,7 @@ msgstr "סיום התקנה" msgid "web services under your control" msgstr "שירותי רשת בשליטתך" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "התנתקות" diff --git a/l10n/he/files.po b/l10n/he/files.po index ae9614b3482..2d4d668d0cf 100644 --- a/l10n/he/files.po +++ b/l10n/he/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: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-21 00:04+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -54,7 +54,7 @@ msgstr "הכתיבה לכונן נכשלה" msgid "Files" msgstr "קבצים" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "מחיקה" @@ -86,51 +86,56 @@ msgstr "" msgid "deleted" msgstr "" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "יוצר קובץ ZIP, אנא המתן." -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "לא יכול להעלות את הקובץ מכיוון שזו תקיה או שמשקל הקובץ 0 בתים" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "שגיאת העלאה" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "ממתין" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "ההעלאה בוטלה." -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "שם לא חוקי, '/' אסור לשימוש." -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "גודל" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "זמן שינוי" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "תקיה" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "תקיות" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "קובץ" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "קבצים" diff --git a/l10n/he/files_sharing.po b/l10n/he/files_sharing.po index 41a33dd7183..e9ce7816e23 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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -25,10 +25,14 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 msgid "web services under your control" msgstr "" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 05c51e93cd2..faaab3bd668 100644 --- a/l10n/he/settings.po +++ b/l10n/he/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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 29b8d2fc461..ab39ae01902 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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -34,55 +34,55 @@ msgstr "" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "" @@ -244,7 +244,7 @@ msgstr "सेटअप समाप्त करे" msgid "web services under your control" msgstr "" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index cc9a7bb2228..8270c796eb7 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-29 02:01+0200\n" -"PO-Revision-Date: 2011-08-13 02:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Files" msgstr "" -#: js/fileactions.js:111 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "" @@ -83,51 +83,56 @@ msgstr "" msgid "deleted" msgstr "" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "" diff --git a/l10n/hi/files_sharing.po b/l10n/hi/files_sharing.po index 2f6374a64e7..2c1a5c69458 100644 --- a/l10n/hi/files_sharing.po +++ b/l10n/hi/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:04+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -25,10 +25,14 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 msgid "web services under your control" msgstr "" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index d1cc5c5331f..967800015d6 100644 --- a/l10n/hi/settings.po +++ b/l10n/hi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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 a22b7bed243..6e8a4982438 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -36,55 +36,55 @@ msgstr "Ova kategorija već postoji: " msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Postavke" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "Siječanj" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "Veljača" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "Ožujak" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "Travanj" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "Svibanj" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "Lipanj" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "Srpanj" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "Kolovoz" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "Rujan" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "Listopad" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "Studeni" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "Prosinac" @@ -246,7 +246,7 @@ msgstr "Završi postavljanje" msgid "web services under your control" msgstr "web usluge pod vašom kontrolom" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "Odjava" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index b68ac016d93..f6640c03c3d 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-28 02:01+0200\n" -"PO-Revision-Date: 2012-08-27 13:17+0000\n" -"Last-Translator: fposavec <franz@franz-net.info>\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -54,7 +54,7 @@ msgstr "Neuspjelo pisanje na disk" msgid "Files" msgstr "Datoteke" -#: js/fileactions.js:111 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "Briši" @@ -86,51 +86,56 @@ msgstr "vrati" msgid "deleted" msgstr "izbrisano" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "generiranje ZIP datoteke, ovo može potrajati." -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nemoguće poslati datoteku jer je prazna ili je direktorij" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "Pogreška pri slanju" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "U tijeku" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "Slanje poništeno." -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "Neispravan naziv, znak '/' nije dozvoljen." -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "Veličina" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "Zadnja promjena" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "mapa" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "mape" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "datoteka" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "datoteke" diff --git a/l10n/hr/files_sharing.po b/l10n/hr/files_sharing.po index 1099b2e318d..d104bf184a1 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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:04+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -25,10 +25,14 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 msgid "web services under your control" msgstr "" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index eee022adbb6..5a912d160e5 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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 6733c3609cf..3e89b7e6afe 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -36,55 +36,55 @@ msgstr "Ez a kategória már létezik" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Beállítások" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "Január" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "Február" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "Március" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "Április" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "Május" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "Június" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "Július" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "Augusztus" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "Szeptember" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "Október" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "November" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "December" @@ -246,7 +246,7 @@ msgstr "Beállítás befejezése" msgid "web services under your control" msgstr "webszolgáltatások az irányításod alatt" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "Kilépés" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 7ad223a345b..4a97620ae7e 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/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: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-21 00:04+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -54,7 +54,7 @@ msgstr "Nem írható lemezre" msgid "Files" msgstr "Fájlok" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "Törlés" @@ -86,51 +86,56 @@ msgstr "visszavon" msgid "deleted" msgstr "törölve" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "ZIP-fájl generálása, ez eltarthat egy ideig." -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nem tölthető fel, mert mappa volt, vagy 0 byte méretű" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "Feltöltési hiba" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "Folyamatban" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "Feltöltés megszakítva" -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "Érvénytelen név, a '/' nem megengedett" -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "Méret" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "Módosítva" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "mappa" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "mappák" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "fájl" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "fájlok" diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po index cd65a560fac..11d84d4a408 100644 --- a/l10n/hu_HU/files_sharing.po +++ b/l10n/hu_HU/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -26,10 +26,14 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 msgid "web services under your control" msgstr "" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 5ad68e3b2af..3c7c74c9779 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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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/hy/core.po b/l10n/hy/core.po index 6390ad2db31..046e483eccb 100644 --- a/l10n/hy/core.po +++ b/l10n/hy/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -33,55 +33,55 @@ msgstr "" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "" @@ -243,7 +243,7 @@ msgstr "" msgid "web services under your control" msgstr "" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index 7d158306ff6..1e64d6f49e5 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: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-21 00:04+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Files" msgstr "" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "" @@ -83,51 +83,56 @@ msgstr "" msgid "deleted" msgstr "" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "" diff --git a/l10n/hy/files_sharing.po b/l10n/hy/files_sharing.po index df1e7e7843d..b21d68c6831 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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -25,10 +25,14 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 msgid "web services under your control" msgstr "" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index 8b3d317ad37..2ec80355b8f 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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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 74933c011b9..cc9ee26ccc5 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -34,55 +34,55 @@ msgstr "Iste categoria jam existe:" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Configurationes" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "" @@ -244,7 +244,7 @@ msgstr "" msgid "web services under your control" msgstr "servicios web sub tu controlo" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "Clauder le session" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 64f2fc617a4..66430afef4b 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/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: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-21 00:04+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -53,7 +53,7 @@ msgstr "" msgid "Files" msgstr "Files" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "Deler" @@ -85,51 +85,56 @@ msgstr "" msgid "deleted" msgstr "" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "Dimension" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "Modificate" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "" diff --git a/l10n/ia/files_sharing.po b/l10n/ia/files_sharing.po index 57ec736fa1b..2c01e0d398a 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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -25,10 +25,14 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 msgid "web services under your control" msgstr "" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index 3141c718649..f280838090d 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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 9beb54523a9..1b1676d042b 100644 --- a/l10n/id/core.po +++ b/l10n/id/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -36,55 +36,55 @@ msgstr "Kategori ini sudah ada:" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Setelan" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "Januari" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "Februari" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "Maret" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "April" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "Mei" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "Juni" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "Juli" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "Agustus" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "September" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "Oktober" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "Nopember" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "Desember" @@ -246,7 +246,7 @@ msgstr "Selesaikan instalasi" msgid "web services under your control" msgstr "web service dibawah kontrol anda" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "Keluar" diff --git a/l10n/id/files.po b/l10n/id/files.po index 4531640248f..53122c53b6a 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-29 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 12:13+0000\n" -"Last-Translator: Muhammad Fauzan <yosanpro@gmail.com>\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -54,7 +54,7 @@ msgstr "Gagal menulis ke disk" msgid "Files" msgstr "Berkas" -#: js/fileactions.js:111 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "Hapus" @@ -86,51 +86,56 @@ msgstr "batal dikerjakan" msgid "deleted" msgstr "dihapus" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "membuat berkas ZIP, ini mungkin memakan waktu." -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Gagal mengunggah berkas anda karena berupa direktori atau mempunyai ukuran 0 byte" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "Terjadi Galat Pengunggahan" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "Menunggu" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "Pengunggahan dibatalkan." -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "Kesalahan nama, '/' tidak diijinkan." -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "Ukuran" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "folder" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "folder-folder" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "berkas" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "berkas-berkas" diff --git a/l10n/id/files_sharing.po b/l10n/id/files_sharing.po index 5b743101fcb..e2be0ffdea8 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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -25,10 +25,14 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 msgid "web services under your control" msgstr "" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index c14d28320d4..0f56ddfbc09 100644 --- a/l10n/id/settings.po +++ b/l10n/id/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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_ID/core.po b/l10n/id_ID/core.po index db0c2d649fa..7227d27665c 100644 --- a/l10n/id_ID/core.po +++ b/l10n/id_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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" "MIME-Version: 1.0\n" @@ -33,55 +33,55 @@ msgstr "" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "" @@ -243,7 +243,7 @@ msgstr "" msgid "web services under your control" msgstr "" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "" diff --git a/l10n/id_ID/files.po b/l10n/id_ID/files.po index 4e35fb7c4e4..cbc59367cd1 100644 --- a/l10n/id_ID/files.po +++ b/l10n/id_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: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-21 00:04+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Files" msgstr "" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "" @@ -83,51 +83,56 @@ msgstr "" msgid "deleted" msgstr "" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "" diff --git a/l10n/id_ID/files_sharing.po b/l10n/id_ID/files_sharing.po index ae54f19e791..c3989d22074 100644 --- a/l10n/id_ID/files_sharing.po +++ b/l10n/id_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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" "MIME-Version: 1.0\n" @@ -25,10 +25,14 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 msgid "web services under your control" msgstr "" diff --git a/l10n/id_ID/settings.po b/l10n/id_ID/settings.po index 8bc13f36667..f396f6be327 100644 --- a/l10n/id_ID/settings.po +++ b/l10n/id_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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/core.po b/l10n/it/core.po index 2f84a265871..da546df81f8 100644 --- a/l10n/it/core.po +++ b/l10n/it/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -38,55 +38,55 @@ msgstr "Questa categoria esiste già: " msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Impostazioni" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "Gennaio" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "Febbraio" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "Marzo" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "Aprile" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "Maggio" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "Giugno" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "Luglio" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "Agosto" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "Settembre" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "Ottobre" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "Novembre" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "Dicembre" @@ -248,7 +248,7 @@ msgstr "Termina la configurazione" msgid "web services under your control" msgstr "servizi web nelle tue mani" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "Esci" diff --git a/l10n/it/files.po b/l10n/it/files.po index 664d569fd47..b4df0c65ff5 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-21 00:04+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -55,7 +55,7 @@ msgstr "Scrittura su disco non riuscita" msgid "Files" msgstr "File" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "Elimina" @@ -87,51 +87,56 @@ msgstr "annulla" msgid "deleted" msgstr "eliminati" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "creazione file ZIP, potrebbe richiedere del tempo." -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Impossibile inviare il file poiché è una cartella o ha dimensione 0 byte" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "Errore di invio" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "In corso" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "Invio annullato" -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "Nome non valido" -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "Dimensione" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "Modificato" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "cartella" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "cartelle" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "file" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "file" diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po index e3ae1f3507d..51aec56bcd2 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:04+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -26,10 +26,14 @@ msgstr "Password" msgid "Submit" msgstr "Invia" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" +msgstr "Scarica" + +#: templates/public.php:18 +msgid "No preview available for" msgstr "" -#: templates/public.php:17 +#: templates/public.php:23 msgid "web services under your control" -msgstr "" +msgstr "servizi web nelle tue mani" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index bce95fc7429..9d79ed9ad65 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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/ja_JP/core.po b/l10n/ja_JP/core.po index 09cad91e12b..a15ecce195d 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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -35,55 +35,55 @@ msgstr "このカテゴリはすでに存在します: " msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "設定" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "1月" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "2月" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "3月" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "4月" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "5月" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "6月" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "7月" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "8月" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "9月" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "10月" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "11月" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "12月" @@ -245,7 +245,7 @@ msgstr "セットアップを完了します" msgid "web services under your control" msgstr "管理下にあるウェブサービス" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "ログアウト" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 97c519439bb..a4c99fedccf 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: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-21 00:04+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -52,7 +52,7 @@ msgstr "ディスクへの書き込みに失敗しました" msgid "Files" msgstr "ファイル" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "削除" @@ -84,51 +84,56 @@ msgstr "元に戻す" msgid "deleted" msgstr "削除" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "ZIPファイルを生成中です、しばらくお待ちください。" -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "アップロード使用としているファイルがディレクトリ、もしくはサイズが0バイトのため、アップロードできません。" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "アップロードエラー" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "保留" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "アップロードはキャンセルされました。" -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "無効な名前、'/' は使用できません。" -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "サイズ" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "更新日時" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "フォルダ" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "フォルダ" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "ファイル" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "ファイル" diff --git a/l10n/ja_JP/files_sharing.po b/l10n/ja_JP/files_sharing.po index ee86734e558..c47c870dc7b 100644 --- a/l10n/ja_JP/files_sharing.po +++ b/l10n/ja_JP/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:04+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -27,10 +27,14 @@ msgstr "パスワード" msgid "Submit" msgstr "送信" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" +msgstr "ダウンロード" + +#: templates/public.php:18 +msgid "No preview available for" msgstr "" -#: templates/public.php:17 +#: templates/public.php:23 msgid "web services under your control" -msgstr "" +msgstr "管理下のウェブサービス" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 895b04d059e..e7b829db825 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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/ko/core.po b/l10n/ko/core.po index 4a37e333471..d414be77531 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -35,55 +35,55 @@ msgstr "이 카테고리는 이미 존재합니다:" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "설정" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "1월" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "2월" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "3월" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "4월" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "5월" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "6월" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "7월" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "8월" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "9월" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "10월" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "11월" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "12월" @@ -245,7 +245,7 @@ msgstr "설치 완료" msgid "web services under your control" msgstr "내가 관리하는 웹 서비스" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "로그아웃" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index c92eee7df0f..fa66c139882 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-29 18:40+0000\n" -"Last-Translator: yunhye <limonade83@gmail.com>\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -53,7 +53,7 @@ msgstr "디스크에 쓰지 못했습니다" msgid "Files" msgstr "파일" -#: js/fileactions.js:111 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "삭제" @@ -85,51 +85,56 @@ msgstr "복구" msgid "deleted" msgstr "삭제" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "ZIP파일 생성에 시간이 걸릴 수 있습니다." -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "이 파일은 디렉토리이거나 0 바이트이기 때문에 업로드 할 수 없습니다." -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "업로드 에러" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "보류 중" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "업로드 취소." -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "잘못된 이름, '/' 은 허용이 되지 않습니다." -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "크기" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "수정됨" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "폴더" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "폴더" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "파일" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "파일" diff --git a/l10n/ko/files_sharing.po b/l10n/ko/files_sharing.po index 109d725ee3f..c02f8ffff56 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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -25,10 +25,14 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 msgid "web services under your control" msgstr "" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index f6ceba7c7ec..66e8cb31bfa 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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/lb/core.po b/l10n/lb/core.po index 9052d2aefb6..fbc1cddc1c7 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -34,55 +34,55 @@ msgstr "Des Kategorie existéiert schonn:" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Astellungen" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "" @@ -244,7 +244,7 @@ msgstr "Installatioun ofschléissen" msgid "web services under your control" msgstr "Web Servicer ënnert denger Kontroll" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "Ausloggen" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index c84f38bdc02..ae57349ec9e 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/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: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-21 00:04+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -52,7 +52,7 @@ msgstr "Konnt net op den Disk schreiwen" msgid "Files" msgstr "Dateien" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "Läschen" @@ -84,51 +84,56 @@ msgstr "" msgid "deleted" msgstr "" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "Gréisst" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "Geännert" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "" diff --git a/l10n/lb/files_sharing.po b/l10n/lb/files_sharing.po index 60d19fed6d6..83d2cf1bb5b 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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -25,10 +25,14 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 msgid "web services under your control" msgstr "" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 2b4de829276..05eb7eea105 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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 5435b4a5b96..d2e08de4377 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -34,55 +34,55 @@ msgstr "Tokia kategorija jau yra:" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Nustatymai" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "Sausis" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "Vasaris" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "Kovas" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "Balandis" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "Gegužė" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "Birželis" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "Liepa" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "Rugpjūtis" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "Rugsėjis" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "Spalis" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "Lapkritis" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "Gruodis" @@ -244,7 +244,7 @@ msgstr "Baigti diegimą" msgid "web services under your control" msgstr "jūsų valdomos web paslaugos" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "Atsijungti" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index bae53dc5d66..940281d35e3 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 07:58+0000\n" -"Last-Translator: Dr. ROX <to.dr.rox@gmail.com>\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -53,7 +53,7 @@ msgstr "Nepavyko įrašyti į diską" msgid "Files" msgstr "Failai" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "Ištrinti" @@ -85,51 +85,56 @@ msgstr "" msgid "deleted" msgstr "" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "kuriamas ZIP archyvas, tai gali užtrukti šiek tiek laiko." -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Neįmanoma įkelti failo - jo dydis gali būti 0 bitų arba tai katalogas" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "Įkėlimo klaida" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "Laukiantis" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "Įkėlimas atšauktas." -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "Pavadinime negali būti naudojamas ženklas \"/\"." -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "Dydis" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "Pakeista" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "katalogas" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "katalogai" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "failas" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "failai" diff --git a/l10n/lt_LT/files_sharing.po b/l10n/lt_LT/files_sharing.po index e1965cc1221..c51f93d5cf6 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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -26,10 +26,14 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 msgid "web services under your control" msgstr "" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index ca2f80d2fb3..89933ccb883 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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 a37e3cf176e..35b9d2e8087 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -34,55 +34,55 @@ msgstr "" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Iestatījumi" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "" @@ -244,7 +244,7 @@ msgstr "Pabeigt uzstādījumus" msgid "web services under your control" msgstr "" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "Izlogoties" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 3f19f36b910..f4af2d90e40 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/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: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-21 00:04+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -38,7 +38,7 @@ msgstr "" #: ajax/upload.php:24 msgid "No file was uploaded" -msgstr "" +msgstr "Neviens fails netika augšuplādēts" #: ajax/upload.php:25 msgid "Missing a temporary folder" @@ -46,89 +46,94 @@ msgstr "" #: ajax/upload.php:26 msgid "Failed to write to disk" -msgstr "" +msgstr "Nav iespējams saglabāt" #: appinfo/app.php:6 msgid "Files" msgstr "Faili" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "Izdzēst" #: js/filelist.js:141 msgid "already exists" -msgstr "" +msgstr "tāds fails jau eksistē" #: js/filelist.js:141 msgid "replace" -msgstr "" +msgstr "aizvietot" #: js/filelist.js:141 msgid "cancel" -msgstr "" +msgstr "atcelt" #: js/filelist.js:195 msgid "replaced" -msgstr "" +msgstr "aizvietots" #: js/filelist.js:195 msgid "with" -msgstr "" +msgstr "ar" #: js/filelist.js:195 js/filelist.js:246 msgid "undo" -msgstr "" +msgstr "vienu soli atpakaļ" #: js/filelist.js:246 msgid "deleted" -msgstr "" +msgstr "izdzests" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "lai uzģenerētu ZIP failu, kāds brīdis ir jāpagaida" -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "Nav iespējams augšuplādēt jūsu failu, jo tāds jau eksistē vai arī failam nav izmēra (0 baiti)" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "Augšuplādēšanas laikā radās kļūda" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "Gaida savu kārtu" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "Augšuplāde ir atcelta" -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "Šis simbols '/', nav atļauts." -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "Izmērs" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "Izmainīts" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "mape" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "mapes" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "fails" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "faili" @@ -142,7 +147,7 @@ msgstr "Maksimālais failu augšuplādes apjoms" #: templates/admin.php:7 msgid "max. possible: " -msgstr "" +msgstr "maksīmālais iespējamais:" #: templates/admin.php:9 msgid "Needed for multi-file and folder downloads." @@ -150,11 +155,11 @@ msgstr "" #: templates/admin.php:9 msgid "Enable ZIP-download" -msgstr "" +msgstr "Iespējot ZIP lejuplādi" #: templates/admin.php:11 msgid "0 is unlimited" -msgstr "" +msgstr "0 ir neierobežots" #: templates/admin.php:12 msgid "Maximum input size for ZIP files" @@ -162,19 +167,19 @@ msgstr "" #: templates/index.php:7 msgid "New" -msgstr "" +msgstr "Jauns" #: templates/index.php:9 msgid "Text file" -msgstr "" +msgstr "Teksta fails" #: templates/index.php:10 msgid "Folder" -msgstr "" +msgstr "Mape" #: templates/index.php:11 msgid "From url" -msgstr "" +msgstr "No URL saites" #: templates/index.php:21 msgid "Upload" @@ -182,7 +187,7 @@ msgstr "Augšuplādet" #: templates/index.php:27 msgid "Cancel upload" -msgstr "" +msgstr "Atcelt augšuplādi" #: templates/index.php:39 msgid "Nothing in here. Upload something!" @@ -194,7 +199,7 @@ msgstr "Nosaukums" #: templates/index.php:49 msgid "Share" -msgstr "" +msgstr "Līdzdalīt" #: templates/index.php:51 msgid "Download" @@ -212,8 +217,8 @@ msgstr "" #: templates/index.php:71 msgid "Files are being scanned, please wait." -msgstr "" +msgstr "Faili šobrīd tiek caurskatīti, nedaudz jāpagaida." #: templates/index.php:74 msgid "Current scanning" -msgstr "" +msgstr "Šobrīd tiek pārbaudīti" diff --git a/l10n/lv/files_sharing.po b/l10n/lv/files_sharing.po index 541faf72984..f102c0e8e37 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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -25,10 +25,14 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 msgid "web services under your control" msgstr "" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 44626e524c9..b518362de95 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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 819d83c00f0..b8fbb8b2a1d 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -36,55 +36,55 @@ msgstr "Оваа категорија веќе постои:" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Поставки" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "Јануари" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "Февруари" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "Март" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "Април" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "Мај" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "Јуни" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "Јули" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "Август" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "Септември" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "Октомври" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "Ноември" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "Декември" @@ -246,7 +246,7 @@ msgstr "Заврши го подесувањето" msgid "web services under your control" msgstr "веб сервиси под Ваша контрола" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "Одјава" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 374cb871393..378ca4a4e1e 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/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: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-21 00:04+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -54,7 +54,7 @@ msgstr "Неуспеав да запишам на диск" msgid "Files" msgstr "Датотеки" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "Избриши" @@ -86,51 +86,56 @@ msgstr "" msgid "deleted" msgstr "" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "Се генерира ZIP фајлот, ќе треба извесно време." -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Не може да се преземе вашата датотека бидејќи фолдерот во кој се наоѓа фајлот има големина од 0 бајти" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "Грешка при преземање" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "Чека" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "Преземањето е прекинато." -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "неисправно име, '/' не е дозволено." -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "Големина" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "Променето" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "фолдер" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "фолдери" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "датотека" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "датотеки" diff --git a/l10n/mk/files_sharing.po b/l10n/mk/files_sharing.po index ff3aea4b67a..53057883d04 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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -25,10 +25,14 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 msgid "web services under your control" msgstr "" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 8f71e56a598..8d491633f3b 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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 32e0b5e0873..76453523a6c 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -36,55 +36,55 @@ msgstr "Kategori ini telah wujud" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Tetapan" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "Januari" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "Februari" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "Mac" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "April" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "Mei" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "Jun" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "Julai" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "Ogos" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "September" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "Oktober" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "November" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "Disember" @@ -246,7 +246,7 @@ msgstr "Setup selesai" msgid "web services under your control" msgstr "Perkhidmatan web di bawah kawalan anda" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "Log keluar" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index d25d888cfc1..ebf4d8af0f5 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-21 00:04+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -55,7 +55,7 @@ msgstr "Gagal untuk disimpan" msgid "Files" msgstr "fail" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "Padam" @@ -87,51 +87,56 @@ msgstr "" msgid "deleted" msgstr "dihapus" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "sedang menghasilkan fail ZIP, mungkin mengambil sedikit masa." -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Tidak boleh memuatnaik fail anda kerana mungkin ianya direktori atau saiz fail 0 bytes" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "Muat naik ralat" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "Dalam proses" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "Muatnaik dibatalkan." -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "penggunaa nama tidak sah, '/' tidak dibenarkan." -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "Saiz" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "direktori" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "direktori" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "fail" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "fail" diff --git a/l10n/ms_MY/files_sharing.po b/l10n/ms_MY/files_sharing.po index e81150885af..ed56ac1736f 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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -25,10 +25,14 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 msgid "web services under your control" msgstr "" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index a23283e4d30..f88b49ab738 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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/nb_NO/core.po b/l10n/nb_NO/core.po index 06f26b6566d..7f1fc5fdb4e 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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" @@ -38,55 +38,55 @@ msgstr "Denne kategorien finnes allerede:" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Innstillinger" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "Januar" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "Februar" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "Mars" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "April" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "Mai" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "Juni" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "Juli" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "August" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "September" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "Oktober" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "November" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "Desember" @@ -248,7 +248,7 @@ msgstr "Fullfør oppsetting" msgid "web services under your control" msgstr "nettjenester under din kontroll" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "Logg ut" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index 83cb1a62832..e909322805c 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:02+0000\n" -"Last-Translator: runesudden <runesudden@gmail.com>\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"Last-Translator: I Robot <thomas.mueller@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" "Content-Type: text/plain; charset=UTF-8\n" @@ -56,7 +56,7 @@ msgstr "Klarte ikke å skrive til disk" msgid "Files" msgstr "Filer" -#: js/fileactions.js:111 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "Slett" @@ -88,51 +88,56 @@ msgstr "angre" msgid "deleted" msgstr "slettet" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "opprettet ZIP-fil, dette kan ta litt tid" -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Kan ikke laste opp filen din siden det er en mappe eller den har 0 bytes" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "Opplasting feilet" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "Ventende" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "Opplasting avbrutt." -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "Ugyldig navn, '/' er ikke tillatt. " -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "Størrelse" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "Endret" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "mappe" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "mapper" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "fil" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "filer" diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index 922723d810c..941f7443cfb 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:04+0000\n" "Last-Translator: I Robot <thomas.mueller@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" @@ -26,10 +26,14 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 msgid "web services under your control" msgstr "" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 9921843b972..74b34751ae2 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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 d85fb88a3ff..171120bab74 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -39,55 +39,55 @@ msgstr "De categorie bestaat al." msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Instellingen" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "Januari" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "Februari" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "Maart" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "April" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "Mei" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "Juni" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "Juli" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "Augustus" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "September" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "Oktober" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "November" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "December" @@ -249,7 +249,7 @@ msgstr "Installatie afronden" msgid "web services under your control" msgstr "webdiensten die je beheerst" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "Afmelden" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index ab52fb70288..f5d8cf3bfe5 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-25 02:04+0200\n" -"PO-Revision-Date: 2012-08-24 08:34+0000\n" -"Last-Translator: Richard Bos <radoeka@gmail.com>\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -59,7 +59,7 @@ msgstr "Schrijven naar schijf mislukt" msgid "Files" msgstr "Bestanden" -#: js/fileactions.js:111 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "Verwijder" @@ -91,51 +91,56 @@ msgstr "ongedaan maken" msgid "deleted" msgstr "verwijderd" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "aanmaken ZIP-file, dit kan enige tijd duren." -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "uploaden van de file mislukt, het is of een directory of de bestandsgrootte is 0 bytes" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "Upload Fout" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "Wachten" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "Uploaden geannuleerd." -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "Ongeldige naam, '/' is niet toegestaan." -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "Bestandsgrootte" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "Laatst aangepast" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "map" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "mappen" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "bestand" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "bestanden" diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index 6284ad7a6c9..98f93a33de1 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -26,10 +26,14 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 msgid "web services under your control" msgstr "" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 2ffd48deed5..7abf382c2c9 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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/nn_NO/core.po b/l10n/nn_NO/core.po index cc43de36a9a..aa0a9a4c8be 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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -35,55 +35,55 @@ msgstr "" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Innstillingar" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "" @@ -245,7 +245,7 @@ msgstr "Fullfør oppsettet" msgid "web services under your control" msgstr "Vev tjenester under din kontroll" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "Logg ut" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index f0ce0b444a2..1fecca7984d 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: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-21 00:04+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -53,7 +53,7 @@ msgstr "" msgid "Files" msgstr "Filer" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "Slett" @@ -85,51 +85,56 @@ msgstr "" msgid "deleted" msgstr "" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "Storleik" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "Endra" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "" diff --git a/l10n/nn_NO/files_sharing.po b/l10n/nn_NO/files_sharing.po index 85149a47a10..e5055f0809b 100644 --- a/l10n/nn_NO/files_sharing.po +++ b/l10n/nn_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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -25,10 +25,14 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 msgid "web services under your control" msgstr "" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index 8e907e16d52..6eeb5919695 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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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/pl/core.po b/l10n/pl/core.po index 0ba8278f61c..39c80a75e61 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:02+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -39,55 +39,55 @@ msgstr "Ta kategoria już istnieje" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Ustawienia" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "Styczeń" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "Luty" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "Marzec" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "Kwiecień" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "Maj" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "Czerwiec" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "Lipiec" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "Sierpień" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "Wrzesień" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "Październik" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "Listopad" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "Grudzień" @@ -249,7 +249,7 @@ msgstr "Zakończ konfigurowanie" msgid "web services under your control" msgstr "usługi internetowe pod kontrolą" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "Wylogowuje użytkownika" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 706d14931b0..652fd350165 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-21 00:04+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -55,7 +55,7 @@ msgstr "Błąd zapisu na dysk" msgid "Files" msgstr "Pliki" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "Usuwa element" @@ -87,51 +87,56 @@ msgstr "wróć" msgid "deleted" msgstr "skasuj" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "Generowanie pliku ZIP, może potrwać pewien czas." -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nie można wczytać pliku jeśli jest katalogiem lub ma 0 bajtów" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "Błąd wczytywania" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "Oczekujące" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "Wczytywanie anulowane." -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "Nieprawidłowa nazwa '/' jest niedozwolone." -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "Rozmiar" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "Czas modyfikacji" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "folder" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "foldery" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "plik" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "pliki" diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index cce21f84af4..0cb14cf441b 100644 --- a/l10n/pl/files_sharing.po +++ b/l10n/pl/files_sharing.po @@ -4,12 +4,13 @@ # # Translators: # Cyryl Sochacki <>, 2012. +# Paweł Ciecierski <pciecierski@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -20,16 +21,20 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "" +msgstr "Hasło" #: templates/authenticate.php:6 msgid "Submit" -msgstr "" +msgstr "Wyślij" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" +msgstr "Pobierz" + +#: templates/public.php:18 +msgid "No preview available for" msgstr "" -#: templates/public.php:17 +#: templates/public.php:23 msgid "web services under your control" -msgstr "" +msgstr "Kontrolowane serwisy" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 5ee6ed4d441..887143014b2 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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 809f9c30edf..d351bc786e2 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -4,13 +4,14 @@ # # Translators: # Cyryl Sochacki <>, 2012. +# Paweł Ciecierski <pciecierski@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-29 02:01+0200\n" -"PO-Revision-Date: 2012-08-29 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-30 15:50+0000\n" +"Last-Translator: Paweł Ciecierski <pciecierski@gmail.com>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -164,7 +165,7 @@ msgstr "w sekundach. Zmiana opróżnia pamięć podręczną." msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "" +msgstr "Pozostaw puste dla user name (domyślnie). W przeciwnym razie podaj atrybut LDAP/AD." #: templates/settings.php:32 msgid "Help" diff --git a/l10n/pl_PL/core.po b/l10n/pl_PL/core.po new file mode 100644 index 00000000000..f7b7d5a38de --- /dev/null +++ b/l10n/pl_PL/core.po @@ -0,0 +1,272 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" + +#: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 +msgid "Application name not provided." +msgstr "" + +#: ajax/vcategories/add.php:29 +msgid "No category to add?" +msgstr "" + +#: ajax/vcategories/add.php:36 +msgid "This category already exists: " +msgstr "" + +#: js/jquery-ui-1.8.16.custom.min.js:511 +msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" +msgstr "" + +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +msgid "Settings" +msgstr "" + +#: js/js.js:591 +msgid "January" +msgstr "" + +#: js/js.js:591 +msgid "February" +msgstr "" + +#: js/js.js:591 +msgid "March" +msgstr "" + +#: js/js.js:591 +msgid "April" +msgstr "" + +#: js/js.js:591 +msgid "May" +msgstr "" + +#: js/js.js:591 +msgid "June" +msgstr "" + +#: js/js.js:592 +msgid "July" +msgstr "" + +#: js/js.js:592 +msgid "August" +msgstr "" + +#: js/js.js:592 +msgid "September" +msgstr "" + +#: js/js.js:592 +msgid "October" +msgstr "" + +#: js/js.js:592 +msgid "November" +msgstr "" + +#: js/js.js:592 +msgid "December" +msgstr "" + +#: js/oc-dialogs.js:143 js/oc-dialogs.js:163 +msgid "Cancel" +msgstr "" + +#: js/oc-dialogs.js:159 +msgid "No" +msgstr "" + +#: js/oc-dialogs.js:160 +msgid "Yes" +msgstr "" + +#: js/oc-dialogs.js:177 +msgid "Ok" +msgstr "" + +#: js/oc-vcategories.js:68 +msgid "No categories selected for deletion." +msgstr "" + +#: js/oc-vcategories.js:68 +msgid "Error" +msgstr "" + +#: lostpassword/index.php:26 +msgid "ownCloud password reset" +msgstr "" + +#: lostpassword/templates/email.php:1 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 +#: templates/login.php:9 +msgid "Username" +msgstr "" + +#: lostpassword/templates/lostpassword.php:15 +msgid "Request reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 +msgid "Apps" +msgstr "" + +#: strings.php:8 +msgid "Admin" +msgstr "" + +#: strings.php:9 +msgid "Help" +msgstr "" + +#: templates/403.php:12 +msgid "Access forbidden" +msgstr "" + +#: templates/404.php:12 +msgid "Cloud not found" +msgstr "" + +#: templates/edit_categories_dialog.php:4 +msgid "Edit categories" +msgstr "" + +#: templates/edit_categories_dialog.php:14 +msgid "Add" +msgstr "" + +#: templates/installation.php:24 +msgid "Create an <strong>admin account</strong>" +msgstr "" + +#: templates/installation.php:30 templates/login.php:13 +msgid "Password" +msgstr "" + +#: templates/installation.php:36 +msgid "Advanced" +msgstr "" + +#: templates/installation.php:38 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:45 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:50 templates/installation.php:61 +#: templates/installation.php:71 templates/installation.php:81 +msgid "will be used" +msgstr "" + +#: templates/installation.php:93 +msgid "Database user" +msgstr "" + +#: templates/installation.php:97 +msgid "Database password" +msgstr "" + +#: templates/installation.php:101 +msgid "Database name" +msgstr "" + +#: templates/installation.php:109 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:115 +msgid "Database host" +msgstr "" + +#: templates/installation.php:120 +msgid "Finish setup" +msgstr "" + +#: templates/layout.guest.php:42 +msgid "web services under your control" +msgstr "" + +#: templates/layout.user.php:45 +msgid "Log out" +msgstr "" + +#: templates/login.php:6 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:17 +msgid "remember" +msgstr "" + +#: templates/login.php:18 +msgid "Log in" +msgstr "" + +#: templates/logout.php:1 +msgid "You are logged out." +msgstr "" + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "" diff --git a/l10n/pl_PL/files.po b/l10n/pl_PL/files.po new file mode 100644 index 00000000000..de6cf10414c --- /dev/null +++ b/l10n/pl_PL/files.po @@ -0,0 +1,223 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" + +#: ajax/upload.php:20 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:21 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" +msgstr "" + +#: ajax/upload.php:22 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:23 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:24 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:25 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:26 +msgid "Failed to write to disk" +msgstr "" + +#: appinfo/app.php:6 +msgid "Files" +msgstr "" + +#: js/fileactions.js:106 templates/index.php:56 +msgid "Delete" +msgstr "" + +#: js/filelist.js:141 +msgid "already exists" +msgstr "" + +#: js/filelist.js:141 +msgid "replace" +msgstr "" + +#: js/filelist.js:141 +msgid "cancel" +msgstr "" + +#: js/filelist.js:195 +msgid "replaced" +msgstr "" + +#: js/filelist.js:195 +msgid "with" +msgstr "" + +#: js/filelist.js:195 js/filelist.js:246 +msgid "undo" +msgstr "" + +#: js/filelist.js:246 +msgid "deleted" +msgstr "" + +#: js/files.js:179 +msgid "generating ZIP-file, it may take some time." +msgstr "" + +#: js/files.js:208 +msgid "Unable to upload your file as it is a directory or has 0 bytes" +msgstr "" + +#: js/files.js:208 +msgid "Upload Error" +msgstr "" + +#: js/files.js:236 js/files.js:327 js/files.js:356 +msgid "Pending" +msgstr "" + +#: js/files.js:341 +msgid "Upload cancelled." +msgstr "" + +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 +msgid "Invalid name, '/' is not allowed." +msgstr "" + +#: js/files.js:726 templates/index.php:55 +msgid "Size" +msgstr "" + +#: js/files.js:727 templates/index.php:56 +msgid "Modified" +msgstr "" + +#: js/files.js:754 +msgid "folder" +msgstr "" + +#: js/files.js:756 +msgid "folders" +msgstr "" + +#: js/files.js:764 +msgid "file" +msgstr "" + +#: js/files.js:766 +msgid "files" +msgstr "" + +#: templates/admin.php:5 +msgid "File handling" +msgstr "" + +#: templates/admin.php:7 +msgid "Maximum upload size" +msgstr "" + +#: templates/admin.php:7 +msgid "max. possible: " +msgstr "" + +#: templates/admin.php:9 +msgid "Needed for multi-file and folder downloads." +msgstr "" + +#: templates/admin.php:9 +msgid "Enable ZIP-download" +msgstr "" + +#: templates/admin.php:11 +msgid "0 is unlimited" +msgstr "" + +#: templates/admin.php:12 +msgid "Maximum input size for ZIP files" +msgstr "" + +#: templates/index.php:7 +msgid "New" +msgstr "" + +#: templates/index.php:9 +msgid "Text file" +msgstr "" + +#: templates/index.php:10 +msgid "Folder" +msgstr "" + +#: templates/index.php:11 +msgid "From url" +msgstr "" + +#: templates/index.php:21 +msgid "Upload" +msgstr "" + +#: templates/index.php:27 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:39 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:47 +msgid "Name" +msgstr "" + +#: templates/index.php:49 +msgid "Share" +msgstr "" + +#: templates/index.php:51 +msgid "Download" +msgstr "" + +#: templates/index.php:64 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:66 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:71 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:74 +msgid "Current scanning" +msgstr "" diff --git a/l10n/pl_PL/files_encryption.po b/l10n/pl_PL/files_encryption.po new file mode 100644 index 00000000000..6512705ecbc --- /dev/null +++ b/l10n/pl_PL/files_encryption.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-12 22:33+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" + +#: templates/settings.php:3 +msgid "Encryption" +msgstr "" + +#: templates/settings.php:4 +msgid "Exclude the following file types from encryption" +msgstr "" + +#: templates/settings.php:5 +msgid "None" +msgstr "" + +#: templates/settings.php:10 +msgid "Enable Encryption" +msgstr "" diff --git a/l10n/pl_PL/files_external.po b/l10n/pl_PL/files_external.po new file mode 100644 index 00000000000..3006debaa44 --- /dev/null +++ b/l10n/pl_PL/files_external.po @@ -0,0 +1,82 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-12 22:34+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:7 templates/settings.php:19 +msgid "Mount point" +msgstr "" + +#: templates/settings.php:8 +msgid "Backend" +msgstr "" + +#: templates/settings.php:9 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:10 +msgid "Options" +msgstr "" + +#: templates/settings.php:11 +msgid "Applicable" +msgstr "" + +#: templates/settings.php:23 +msgid "Add mount point" +msgstr "" + +#: templates/settings.php:54 templates/settings.php:62 +msgid "None set" +msgstr "" + +#: templates/settings.php:63 +msgid "All Users" +msgstr "" + +#: templates/settings.php:64 +msgid "Groups" +msgstr "" + +#: templates/settings.php:69 +msgid "Users" +msgstr "" + +#: templates/settings.php:77 templates/settings.php:96 +msgid "Delete" +msgstr "" + +#: templates/settings.php:88 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:102 +msgid "Import Root Certificate" +msgstr "" + +#: templates/settings.php:108 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:109 +msgid "Allow users to mount their own external storage" +msgstr "" diff --git a/l10n/pl_PL/files_sharing.po b/l10n/pl_PL/files_sharing.po new file mode 100644 index 00000000000..f92619c2f71 --- /dev/null +++ b/l10n/pl_PL/files_sharing.po @@ -0,0 +1,38 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:04+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" + +#: templates/authenticate.php:4 +msgid "Password" +msgstr "" + +#: templates/authenticate.php:6 +msgid "Submit" +msgstr "" + +#: templates/public.php:9 templates/public.php:19 +msgid "Download" +msgstr "" + +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 +msgid "web services under your control" +msgstr "" diff --git a/l10n/pl_PL/files_versions.po b/l10n/pl_PL/files_versions.po new file mode 100644 index 00000000000..1e254812458 --- /dev/null +++ b/l10n/pl_PL/files_versions.po @@ -0,0 +1,26 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-12 22:37+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" + +#: js/settings-personal.js:31 +msgid "Expire all versions" +msgstr "" + +#: templates/settings.php:3 +msgid "Enable Files Versioning" +msgstr "" diff --git a/l10n/pl_PL/lib.po b/l10n/pl_PL/lib.po new file mode 100644 index 00000000000..27da662a78c --- /dev/null +++ b/l10n/pl_PL/lib.po @@ -0,0 +1,112 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" + +#: app.php:288 +msgid "Help" +msgstr "" + +#: app.php:295 +msgid "Personal" +msgstr "" + +#: app.php:300 +msgid "Settings" +msgstr "" + +#: app.php:305 +msgid "Users" +msgstr "" + +#: app.php:312 +msgid "Apps" +msgstr "" + +#: app.php:314 +msgid "Admin" +msgstr "" + +#: files.php:276 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:277 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:277 files.php:302 +msgid "Back to Files" +msgstr "" + +#: files.php:301 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:63 json.php:75 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: template.php:86 +msgid "seconds ago" +msgstr "" + +#: template.php:87 +msgid "1 minute ago" +msgstr "" + +#: template.php:88 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:91 +msgid "today" +msgstr "" + +#: template.php:92 +msgid "yesterday" +msgstr "" + +#: template.php:93 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:94 +msgid "last month" +msgstr "" + +#: template.php:95 +msgid "months ago" +msgstr "" + +#: template.php:96 +msgid "last year" +msgstr "" + +#: template.php:97 +msgid "years ago" +msgstr "" diff --git a/l10n/pl_PL/settings.po b/l10n/pl_PL/settings.po new file mode 100644 index 00000000000..d87991490d3 --- /dev/null +++ b/l10n/pl_PL/settings.po @@ -0,0 +1,274 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" + +#: ajax/apps/ocs.php:23 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/lostpassword.php:14 +msgid "Email saved" +msgstr "" + +#: ajax/lostpassword.php:16 +msgid "Invalid email" +msgstr "" + +#: ajax/openid.php:16 +msgid "OpenID Changed" +msgstr "" + +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 +msgid "Invalid request" +msgstr "" + +#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/setlanguage.php:18 +msgid "Language changed" +msgstr "" + +#: js/apps.js:18 +msgid "Error" +msgstr "" + +#: js/apps.js:39 js/apps.js:73 +msgid "Disable" +msgstr "" + +#: js/apps.js:39 js/apps.js:62 +msgid "Enable" +msgstr "" + +#: js/personal.js:69 +msgid "Saving..." +msgstr "" + +#: personal.php:46 personal.php:47 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:29 +msgid "Cron" +msgstr "" + +#: templates/admin.php:31 +msgid "execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:33 +msgid "cron.php is registered at a webcron service" +msgstr "" + +#: templates/admin.php:35 +msgid "use systems cron service" +msgstr "" + +#: templates/admin.php:39 +msgid "Share API" +msgstr "" + +#: templates/admin.php:44 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:45 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:49 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:50 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:54 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:55 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:58 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:60 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:67 +msgid "Log" +msgstr "" + +#: templates/admin.php:95 +msgid "More" +msgstr "" + +#: templates/apps.php:10 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:26 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:29 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:30 +msgid "-licensed" +msgstr "" + +#: templates/apps.php:30 +msgid "by" +msgstr "" + +#: templates/help.php:8 +msgid "Documentation" +msgstr "" + +#: templates/help.php:9 +msgid "Managing Big Files" +msgstr "" + +#: templates/help.php:10 +msgid "Ask a question" +msgstr "" + +#: templates/help.php:22 +msgid "Problems connecting to help database." +msgstr "" + +#: templates/help.php:23 +msgid "Go there manually." +msgstr "" + +#: templates/help.php:31 +msgid "Answer" +msgstr "" + +#: templates/personal.php:8 +msgid "You use" +msgstr "" + +#: templates/personal.php:8 +msgid "of the available" +msgstr "" + +#: templates/personal.php:12 +msgid "Desktop and Mobile Syncing Clients" +msgstr "" + +#: templates/personal.php:13 +msgid "Download" +msgstr "" + +#: templates/personal.php:19 +msgid "Your password got changed" +msgstr "" + +#: templates/personal.php:20 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:21 +msgid "Current password" +msgstr "" + +#: templates/personal.php:22 +msgid "New password" +msgstr "" + +#: templates/personal.php:23 +msgid "show" +msgstr "" + +#: templates/personal.php:24 +msgid "Change password" +msgstr "" + +#: templates/personal.php:30 +msgid "Email" +msgstr "" + +#: templates/personal.php:31 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:32 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:38 templates/personal.php:39 +msgid "Language" +msgstr "" + +#: templates/personal.php:44 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:51 +msgid "use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/users.php:21 templates/users.php:76 +msgid "Name" +msgstr "" + +#: templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "" + +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +msgid "Groups" +msgstr "" + +#: templates/users.php:32 +msgid "Create" +msgstr "" + +#: templates/users.php:35 +msgid "Default Quota" +msgstr "" + +#: templates/users.php:55 templates/users.php:138 +msgid "Other" +msgstr "" + +#: templates/users.php:80 templates/users.php:112 +msgid "Group Admin" +msgstr "" + +#: templates/users.php:82 +msgid "Quota" +msgstr "" + +#: templates/users.php:146 +msgid "Delete" +msgstr "" diff --git a/l10n/pl_PL/user_ldap.po b/l10n/pl_PL/user_ldap.po new file mode 100644 index 00000000000..554396a6fe0 --- /dev/null +++ b/l10n/pl_PL/user_ldap.po @@ -0,0 +1,170 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-12 22:45+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" + +#: templates/settings.php:8 +msgid "Host" +msgstr "" + +#: templates/settings.php:8 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "" + +#: templates/settings.php:9 +msgid "Base DN" +msgstr "" + +#: templates/settings.php:9 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/settings.php:10 +msgid "User DN" +msgstr "" + +#: templates/settings.php:10 +msgid "" +"The DN of the client user with which the bind shall be done, e.g. " +"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " +"empty." +msgstr "" + +#: templates/settings.php:11 +msgid "Password" +msgstr "" + +#: templates/settings.php:11 +msgid "For anonymous access, leave DN and Password empty." +msgstr "" + +#: templates/settings.php:12 +msgid "User Login Filter" +msgstr "" + +#: templates/settings.php:12 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action." +msgstr "" + +#: templates/settings.php:12 +#, php-format +msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" +msgstr "" + +#: templates/settings.php:13 +msgid "User List Filter" +msgstr "" + +#: templates/settings.php:13 +msgid "Defines the filter to apply, when retrieving users." +msgstr "" + +#: templates/settings.php:13 +msgid "without any placeholder, e.g. \"objectClass=person\"." +msgstr "" + +#: templates/settings.php:14 +msgid "Group Filter" +msgstr "" + +#: templates/settings.php:14 +msgid "Defines the filter to apply, when retrieving groups." +msgstr "" + +#: templates/settings.php:14 +msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." +msgstr "" + +#: templates/settings.php:17 +msgid "Port" +msgstr "" + +#: templates/settings.php:18 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:19 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:20 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:21 +msgid "Use TLS" +msgstr "" + +#: templates/settings.php:21 +msgid "Do not use it for SSL connections, it will fail." +msgstr "" + +#: templates/settings.php:22 +msgid "Case insensitve LDAP server (Windows)" +msgstr "" + +#: templates/settings.php:23 +msgid "Turn off SSL certificate validation." +msgstr "" + +#: templates/settings.php:23 +msgid "" +"If connection only works with this option, import the LDAP server's SSL " +"certificate in your ownCloud server." +msgstr "" + +#: templates/settings.php:23 +msgid "Not recommended, use for testing only." +msgstr "" + +#: templates/settings.php:24 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:24 +msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgstr "" + +#: templates/settings.php:25 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:25 +msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgstr "" + +#: templates/settings.php:27 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:29 +msgid "in seconds. A change empties the cache." +msgstr "" + +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 +msgid "Help" +msgstr "" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index a1285428ee5..be5dc9aeb66 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -38,55 +38,55 @@ msgstr "Essa categoria já existe" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Configurações" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "Janeiro" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "Fevereiro" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "Março" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "Abril" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "Maio" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "Junho" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "Julho" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "Agosto" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "Setembro" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "Outubro" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "Novembro" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "Dezembro" @@ -248,7 +248,7 @@ msgstr "Concluir configuração" msgid "web services under your control" msgstr "web services sob seu controle" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "Sair" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index ccac7b79d16..c7241bdb7df 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-25 02:04+0200\n" -"PO-Revision-Date: 2012-08-24 22:17+0000\n" -"Last-Translator: targinosilveira <targinosilveira@gmail.com>\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -56,7 +56,7 @@ msgstr "Falha ao escrever no disco" msgid "Files" msgstr "Arquivos" -#: js/fileactions.js:111 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "Excluir" @@ -88,51 +88,56 @@ msgstr "desfazer" msgid "deleted" msgstr "deletado" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "gerando arquivo ZIP, isso pode levar um tempo." -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Impossível enviar seus arquivo como diretório ou ele tem 0 bytes." -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "Erro de envio" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "Pendente" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "Envio cancelado." -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "Nome inválido, '/' não é permitido." -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "Tamanho" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "Modificado" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "pasta" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "pastas" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "arquivo" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "arquivos" diff --git a/l10n/pt_BR/files_sharing.po b/l10n/pt_BR/files_sharing.po index 43165b55312..0e7ee143449 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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:04+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -25,10 +25,14 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 msgid "web services under your control" msgstr "" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 45def0c0f38..e3bbe54b78e 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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_PT/core.po b/l10n/pt_PT/core.po index 486b0c900f8..159432daa93 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -36,55 +36,55 @@ msgstr "Esta categoria já existe:" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Definições" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "Janeiro" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "Fevereiro" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "Março" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "Abril" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "Maio" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "Junho" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "Julho" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "Agosto" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "Setembro" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "Outubro" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "Novembro" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "Dezembro" @@ -246,7 +246,7 @@ msgstr "Acabar instalação" msgid "web services under your control" msgstr "serviços web sob o seu controlo" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "Sair" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index d816aedc336..57098cd5e05 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 19:39+0000\n" -"Last-Translator: rlameiro <geral@ricardolameiro.pt>\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -54,7 +54,7 @@ msgstr "Falhou a escrita no disco" msgid "Files" msgstr "Ficheiros" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "Apagar" @@ -86,51 +86,56 @@ msgstr "desfazer" msgid "deleted" msgstr "apagado" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "a gerar o ficheiro ZIP, poderá demorar algum tempo." -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Não é possivel fazer o upload do ficheiro devido a ser uma pasta ou ter 0 bytes" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "Erro no upload" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "Pendente" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "O upload foi cancelado." -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "nome inválido, '/' não permitido." -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "Tamanho" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "Modificado" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "pasta" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "pastas" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "ficheiro" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "ficheiros" diff --git a/l10n/pt_PT/files_sharing.po b/l10n/pt_PT/files_sharing.po index 57dd10e52d6..99b0c7c2155 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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:04+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -25,10 +25,14 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 msgid "web services under your control" msgstr "" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 158f3715bf6..7077d64cc48 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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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/ro/core.po b/l10n/ro/core.po index f913e8ed607..40d7fc389f3 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -36,55 +36,55 @@ msgstr "Această categorie deja există:" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Configurări" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "" @@ -246,7 +246,7 @@ msgstr "Finalizează instalarea" msgid "web services under your control" msgstr "servicii web controlate de tine" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "Ieșire" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index e7d65b7a034..44b3e74b60b 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-21 00:04+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -54,7 +54,7 @@ msgstr "Eroare la scriere pe disc" msgid "Files" msgstr "Fișiere" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "Șterge" @@ -86,51 +86,56 @@ msgstr "" msgid "deleted" msgstr "" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "Dimensiune" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "Modificat" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "" diff --git a/l10n/ro/files_sharing.po b/l10n/ro/files_sharing.po index 87f54b69864..6772dfc57a6 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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -25,10 +25,14 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 msgid "web services under your control" msgstr "" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 28d3509f8ed..e6e410f73d0 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -7,12 +7,13 @@ # Dimon Pockemon <>, 2012. # Eugen Mihalache <eugemjj@gmail.com>, 2012. # <icewind1991@gmail.com>, 2012. +# <iuranemo@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -23,15 +24,15 @@ msgstr "" #: ajax/apps/ocs.php:23 msgid "Unable to load list from App Store" -msgstr "" +msgstr "Imposibil de încărcat lista din App Store" #: ajax/lostpassword.php:14 msgid "Email saved" -msgstr "" +msgstr "E-mail salvat" #: ajax/lostpassword.php:16 msgid "Invalid email" -msgstr "" +msgstr "E-mail nevalid" #: ajax/openid.php:16 msgid "OpenID Changed" @@ -43,7 +44,7 @@ msgstr "Cerere eronată" #: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 msgid "Authentication error" -msgstr "" +msgstr "Eroare de autentificare" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -51,19 +52,19 @@ msgstr "Limba a fost schimbată" #: js/apps.js:18 msgid "Error" -msgstr "" +msgstr "Erroare" #: js/apps.js:39 js/apps.js:73 msgid "Disable" -msgstr "" +msgstr "Dezactivați" #: js/apps.js:39 js/apps.js:62 msgid "Enable" -msgstr "" +msgstr "Activați" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "Salvez..." #: personal.php:46 personal.php:47 msgid "__language_name__" @@ -71,23 +72,23 @@ msgstr "_language_name_" #: templates/admin.php:14 msgid "Security Warning" -msgstr "" +msgstr "Avertisment de securitate" #: templates/admin.php:29 msgid "Cron" -msgstr "" +msgstr "Cron" #: templates/admin.php:31 msgid "execute one task with each page loaded" -msgstr "" +msgstr "executâ o sarcină cu fiecare pagină încărcată" #: templates/admin.php:33 msgid "cron.php is registered at a webcron service" -msgstr "" +msgstr "cron.php e înregistrat la un serviciu de webcron" #: templates/admin.php:35 msgid "use systems cron service" -msgstr "" +msgstr "utilizează serviciul de cron al sistemului" #: templates/admin.php:39 msgid "Share API" @@ -143,7 +144,7 @@ msgstr "Selectează o aplicație" #: templates/apps.php:29 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "Vizualizează pagina applicației pe apps.owncloud.com" #: templates/apps.php:30 msgid "-licensed" @@ -267,7 +268,7 @@ msgstr "Altele" #: templates/users.php:80 templates/users.php:112 msgid "Group Admin" -msgstr "" +msgstr "Grupul Admin " #: templates/users.php:82 msgid "Quota" diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index 633f14c432b..8b79d7561fa 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.po @@ -4,13 +4,14 @@ # # Translators: # Dumitru Ursu <>, 2012. +# <iuranemo@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-29 02:01+0200\n" -"PO-Revision-Date: 2012-08-29 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-30 17:51+0000\n" +"Last-Translator: iuranemo <iuranemo@gmail.com>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -164,7 +165,7 @@ msgstr "în secunde. O schimbare curăță memoria tampon." msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "" +msgstr "Lăsați gol pentru numele de utilizator (implicit). În caz contrar, specificați un atribut LDAP / AD." #: templates/settings.php:32 msgid "Help" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index 5c005cb9409..cd7648d5b90 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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -37,55 +37,55 @@ msgstr "Эта категория уже существует: " msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Настройки" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "Январь" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "Февраль" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "Март" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "Апрель" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "Май" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "Июнь" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "Июль" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "Август" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "Сентябрь" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "Октябрь" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "Ноябрь" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "Декабрь" @@ -247,7 +247,7 @@ msgstr "Завершить установку" msgid "web services under your control" msgstr "Сетевые службы под твоим контролем" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "Выйти" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 624859e9c9f..9ebfee3096b 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-25 02:04+0200\n" -"PO-Revision-Date: 2012-08-24 13:06+0000\n" -"Last-Translator: Denis <reg.transifex.net@demitel.ru>\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -57,7 +57,7 @@ msgstr "Ошибка записи на диск" msgid "Files" msgstr "Файлы" -#: js/fileactions.js:111 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "Удалить" @@ -89,51 +89,56 @@ msgstr "отмена" msgid "deleted" msgstr "удален" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "создание ZIP-файла, это может занять некоторое время." -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Не удается загрузить файл размером 0 байт в каталог" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "Ошибка загрузки" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "Ожидание" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "Загрузка отменена." -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "Неверное имя, '/' не допускается." -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "Размер" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "Изменён" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "папка" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "папки" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "файл" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "файлы" diff --git a/l10n/ru/files_sharing.po b/l10n/ru/files_sharing.po index 0ab8e00bbcb..97fc33e4ef0 100644 --- a/l10n/ru/files_sharing.po +++ b/l10n/ru/files_sharing.po @@ -4,12 +4,13 @@ # # Translators: # Denis <reg.transifex.net@demitel.ru>, 2012. +# <iuranemo@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -26,10 +27,14 @@ msgstr "Пароль" msgid "Submit" msgstr "Отправить" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" +msgstr "Скачать" + +#: templates/public.php:18 +msgid "No preview available for" msgstr "" -#: templates/public.php:17 +#: templates/public.php:23 msgid "web services under your control" -msgstr "" +msgstr "веб-сервисы под вашим управлением" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index c570bddff6e..42e7017adcb 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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_RU/core.po b/l10n/ru_RU/core.po index d9bbba6c7e7..61648a74b24 100644 --- a/l10n/ru_RU/core.po +++ b/l10n/ru_RU/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -33,55 +33,55 @@ msgstr "" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "" @@ -243,7 +243,7 @@ msgstr "" msgid "web services under your control" msgstr "" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "" diff --git a/l10n/ru_RU/files.po b/l10n/ru_RU/files.po index 3db3a2c4844..f9bdd2abc96 100644 --- a/l10n/ru_RU/files.po +++ b/l10n/ru_RU/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2011-08-13 02:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Files" msgstr "" -#: js/fileactions.js:111 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "" @@ -83,51 +83,56 @@ msgstr "" msgid "deleted" msgstr "" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "" diff --git a/l10n/ru_RU/files_sharing.po b/l10n/ru_RU/files_sharing.po index a92e3899f4e..5a793d15d3d 100644 --- a/l10n/ru_RU/files_sharing.po +++ b/l10n/ru_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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:04+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -25,10 +25,14 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 msgid "web services under your control" msgstr "" diff --git a/l10n/ru_RU/settings.po b/l10n/ru_RU/settings.po index 41982d57d47..5b3ed47251d 100644 --- a/l10n/ru_RU/settings.po +++ b/l10n/ru_RU/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 95cae31afe3..e0a133b9ed1 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -35,55 +35,55 @@ msgstr "Táto kategória už existuje:" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Nastavenia" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "Január" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "Február" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "Marec" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "Apríl" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "Máj" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "Jún" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "Júl" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "August" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "September" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "Október" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "November" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "December" @@ -245,7 +245,7 @@ msgstr "Dokončiť inštaláciu" msgid "web services under your control" msgstr "webové služby pod vašou kontrolou" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "Odhlásiť" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index cadb54078e2..49d1f0dcb6b 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/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: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-21 00:04+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -53,7 +53,7 @@ msgstr "Zápis na disk sa nepodaril" msgid "Files" msgstr "Súbory" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "Odstrániť" @@ -85,51 +85,56 @@ msgstr "" msgid "deleted" msgstr "" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "generujem ZIP-súbor, môže to chvíľu trvať." -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nemôžem nahrať súbor lebo je to priečinok alebo má 0 bajtov." -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "Chyba nahrávania" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "Čaká sa" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "Nahrávanie zrušené" -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "Chybný názov, \"/\" nie je povolené" -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "Veľkosť" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "Upravené" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "priečinok" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "priečinky" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "súbor" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "súbory" diff --git a/l10n/sk_SK/files_sharing.po b/l10n/sk_SK/files_sharing.po index 225ce02eb73..bda598320ea 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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -25,10 +25,14 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 msgid "web services under your control" msgstr "" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 6d266311a20..cdc21b8fc62 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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/sl/core.po b/l10n/sl/core.po index 75f51683d0c..3c5d0388314 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -36,55 +36,55 @@ msgstr "Ta kategorija že obstaja:" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Nastavitve" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "januar" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "februar" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "marec" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "april" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "maj" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "junij" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "julij" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "avgust" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "september" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "oktober" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "november" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "december" @@ -246,7 +246,7 @@ msgstr "Dokončaj namestitev" msgid "web services under your control" msgstr "spletne storitve pod vašim nadzorom" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "Odjava" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 11c8ef18045..97c1b7d487e 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/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: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-21 00:04+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -54,7 +54,7 @@ msgstr "Pisanje na disk je spodletelo" msgid "Files" msgstr "Datoteke" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "Izbriši" @@ -86,51 +86,56 @@ msgstr "razveljavi" msgid "deleted" msgstr "izbrisano" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "Ustvarjam ZIP datoteko. To lahko traja nekaj časa." -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nalaganje ni mogoče, saj gre za mapo, ali pa ima datoteka velikost 0 bajtov." -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "Napaka pri nalaganju" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "Na čakanju" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "Nalaganje je bilo preklicano." -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "Neveljavno ime. Znak '/' ni dovoljen." -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "Velikost" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "Spremenjeno" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "mapa" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "mape" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "datoteka" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "datoteke" diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index f553a60c3a6..c5c7a7f2b65 100644 --- a/l10n/sl/files_sharing.po +++ b/l10n/sl/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -26,10 +26,14 @@ msgstr "Geslo" msgid "Submit" msgstr "Pošlji" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" +msgstr "Prenesi" + +#: templates/public.php:18 +msgid "No preview available for" msgstr "" -#: templates/public.php:17 +#: templates/public.php:23 msgid "web services under your control" -msgstr "" +msgstr "spletne storitve pod vašim nadzorom" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index f8e1963dbea..d2fe502e3fd 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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/so/core.po b/l10n/so/core.po index 421cd8feecf..4ace6abe5b2 100644 --- a/l10n/so/core.po +++ b/l10n/so/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" "MIME-Version: 1.0\n" @@ -33,55 +33,55 @@ msgstr "" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "" @@ -243,7 +243,7 @@ msgstr "" msgid "web services under your control" msgstr "" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "" diff --git a/l10n/so/files.po b/l10n/so/files.po index 576444ca8ee..346d96b8bd9 100644 --- a/l10n/so/files.po +++ b/l10n/so/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: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-21 00:04+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Files" msgstr "" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "" @@ -83,51 +83,56 @@ msgstr "" msgid "deleted" msgstr "" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "" diff --git a/l10n/so/files_sharing.po b/l10n/so/files_sharing.po index a4c02dcdc98..dbbd4da2842 100644 --- a/l10n/so/files_sharing.po +++ b/l10n/so/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:04+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" "MIME-Version: 1.0\n" @@ -25,10 +25,14 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 msgid "web services under your control" msgstr "" diff --git a/l10n/so/settings.po b/l10n/so/settings.po index 7212017b5eb..a3488b9f019 100644 --- a/l10n/so/settings.po +++ b/l10n/so/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index b575b78776b..a26d7b75298 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -34,55 +34,55 @@ msgstr "" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Подешавања" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "" @@ -244,7 +244,7 @@ msgstr "Заврши подешавање" msgid "web services under your control" msgstr "веб сервиси под контролом" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "Одјава" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index f8aaefdd550..67e491506f3 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/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: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-21 00:04+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -52,7 +52,7 @@ msgstr "" msgid "Files" msgstr "Фајлови" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "Обриши" @@ -84,51 +84,56 @@ msgstr "" msgid "deleted" msgstr "" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "Величина" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "Задња измена" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "" diff --git a/l10n/sr/files_sharing.po b/l10n/sr/files_sharing.po index 8026a97b6ae..c1bbe16e939 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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -25,10 +25,14 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 msgid "web services under your control" msgstr "" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 6e36da2b902..f15d091582e 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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 7d743cabb8f..57abf6fe74e 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -34,55 +34,55 @@ msgstr "" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Podešavanja" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "" @@ -244,7 +244,7 @@ msgstr "Završi podešavanje" msgid "web services under your control" msgstr "" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "Odjava" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index b72a13bcbbc..0c7f3b5acae 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/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: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-21 00:04+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -52,7 +52,7 @@ msgstr "" msgid "Files" msgstr "Fajlovi" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "Obriši" @@ -84,51 +84,56 @@ msgstr "" msgid "deleted" msgstr "" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "Veličina" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "Zadnja izmena" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "" diff --git a/l10n/sr@latin/files_sharing.po b/l10n/sr@latin/files_sharing.po index 1dadcaa0c73..7536a9cba88 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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -25,10 +25,14 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 msgid "web services under your control" msgstr "" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index 69ad747d516..6c84ec656f0 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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 dca8b46a25a..a42d5e9bdab 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -39,55 +39,55 @@ msgstr "Denna kategori finns redan:" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Inställningar" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "Januari" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "Februari" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "Mars" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "April" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "Maj" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "Juni" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "Juli" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "Augusti" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "September" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "Oktober" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "November" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "December" @@ -249,7 +249,7 @@ msgstr "Avsluta installation" msgid "web services under your control" msgstr "webbtjänster under din kontroll" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "Logga ut" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 14004c7faea..f5e62007888 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-22 02:04+0200\n" -"PO-Revision-Date: 2012-08-21 08:24+0000\n" -"Last-Translator: Magnus Höglund <magnus@linux.com>\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -57,7 +57,7 @@ msgstr "Misslyckades spara till disk" msgid "Files" msgstr "Filer" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "Radera" @@ -89,51 +89,56 @@ msgstr "ångra" msgid "deleted" msgstr "raderad" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "genererar ZIP-fil, det kan ta lite tid." -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Kunde inte ladda upp dina filer eftersom det antingen är en mapp eller har 0 bytes." -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "Uppladdningsfel" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "Väntar" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "Uppladdning avbruten." -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "Ogiltigt namn, '/' är inte tillåten." -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "Storlek" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "Ändrad" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "mapp" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "mappar" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "fil" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "filer" diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index 24b8b4512a6..8605c3d5d7b 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -26,10 +26,14 @@ msgstr "Lösenord" msgid "Submit" msgstr "Skicka" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" +msgstr "Ladda ner" + +#: templates/public.php:18 +msgid "No preview available for" msgstr "" -#: templates/public.php:17 +#: templates/public.php:23 msgid "web services under your control" -msgstr "" +msgstr "webbtjänster under din kontroll" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 809d52de8c9..325053565a9 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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/templates/core.pot b/l10n/templates/core.pot index 6739a9d17a0..d43c24c59c6 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" +"POT-Creation-Date: 2012-08-31 02:02+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" @@ -33,55 +33,55 @@ msgstr "" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "" @@ -243,7 +243,7 @@ msgstr "" msgid "web services under your control" msgstr "" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 35fb96910c1..1f2ea860e0c 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" +"POT-Creation-Date: 2012-08-31 02:02+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" @@ -51,7 +51,7 @@ msgstr "" msgid "Files" msgstr "" -#: js/fileactions.js:111 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "" @@ -83,51 +83,56 @@ msgstr "" msgid "deleted" msgstr "" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 45fa676de02..9aaa78f17f5 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" +"POT-Creation-Date: 2012-08-31 02:02+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 eab876421f1..d1350464edc 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" +"POT-Creation-Date: 2012-08-31 02:02+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 ecdb5b3a517..19c56ef174b 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" +"POT-Creation-Date: 2012-08-31 02:02+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" @@ -25,10 +25,14 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 msgid "web services under your control" msgstr "" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index a47259a9715..934a3cccec0 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" +"POT-Creation-Date: 2012-08-31 02:02+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 95f3528e35e..f74684b23e8 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" +"POT-Creation-Date: 2012-08-31 02:02+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 9d3d862be63..a326ab25b34 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" +"POT-Creation-Date: 2012-08-31 02:02+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 8813bf2773e..bedad418089 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" +"POT-Creation-Date: 2012-08-31 02:02+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 56e4b1d41f9..2c98916ec0d 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -35,55 +35,55 @@ msgstr "หมวดหมู่นี้มีอยู่แล้ว: " msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "ตั้งค่า" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "มกราคม" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "กุมภาพันธ์" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "มีนาคม" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "เมษายน" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "พฤษภาคม" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "มิถุนายน" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "กรกฏาคม" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "สิงหาคม" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "กันยายน" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "ตุลาคม" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "พฤศจิกายน" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "ธันวาคม" @@ -245,7 +245,7 @@ msgstr "ติดตั้งเรียบร้อยแล้ว" msgid "web services under your control" msgstr "web services under your control" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "ออกจากระบบ" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 773e125153f..4ff4ae0cd44 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/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: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-21 00:04+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -53,7 +53,7 @@ msgstr "เขียนข้อมูลลงแผ่นดิสก์ล้ msgid "Files" msgstr "ไฟล์" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "ลบ" @@ -85,51 +85,56 @@ msgstr "เลิกทำ" msgid "deleted" msgstr "ลบแล้ว" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "กำลังสร้างไฟล์บีบอัด ZIP อาจใช้เวลาสักครู่" -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "ไม่สามารถอัพโหลดไฟล์ของคุณได้ เนื่องจากไฟล์ดังกล่าวเป็นไดเร็กทอรี่หรือมีขนาด 0 ไบต์" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "เกิดข้อผิดพลาดในการอัพโหลด" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "อยู่ระหว่างดำเนินการ" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "การอัพโหลดถูกยกเลิก" -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "ชื่อที่ใช้ไม่ถูกต้อง '/' ไม่อนุญาตให้ใช้งาน" -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "ขนาด" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "ปรับปรุงล่าสุด" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "โฟลเดอร์" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "โฟลเดอร์" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "ไฟล์" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "ไฟล์" diff --git a/l10n/th_TH/files_sharing.po b/l10n/th_TH/files_sharing.po index d7cd4c2f06f..8f2587456ff 100644 --- a/l10n/th_TH/files_sharing.po +++ b/l10n/th_TH/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -26,10 +26,14 @@ msgstr "รหัสผ่าน" msgid "Submit" msgstr "ส่ง" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" +msgstr "ดาวน์โหลด" + +#: templates/public.php:18 +msgid "No preview available for" msgstr "" -#: templates/public.php:17 +#: templates/public.php:23 msgid "web services under your control" -msgstr "" +msgstr "เว็บเซอร์วิสที่คุณควบคุมการใช้งานได้" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index aed3e24a8bd..2d94b32cab5 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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 9ebd27c72b0..40f3cba6d9f 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -35,55 +35,55 @@ msgstr "Bu kategori zaten mevcut: " msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Ayarlar" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "Ocak" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "Şubat" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "Mart" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "Nisan" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "Mayıs" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "Haziran" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "Temmuz" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "Ağustos" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "Eylül" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "Ekim" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "Kasım" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "Aralık" @@ -245,7 +245,7 @@ msgstr "Kurulumu tamamla" msgid "web services under your control" msgstr "kontrolünüzdeki web servisleri" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "Çıkış yap" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 34989501126..31e1b22ebfe 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/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: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-21 00:04+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -54,7 +54,7 @@ msgstr "Diske yazılamadı" msgid "Files" msgstr "Dosyalar" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "Sil" @@ -86,51 +86,56 @@ msgstr "geri al" msgid "deleted" msgstr "silindi" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "ZIP dosyası oluşturuluyor, biraz sürebilir." -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Dosyanızın boyutu 0 byte olduğundan veya bir dizin olduğundan yüklenemedi" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "Yükleme hatası" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "Bekliyor" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "Yükleme iptal edildi." -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "Geçersiz isim, '/' işaretine izin verilmiyor." -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "Boyut" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "Değiştirilme" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "dizin" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "dizinler" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "dosya" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "dosyalar" diff --git a/l10n/tr/files_sharing.po b/l10n/tr/files_sharing.po index 5245890ac9f..7f224328937 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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:04+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -25,10 +25,14 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 msgid "web services under your control" msgstr "" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index c8ec4df6d36..708860c4e40 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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/uk/core.po b/l10n/uk/core.po index 5e62d05465c..f68db85912c 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -35,55 +35,55 @@ msgstr "" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Налаштування" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "" @@ -245,7 +245,7 @@ msgstr "Завершити налаштування" msgid "web services under your control" msgstr "веб-сервіс під вашим контролем" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "Вихід" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 8fb3ea8778f..7b0f0a27ec5 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/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: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-21 00:04+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -53,7 +53,7 @@ msgstr "" msgid "Files" msgstr "Файли" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "Видалити" @@ -85,51 +85,56 @@ msgstr "відмінити" msgid "deleted" msgstr "видалені" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "Створення ZIP-файлу, це може зайняти певний час." -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Неможливо завантажити ваш файл тому, що він тека або файл розміром 0 байт" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "Помилка завантаження" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "Очікування" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "Завантаження перервано." -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "Некоректне ім'я, '/' не дозволено." -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "Розмір" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "Змінено" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "тека" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "теки" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "файл" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "файли" diff --git a/l10n/uk/files_sharing.po b/l10n/uk/files_sharing.po index 18f1b3239f5..cfebfcf491e 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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -25,10 +25,14 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 msgid "web services under your control" msgstr "" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index c1747c1f50a..2520334ef98 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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/vi/core.po b/l10n/vi/core.po index 2f5e069a95f..16e671b63c2 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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -34,55 +34,55 @@ msgstr "Danh mục này đã được tạo :" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Cài đặt" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "Tháng 1" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "Tháng 2" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "Tháng 3" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "Tháng 4" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "Tháng 5" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "Tháng 6" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "Tháng 7" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "Tháng 8" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "Tháng 9" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "Tháng 10" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "Tháng 11" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "Tháng 12" @@ -244,7 +244,7 @@ msgstr "Cài đặt hoàn tất" msgid "web services under your control" msgstr "các dịch vụ web dưới sự kiểm soát của bạn" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "Đăng xuất" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 8ce76018a86..556eb3d9acb 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: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-21 00:04+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -52,7 +52,7 @@ msgstr "" msgid "Files" msgstr "Tập tin" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "Xóa" @@ -84,51 +84,56 @@ msgstr "" msgid "deleted" msgstr "" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "Tải lên lỗi" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "Chờ" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "Hủy tải lên" -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "Tên không hợp lệ ,không được phép dùng '/'" -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "Kích cỡ" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "Thay đổi" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "folder" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "folders" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "file" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "files" diff --git a/l10n/vi/files_sharing.po b/l10n/vi/files_sharing.po index d44805eae8e..a3aaf62a3eb 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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:04+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -25,10 +25,14 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 msgid "web services under your control" msgstr "" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 89b1c2df284..a83d1c1185a 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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 f8c449f4c41..428eaa941b3 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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" @@ -34,55 +34,55 @@ msgstr "这个分类已经存在了:" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "设置" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "一月" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "二月" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "三月" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "四月" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "五月" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "六月" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "七月" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "八月" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "九月" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "十月" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "十一月" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "十二月" @@ -244,7 +244,7 @@ msgstr "完成安装" msgid "web services under your control" msgstr "你控制下的网络服务" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "注销" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index 80307c381e6..fb7416be4a0 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/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: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-21 00:04+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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" @@ -52,7 +52,7 @@ msgstr "写磁盘失败" msgid "Files" msgstr "文件" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "删除" @@ -84,51 +84,56 @@ msgstr "撤销" msgid "deleted" msgstr "删除" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "正在生成ZIP文件,这可能需要点时间" -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "不能上传你指定的文件,可能因为它是个文件夹或者大小为0" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "上传错误" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "Pending" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "上传取消了" -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "非法文件名,\"/\"是不被许可的" -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "大小" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "修改日期" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "文件夹" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "文件夹" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "文件" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "文件" diff --git a/l10n/zh_CN.GB2312/files_sharing.po b/l10n/zh_CN.GB2312/files_sharing.po index 638e9fffe3d..4fdcb4f36f6 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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:04+0000\n" "Last-Translator: I Robot <thomas.mueller@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" @@ -25,10 +25,14 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 msgid "web services under your control" msgstr "" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index 5390e674493..d0cd8450fc1 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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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 bad15c7b6e1..83cd931d856 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -35,55 +35,55 @@ msgstr "此分类已存在: " msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "设置" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "一月" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "二月" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "三月" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "四月" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "五月" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "六月" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "七月" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "八月" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "九月" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "十月" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "十一月" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "十二月" @@ -245,7 +245,7 @@ msgstr "安装完成" msgid "web services under your control" msgstr "由您掌控的网络服务" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "注销" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 8698bb536d9..315f2654827 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-25 02:04+0200\n" -"PO-Revision-Date: 2012-08-24 01:52+0000\n" -"Last-Translator: hanfeng <appweb.cn@gmail.com>\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -54,7 +54,7 @@ msgstr "写入磁盘失败" msgid "Files" msgstr "文件" -#: js/fileactions.js:111 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "删除" @@ -86,51 +86,56 @@ msgstr "撤销" msgid "deleted" msgstr "已经删除" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "正在生成 ZIP 文件,可能需要一些时间" -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "无法上传文件,因为它是一个目录或者大小为 0 字节" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "上传错误" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "操作等待中" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "上传已取消" -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "非法的名称,不允许使用‘/’。" -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "大小" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "修改日期" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "文件夹" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "文件夹" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "文件" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "文件" diff --git a/l10n/zh_CN/files_sharing.po b/l10n/zh_CN/files_sharing.po index 70f1f248d92..e6e603fc5ac 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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:04+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -25,10 +25,14 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 msgid "web services under your control" msgstr "" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 7aaa318528c..d65dee34efe 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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_TW/core.po b/l10n/zh_TW/core.po index 03ef737717d..feb9070fb42 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:02+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -34,55 +34,55 @@ msgstr "此分類已經存在:" msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" msgstr "" -#: js/js.js:201 templates/layout.user.php:64 templates/layout.user.php:65 +#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "設定" -#: js/js.js:586 +#: js/js.js:591 msgid "January" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "February" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "March" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "April" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "May" msgstr "" -#: js/js.js:586 +#: js/js.js:591 msgid "June" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "July" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "August" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "September" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "October" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "November" msgstr "" -#: js/js.js:587 +#: js/js.js:592 msgid "December" msgstr "" @@ -244,7 +244,7 @@ msgstr "完成設定" msgid "web services under your control" msgstr "網路服務已在你控制" -#: templates/layout.user.php:49 +#: templates/layout.user.php:45 msgid "Log out" msgstr "登出" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 627c3aa1158..dc56f8de0c1 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/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: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-21 00:04+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -53,7 +53,7 @@ msgstr "寫入硬碟失敗" msgid "Files" msgstr "檔案" -#: js/fileactions.js:107 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:56 msgid "Delete" msgstr "刪除" @@ -85,51 +85,56 @@ msgstr "" msgid "deleted" msgstr "" -#: js/files.js:171 +#: js/files.js:179 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:200 +#: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:200 +#: js/files.js:208 msgid "Upload Error" msgstr "" -#: js/files.js:228 js/files.js:319 js/files.js:348 +#: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" msgstr "" -#: js/files.js:333 +#: js/files.js:341 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:409 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:480 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:703 templates/index.php:55 +#: js/files.js:726 templates/index.php:55 msgid "Size" msgstr "大小" -#: js/files.js:704 templates/index.php:56 +#: js/files.js:727 templates/index.php:56 msgid "Modified" msgstr "修改" -#: js/files.js:731 +#: js/files.js:754 msgid "folder" msgstr "" -#: js/files.js:733 +#: js/files.js:756 msgid "folders" msgstr "" -#: js/files.js:741 +#: js/files.js:764 msgid "file" msgstr "" -#: js/files.js:743 +#: js/files.js:766 msgid "files" msgstr "" diff --git a/l10n/zh_TW/files_sharing.po b/l10n/zh_TW/files_sharing.po index 744c965f70d..3699385698e 100644 --- a/l10n/zh_TW/files_sharing.po +++ b/l10n/zh_TW/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -25,10 +25,14 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:9 templates/public.php:19 msgid "Download" msgstr "" -#: templates/public.php:17 +#: templates/public.php:18 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:23 msgid "web services under your control" msgstr "" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index ed8f34b1a30..19686a64f5c 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/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: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 00:03+0000\n" +"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"PO-Revision-Date: 2012-08-31 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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/settings/l10n/de.php b/settings/l10n/de.php index 791a75fd7ca..8a9e4bd5682 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -1,5 +1,5 @@ <?php $TRANSLATIONS = array( -"Unable to load list from App Store" => "Liste der Apps im Store konnte nicht geladen werden.", +"Unable to load list from App Store" => "Die Liste der Apps im Store konnte nicht geladen werden.", "Email saved" => "E-Mail gespeichert", "Invalid email" => "Ungültige E-Mail", "OpenID Changed" => "OpenID geändert", @@ -19,13 +19,13 @@ "Log" => "Log", "More" => "Mehr", "Add your App" => "Fügen Sie Ihre App hinzu", -"Select an App" => "Wähle eine Anwendung aus", -"See application page at apps.owncloud.com" => "Weitere Anwendungen auf apps.owncloud.com", +"Select an App" => "Wählen Sie eine Anwendung aus", +"See application page at apps.owncloud.com" => "Weitere Anwendungen finden Sie auf apps.owncloud.com", "-licensed" => "-lizenziert", "by" => "von", "Documentation" => "Dokumentation", "Managing Big Files" => "Große Dateien verwalten", -"Ask a question" => "Stell eine Frage", +"Ask a question" => "Stellen Sie eine Frage", "Problems connecting to help database." => "Probleme bei der Verbindung zur Hilfe-Datenbank.", "Go there manually." => "Datenbank direkt besuchen.", "Answer" => "Antwort", @@ -44,7 +44,7 @@ "Fill in an email address to enable password recovery" => "Tragen Sie eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren.", "Language" => "Sprache", "Help translate" => "Helfen Sie bei der Übersetzung", -"use this address to connect to your ownCloud in your file manager" => "Benutzen Sie diese Adresse, um Ihr ownCloud mit deinem Dateimanager zu verbinden.", +"use this address to connect to your ownCloud in your file manager" => "Benutzen Sie diese Adresse, um Ihre ownCloud mit Ihrem Dateimanager zu verbinden.", "Name" => "Name", "Password" => "Passwort", "Groups" => "Gruppen", diff --git a/settings/l10n/ro.php b/settings/l10n/ro.php index 1b69b7a84fe..b47e9c491a7 100644 --- a/settings/l10n/ro.php +++ b/settings/l10n/ro.php @@ -1,12 +1,26 @@ <?php $TRANSLATIONS = array( +"Unable to load list from App Store" => "Imposibil de încărcat lista din App Store", +"Email saved" => "E-mail salvat", +"Invalid email" => "E-mail nevalid", "OpenID Changed" => "OpenID schimbat", "Invalid request" => "Cerere eronată", +"Authentication error" => "Eroare de autentificare", "Language changed" => "Limba a fost schimbată", +"Error" => "Erroare", +"Disable" => "Dezactivați", +"Enable" => "Activați", +"Saving..." => "Salvez...", "__language_name__" => "_language_name_", +"Security Warning" => "Avertisment de securitate", +"Cron" => "Cron", +"execute one task with each page loaded" => "executâ o sarcină cu fiecare pagină încărcată", +"cron.php is registered at a webcron service" => "cron.php e înregistrat la un serviciu de webcron", +"use systems cron service" => "utilizează serviciul de cron al sistemului", "Log" => "Jurnal de activitate", "More" => "Mai mult", "Add your App" => "Adaugă aplicația ta", "Select an App" => "Selectează o aplicație", +"See application page at apps.owncloud.com" => "Vizualizează pagina applicației pe apps.owncloud.com", "-licensed" => "-autorizat", "by" => "de", "Documentation" => "Documetație", @@ -37,6 +51,7 @@ "Create" => "Crează", "Default Quota" => "Cotă implicită", "Other" => "Altele", +"Group Admin" => "Grupul Admin ", "Quota" => "Cotă", "Delete" => "Șterge" ); -- cgit v1.2.3 From c07eb4fec69ad8d691a1168f5a09db5e52f65589 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski <mtgap@owncloud.com> Date: Fri, 31 Aug 2012 17:26:32 -0400 Subject: Make css selector more specific for the sharing dropdown --- core/css/share.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core') diff --git a/core/css/share.css b/core/css/share.css index abaeb07dd8a..cccc3585a47 100644 --- a/core/css/share.css +++ b/core/css/share.css @@ -16,5 +16,5 @@ a.showCruds:hover { opacity:1; } a.unshare { float:right; display:inline; padding:.3em 0 0 .3em !important; opacity:.5; } a.unshare:hover { opacity:1; } #link { border-top:1px solid #ddd; padding-top:0.5em; } -input[type="text"], input[type="password"] { width:90%; } +#dropdown input[type="text"], #dropdown input[type="password"] { width:90%; } #linkText, #linkPass { display:none; } -- cgit v1.2.3 From ab090d5277a836667d71e09d1ac5288de85a5434 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud <thomas.mueller@tmit.eu> Date: Sat, 1 Sep 2012 02:04:00 +0200 Subject: [tx-robot] updated from transifex --- apps/files/l10n/ca.php | 1 + apps/files/l10n/de.php | 1 + apps/files/l10n/es.php | 1 + apps/files/l10n/fr.php | 1 + apps/files/l10n/it.php | 1 + apps/files/l10n/ja_JP.php | 1 + apps/files/l10n/ru.php | 1 + apps/files/l10n/sl.php | 1 + apps/files/l10n/sv.php | 1 + apps/files/l10n/th_TH.php | 1 + apps/files/l10n/zh_TW.php | 9 ++++ apps/files_sharing/l10n/ca.php | 1 + apps/files_sharing/l10n/de.php | 1 + apps/files_sharing/l10n/es.php | 1 + apps/files_sharing/l10n/fr.php | 1 + apps/files_sharing/l10n/it.php | 1 + apps/files_sharing/l10n/ja_JP.php | 1 + apps/files_sharing/l10n/sl.php | 1 + apps/files_sharing/l10n/sv.php | 1 + apps/files_sharing/l10n/th_TH.php | 1 + apps/user_ldap/l10n/de.php | 3 +- apps/user_ldap/l10n/es.php | 25 +++++++++++ core/l10n/ca.php | 1 + core/l10n/de.php | 1 + core/l10n/es.php | 1 + core/l10n/fr.php | 1 + core/l10n/it.php | 1 + core/l10n/ja_JP.php | 1 + core/l10n/sl.php | 1 + core/l10n/sv.php | 1 + core/l10n/th_TH.php | 1 + core/l10n/tr.php | 1 + core/l10n/zh_TW.php | 20 +++++++++ l10n/af/lib.po | 39 +++++++++++------ l10n/ar/lib.po | 39 +++++++++++------ l10n/ar_SA/lib.po | 39 +++++++++++------ l10n/bg_BG/lib.po | 39 +++++++++++------ l10n/ca/core.po | 8 ++-- l10n/ca/files.po | 10 ++--- l10n/ca/files_sharing.po | 8 ++-- l10n/ca/lib.po | 39 +++++++++++------ l10n/ca/settings.po | 24 +++++------ l10n/cs_CZ/lib.po | 27 +++++++++--- l10n/da/lib.po | 84 +++++++++++++++++++++--------------- l10n/de/core.po | 8 ++-- l10n/de/files.po | 9 ++-- l10n/de/files_sharing.po | 8 ++-- l10n/de/lib.po | 27 +++++++++--- l10n/de/settings.po | 24 +++++------ l10n/de/user_ldap.po | 8 ++-- l10n/el/lib.po | 39 +++++++++++------ l10n/eo/lib.po | 41 ++++++++++++------ l10n/es/core.po | 9 ++-- l10n/es/files.po | 9 ++-- l10n/es/files_sharing.po | 9 ++-- l10n/es/lib.po | 39 +++++++++++------ l10n/es/settings.po | 25 +++++------ l10n/es/user_ldap.po | 58 +++++++++++++------------ l10n/et_EE/lib.po | 39 +++++++++++------ l10n/eu/lib.po | 84 +++++++++++++++++++++--------------- l10n/eu_ES/lib.po | 39 +++++++++++------ l10n/fa/lib.po | 27 +++++++++--- l10n/fi/lib.po | 27 +++++++++--- l10n/fi_FI/lib.po | 39 +++++++++++------ l10n/fr/core.po | 9 ++-- l10n/fr/files.po | 9 ++-- l10n/fr/files_sharing.po | 9 ++-- l10n/fr/lib.po | 39 +++++++++++------ l10n/fr/settings.po | 25 +++++------ l10n/gl/lib.po | 39 +++++++++++------ l10n/he/lib.po | 39 +++++++++++------ l10n/hi/lib.po | 27 +++++++++--- l10n/hr/lib.po | 39 +++++++++++------ l10n/hu_HU/lib.po | 84 +++++++++++++++++++++--------------- l10n/hy/lib.po | 39 +++++++++++------ l10n/ia/lib.po | 39 +++++++++++------ l10n/id/lib.po | 39 +++++++++++------ l10n/id_ID/lib.po | 39 +++++++++++------ l10n/it/core.po | 8 ++-- l10n/it/files.po | 8 ++-- l10n/it/files_sharing.po | 8 ++-- l10n/it/lib.po | 39 +++++++++++------ l10n/it/settings.po | 24 +++++------ l10n/ja_JP/core.po | 8 ++-- l10n/ja_JP/files.po | 9 ++-- l10n/ja_JP/files_sharing.po | 8 ++-- l10n/ja_JP/lib.po | 84 +++++++++++++++++++++--------------- l10n/ja_JP/settings.po | 24 +++++------ l10n/ko/lib.po | 39 +++++++++++------ l10n/lb/lib.po | 39 +++++++++++------ l10n/lt_LT/lib.po | 27 +++++++++--- l10n/lv/lib.po | 39 +++++++++++------ l10n/mk/lib.po | 39 +++++++++++------ l10n/ms_MY/lib.po | 39 +++++++++++------ l10n/nb_NO/lib.po | 27 +++++++++--- l10n/nl/lib.po | 27 +++++++++--- l10n/nn_NO/lib.po | 39 +++++++++++------ l10n/pl/lib.po | 84 +++++++++++++++++++++--------------- l10n/pl_PL/lib.po | 27 +++++++++--- l10n/pt_BR/lib.po | 39 +++++++++++------ l10n/pt_PT/lib.po | 39 +++++++++++------ l10n/ro/lib.po | 39 +++++++++++------ l10n/ru/files.po | 8 ++-- l10n/ru/lib.po | 27 +++++++++--- l10n/ru_RU/lib.po | 27 +++++++++--- l10n/sk_SK/lib.po | 39 +++++++++++------ l10n/sl/core.po | 8 ++-- l10n/sl/files.po | 8 ++-- l10n/sl/files_sharing.po | 8 ++-- l10n/sl/lib.po | 27 +++++++++--- l10n/sl/settings.po | 24 +++++------ l10n/so/lib.po | 39 +++++++++++------ l10n/sr/lib.po | 39 +++++++++++------ l10n/sr@latin/lib.po | 39 +++++++++++------ l10n/sv/core.po | 8 ++-- l10n/sv/files.po | 8 ++-- l10n/sv/files_sharing.po | 8 ++-- l10n/sv/lib.po | 27 +++++++++--- l10n/sv/settings.po | 24 +++++------ l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 23 +++++++--- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/th_TH/core.po | 8 ++-- l10n/th_TH/files.po | 8 ++-- l10n/th_TH/files_sharing.po | 8 ++-- l10n/th_TH/lib.po | 27 +++++++++--- l10n/th_TH/settings.po | 24 +++++------ l10n/tr/core.po | 9 ++-- l10n/tr/lib.po | 39 +++++++++++------ l10n/uk/lib.po | 39 +++++++++++------ l10n/vi/lib.po | 39 +++++++++++------ l10n/zh_CN.GB2312/lib.po | 27 +++++++++--- l10n/zh_CN/lib.po | 27 +++++++++--- l10n/zh_TW/core.po | 47 ++++++++++---------- l10n/zh_TW/files.po | 25 +++++------ l10n/zh_TW/lib.po | 85 ++++++++++++++++++++++--------------- lib/l10n/da.php | 25 +++++++++++ lib/l10n/eo.php | 1 + lib/l10n/eu.php | 25 +++++++++++ lib/l10n/hu_HU.php | 25 +++++++++++ lib/l10n/ja_JP.php | 25 +++++++++++ lib/l10n/pl.php | 25 +++++++++++ lib/l10n/zh_TW.php | 25 +++++++++++ settings/l10n/ca.php | 9 ++++ settings/l10n/de.php | 9 ++++ settings/l10n/es.php | 9 ++++ settings/l10n/fr.php | 9 ++++ settings/l10n/it.php | 9 ++++ settings/l10n/ja_JP.php | 9 ++++ settings/l10n/sl.php | 9 ++++ settings/l10n/sv.php | 9 ++++ settings/l10n/th_TH.php | 9 ++++ 158 files changed, 2202 insertions(+), 1097 deletions(-) create mode 100644 lib/l10n/da.php create mode 100644 lib/l10n/eu.php create mode 100644 lib/l10n/hu_HU.php create mode 100644 lib/l10n/ja_JP.php create mode 100644 lib/l10n/pl.php create mode 100644 lib/l10n/zh_TW.php (limited to 'core') diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index 81bbfe03a0c..d887c8a9521 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -20,6 +20,7 @@ "Upload Error" => "Error en la pujada", "Pending" => "Pendents", "Upload cancelled." => "La pujada s'ha cancel·lat.", +"File upload is in progress. Leaving the page now will cancel the upload." => "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·larà.", "Invalid name, '/' is not allowed." => "El nom no és vàlid, no es permet '/'.", "Size" => "Mida", "Modified" => "Modificat", diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index aad89a6d4d4..7a3e61f9bec 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -20,6 +20,7 @@ "Upload Error" => "Fehler beim Hochladen", "Pending" => "Ausstehend", "Upload cancelled." => "Hochladen abgebrochen.", +"File upload is in progress. Leaving the page now will cancel the upload." => "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen.", "Invalid name, '/' is not allowed." => "Ungültiger Name: \"/\" ist nicht erlaubt.", "Size" => "Größe", "Modified" => "Bearbeitet", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index 6cd51d60e27..8e17b7931b0 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -20,6 +20,7 @@ "Upload Error" => "Error al subir el archivo", "Pending" => "Pendiente", "Upload cancelled." => "Subida cancelada.", +"File upload is in progress. Leaving the page now will cancel the upload." => "La subida del archivo está en proceso. Salir de la página ahora cancelará la subida.", "Invalid name, '/' is not allowed." => "Nombre no válido, '/' no está permitido.", "Size" => "Tamaño", "Modified" => "Modificado", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index 6cedfe2f912..d0a4c020f38 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -20,6 +20,7 @@ "Upload Error" => "Erreur de chargement", "Pending" => "En cours", "Upload cancelled." => "Chargement annulé.", +"File upload is in progress. Leaving the page now will cancel the upload." => "L'envoi du fichier est en cours. Quitter cette page maintenant annulera l'envoi du fichier.", "Invalid name, '/' is not allowed." => "Nom invalide, '/' n'est pas autorisé.", "Size" => "Taille", "Modified" => "Modifié", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index 6fda30a8f35..607969746cf 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -20,6 +20,7 @@ "Upload Error" => "Errore di invio", "Pending" => "In corso", "Upload cancelled." => "Invio annullato", +"File upload is in progress. Leaving the page now will cancel the upload." => "Caricamento del file in corso. La chiusura della pagina annullerà il caricamento.", "Invalid name, '/' is not allowed." => "Nome non valido", "Size" => "Dimensione", "Modified" => "Modificato", diff --git a/apps/files/l10n/ja_JP.php b/apps/files/l10n/ja_JP.php index 8c19e455012..6dbdf8215da 100644 --- a/apps/files/l10n/ja_JP.php +++ b/apps/files/l10n/ja_JP.php @@ -20,6 +20,7 @@ "Upload Error" => "アップロードエラー", "Pending" => "保留", "Upload cancelled." => "アップロードはキャンセルされました。", +"File upload is in progress. Leaving the page now will cancel the upload." => "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。", "Invalid name, '/' is not allowed." => "無効な名前、'/' は使用できません。", "Size" => "サイズ", "Modified" => "更新日時", diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index 71b30d22df4..3976baeae38 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -20,6 +20,7 @@ "Upload Error" => "Ошибка загрузки", "Pending" => "Ожидание", "Upload cancelled." => "Загрузка отменена.", +"File upload is in progress. Leaving the page now will cancel the upload." => "Файл в процессе загрузки. Покинув страницу вы прервёте загрузку.", "Invalid name, '/' is not allowed." => "Неверное имя, '/' не допускается.", "Size" => "Размер", "Modified" => "Изменён", diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index f6322b2507d..fa506795d9a 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -20,6 +20,7 @@ "Upload Error" => "Napaka pri nalaganju", "Pending" => "Na čakanju", "Upload cancelled." => "Nalaganje je bilo preklicano.", +"File upload is in progress. Leaving the page now will cancel the upload." => "Nalaganje datoteke je v teku. Če zapustite to stran zdaj, boste nalaganje preklicali.", "Invalid name, '/' is not allowed." => "Neveljavno ime. Znak '/' ni dovoljen.", "Size" => "Velikost", "Modified" => "Spremenjeno", diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index a62b7522511..b76914b642e 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -20,6 +20,7 @@ "Upload Error" => "Uppladdningsfel", "Pending" => "Väntar", "Upload cancelled." => "Uppladdning avbruten.", +"File upload is in progress. Leaving the page now will cancel the upload." => "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen.", "Invalid name, '/' is not allowed." => "Ogiltigt namn, '/' är inte tillåten.", "Size" => "Storlek", "Modified" => "Ändrad", diff --git a/apps/files/l10n/th_TH.php b/apps/files/l10n/th_TH.php index eed9c36e132..d80ec2d877d 100644 --- a/apps/files/l10n/th_TH.php +++ b/apps/files/l10n/th_TH.php @@ -20,6 +20,7 @@ "Upload Error" => "เกิดข้อผิดพลาดในการอัพโหลด", "Pending" => "อยู่ระหว่างดำเนินการ", "Upload cancelled." => "การอัพโหลดถูกยกเลิก", +"File upload is in progress. Leaving the page now will cancel the upload." => "การอัพโหลดไฟล์กำลังอยู่ในระหว่างดำเนินการ การออกจากหน้าเว็บนี้จะทำให้การอัพโหลดถูกยกเลิก", "Invalid name, '/' is not allowed." => "ชื่อที่ใช้ไม่ถูกต้อง '/' ไม่อนุญาตให้ใช้งาน", "Size" => "ขนาด", "Modified" => "ปรับปรุงล่าสุด", diff --git a/apps/files/l10n/zh_TW.php b/apps/files/l10n/zh_TW.php index bc8aa4ff892..9652fb5a073 100644 --- a/apps/files/l10n/zh_TW.php +++ b/apps/files/l10n/zh_TW.php @@ -8,6 +8,15 @@ "Failed to write to disk" => "寫入硬碟失敗", "Files" => "檔案", "Delete" => "刪除", +"already exists" => "已經存在", +"replace" => "取代", +"cancel" => "取消", +"generating ZIP-file, it may take some time." => "產生壓縮檔, 它可能需要一段時間.", +"Unable to upload your file as it is a directory or has 0 bytes" => "無法上傳您的檔案因為它可能是一個目錄或檔案大小為0", +"Upload Error" => "上傳發生錯誤", +"Upload cancelled." => "上傳取消", +"File upload is in progress. Leaving the page now will cancel the upload." => "檔案上傳中. 離開此頁面將會取消上傳.", +"Invalid name, '/' is not allowed." => "無效的名稱, '/'是不被允許的", "Size" => "大小", "Modified" => "修改", "File handling" => "檔案處理", diff --git a/apps/files_sharing/l10n/ca.php b/apps/files_sharing/l10n/ca.php index b8a1110fe03..f00d0d72632 100644 --- a/apps/files_sharing/l10n/ca.php +++ b/apps/files_sharing/l10n/ca.php @@ -2,5 +2,6 @@ "Password" => "Contrasenya", "Submit" => "Envia", "Download" => "Baixa", +"No preview available for" => "No hi ha vista prèvia disponible per a", "web services under your control" => "controleu els vostres serveis web" ); diff --git a/apps/files_sharing/l10n/de.php b/apps/files_sharing/l10n/de.php index bfb0d076a31..90dce8ec623 100644 --- a/apps/files_sharing/l10n/de.php +++ b/apps/files_sharing/l10n/de.php @@ -2,5 +2,6 @@ "Password" => "Passwort", "Submit" => "Absenden", "Download" => "Download", +"No preview available for" => "Es ist keine Vorschau verfügbar für", "web services under your control" => "Web-Services unter Ihrer Kontrolle" ); diff --git a/apps/files_sharing/l10n/es.php b/apps/files_sharing/l10n/es.php index 0bc085c4d35..b1d44e5485e 100644 --- a/apps/files_sharing/l10n/es.php +++ b/apps/files_sharing/l10n/es.php @@ -2,5 +2,6 @@ "Password" => "Contraseña", "Submit" => "Enviar", "Download" => "Descargar", +"No preview available for" => "No hay vista previa disponible para", "web services under your control" => "Servicios web bajo su control" ); diff --git a/apps/files_sharing/l10n/fr.php b/apps/files_sharing/l10n/fr.php index 91a6e3e92c6..54d9e9ec567 100644 --- a/apps/files_sharing/l10n/fr.php +++ b/apps/files_sharing/l10n/fr.php @@ -2,5 +2,6 @@ "Password" => "Mot de passe", "Submit" => "Envoyer", "Download" => "Télécharger", +"No preview available for" => "Pas d'aperçu disponible pour", "web services under your control" => "services web sous votre contrôle" ); diff --git a/apps/files_sharing/l10n/it.php b/apps/files_sharing/l10n/it.php index de06afc2697..5bedabde9bb 100644 --- a/apps/files_sharing/l10n/it.php +++ b/apps/files_sharing/l10n/it.php @@ -2,5 +2,6 @@ "Password" => "Password", "Submit" => "Invia", "Download" => "Scarica", +"No preview available for" => "Nessuna anteprima disponibile per", "web services under your control" => "servizi web nelle tue mani" ); diff --git a/apps/files_sharing/l10n/ja_JP.php b/apps/files_sharing/l10n/ja_JP.php index 2ac295bdd3a..5d63f371d56 100644 --- a/apps/files_sharing/l10n/ja_JP.php +++ b/apps/files_sharing/l10n/ja_JP.php @@ -2,5 +2,6 @@ "Password" => "パスワード", "Submit" => "送信", "Download" => "ダウンロード", +"No preview available for" => "プレビューはありません", "web services under your control" => "管理下のウェブサービス" ); diff --git a/apps/files_sharing/l10n/sl.php b/apps/files_sharing/l10n/sl.php index 9ff8b079d71..5e7d2d5004b 100644 --- a/apps/files_sharing/l10n/sl.php +++ b/apps/files_sharing/l10n/sl.php @@ -2,5 +2,6 @@ "Password" => "Geslo", "Submit" => "Pošlji", "Download" => "Prenesi", +"No preview available for" => "Predogled ni na voljo za", "web services under your control" => "spletne storitve pod vašim nadzorom" ); diff --git a/apps/files_sharing/l10n/sv.php b/apps/files_sharing/l10n/sv.php index 7a580c36a5a..78b19836497 100644 --- a/apps/files_sharing/l10n/sv.php +++ b/apps/files_sharing/l10n/sv.php @@ -2,5 +2,6 @@ "Password" => "Lösenord", "Submit" => "Skicka", "Download" => "Ladda ner", +"No preview available for" => "Ingen förhandsgranskning tillgänglig för", "web services under your control" => "webbtjänster under din kontroll" ); diff --git a/apps/files_sharing/l10n/th_TH.php b/apps/files_sharing/l10n/th_TH.php index 41fa4aeddb4..8a3f1207db4 100644 --- a/apps/files_sharing/l10n/th_TH.php +++ b/apps/files_sharing/l10n/th_TH.php @@ -2,5 +2,6 @@ "Password" => "รหัสผ่าน", "Submit" => "ส่ง", "Download" => "ดาวน์โหลด", +"No preview available for" => "ไม่สามารถดูตัวอย่างได้สำหรับ", "web services under your control" => "เว็บเซอร์วิสที่คุณควบคุมการใช้งานได้" ); diff --git a/apps/user_ldap/l10n/de.php b/apps/user_ldap/l10n/de.php index 9f917f277c4..2c178d0b4fd 100644 --- a/apps/user_ldap/l10n/de.php +++ b/apps/user_ldap/l10n/de.php @@ -23,7 +23,7 @@ "Use TLS" => "Nutze TLS", "Do not use it for SSL connections, it will fail." => "Verwenden Sie es nicht für SSL-Verbindungen, es wird fehlschlagen.", "Case insensitve LDAP server (Windows)" => "LDAP-Server (Windows: Groß- und Kleinschreibung bleibt unbeachtet)", -"Turn off SSL certificate validation." => "Schalte die SSL Zertifikatsprüfung aus.", +"Turn off SSL certificate validation." => "Schalte die SSL-Zertifikatsprüfung aus.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Falls die Verbindung es erfordert, wird das SSL-Zertifikat des LDAP-Server importiert werden.", "Not recommended, use for testing only." => "Nicht empfohlen, nur zu Testzwecken.", "User Display Name Field" => "Feld für den Anzeigenamen des Benutzers", @@ -32,5 +32,6 @@ "The LDAP attribute to use to generate the groups`s ownCloud name." => "Das LDAP-Attribut für die Generierung des Gruppennamens in ownCloud. ", "in bytes" => "in Bytes", "in seconds. A change empties the cache." => "in Sekunden. Eine Änderung leert den Cache.", +"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Ohne Eingabe wird der Benutzername (Standard) verwendet. Anderenfalls geben Sie ein LDAP/AD-Attribut an.", "Help" => "Hilfe" ); diff --git a/apps/user_ldap/l10n/es.php b/apps/user_ldap/l10n/es.php index 55abf7b88e0..8d9c7f9ad38 100644 --- a/apps/user_ldap/l10n/es.php +++ b/apps/user_ldap/l10n/es.php @@ -1,7 +1,32 @@ <?php $TRANSLATIONS = array( +"Host" => "Servidor", +"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Puede omitir el protocolo, excepto si requiere SSL. En ese caso, empiece con ldaps://", +"Base DN" => "DN base", +"You can specify Base DN for users and groups in the Advanced tab" => "Puede especificar el DN base para usuarios y grupos en la pestaña Avanzado", +"User DN" => "DN usuario", +"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "El DN del usuario cliente con el que se hará la asociación, p.ej. uid=agente,dc=ejemplo,dc=com. Para acceso anónimo, deje DN y contraseña vacíos.", "Password" => "Contraseña", +"For anonymous access, leave DN and Password empty." => "Para acceso anónimo, deje DN y contraseña vacíos.", +"User List Filter" => "Lista de filtros de usuario", +"Defines the filter to apply, when retrieving users." => "Define el filtro a aplicar, cuando se obtienen usuarios.", +"Group Filter" => "Filtro de grupo", +"Defines the filter to apply, when retrieving groups." => "Define el filtro a aplicar, cuando se obtienen grupos.", "Port" => "Puerto", +"Base User Tree" => "Árbol base de usuario", +"Base Group Tree" => "Árbol base de grupo", +"Group-Member association" => "Asociación Grupo-Miembro", "Use TLS" => "Usar TLS", +"Do not use it for SSL connections, it will fail." => "No usarlo para SSL, habrá error.", +"Case insensitve LDAP server (Windows)" => "Servidor de LDAP sensible a mayúsculas/minúsculas (Windows)", +"Turn off SSL certificate validation." => "Apagar la validación por certificado SSL.", +"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Si la conexión sólo funciona con esta opción, importe el certificado SSL del servidor LDAP en su servidor ownCloud.", +"Not recommended, use for testing only." => "No recomendado, sólo para pruebas.", +"User Display Name Field" => "Campo de nombre de usuario a mostrar", +"The LDAP attribute to use to generate the user`s ownCloud name." => "El atributo LDAP a usar para generar el nombre de usuario de ownCloud.", +"Group Display Name Field" => "Campo de nombre de grupo a mostrar", +"The LDAP attribute to use to generate the groups`s ownCloud name." => "El atributo LDAP a usar para generar el nombre de los grupos de ownCloud.", "in bytes" => "en bytes", +"in seconds. A change empties the cache." => "en segundos. Un cambio vacía la cache.", +"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Vacío para el nombre de usuario (por defecto). En otro caso, especifique un atributo LDAP/AD.", "Help" => "Ayuda" ); diff --git a/core/l10n/ca.php b/core/l10n/ca.php index 9be2fe6adfc..52b6d68e47c 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -51,6 +51,7 @@ "Database user" => "Usuari de la base de dades", "Database password" => "Contrasenya de la base de dades", "Database name" => "Nom de la base de dades", +"Database tablespace" => "Espai de taula de la base de dades", "Database host" => "Ordinador central de la base de dades", "Finish setup" => "Acaba la configuració", "web services under your control" => "controleu els vostres serveis web", diff --git a/core/l10n/de.php b/core/l10n/de.php index 81f4b0082c2..fdd940ea39e 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -51,6 +51,7 @@ "Database user" => "Datenbank-Benutzer", "Database password" => "Datenbank-Passwort", "Database name" => "Datenbank-Name", +"Database tablespace" => "Datenbank-Tablespace", "Database host" => "Datenbank-Host", "Finish setup" => "Installation abschließen", "web services under your control" => "Web-Services unter Ihrer Kontrolle", diff --git a/core/l10n/es.php b/core/l10n/es.php index 8766228ba89..3a7da551b60 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -51,6 +51,7 @@ "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", "Finish setup" => "Completar la instalación", "web services under your control" => "servicios web bajo tu control", diff --git a/core/l10n/fr.php b/core/l10n/fr.php index 095a2024734..a5632180840 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -51,6 +51,7 @@ "Database user" => "Utilisateur pour la base de données", "Database password" => "Mot de passe de la base de données", "Database name" => "Nom de la base de données", +"Database tablespace" => "Tablespaces de la base de données", "Database host" => "Serveur de la base de données", "Finish setup" => "Terminer l'installation", "web services under your control" => "services web sous votre contrôle", diff --git a/core/l10n/it.php b/core/l10n/it.php index ca80770a3c5..b7f174e57a2 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -51,6 +51,7 @@ "Database user" => "Utente del database", "Database password" => "Password del database", "Database name" => "Nome del database", +"Database tablespace" => "Spazio delle tabelle del database", "Database host" => "Host del database", "Finish setup" => "Termina la configurazione", "web services under your control" => "servizi web nelle tue mani", diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php index 5f9b9da33a6..bef84b09d6c 100644 --- a/core/l10n/ja_JP.php +++ b/core/l10n/ja_JP.php @@ -51,6 +51,7 @@ "Database user" => "データベースのユーザ名", "Database password" => "データベースのパスワード", "Database name" => "データベース名", +"Database tablespace" => "データベースの表領域", "Database host" => "データベースのホスト名", "Finish setup" => "セットアップを完了します", "web services under your control" => "管理下にあるウェブサービス", diff --git a/core/l10n/sl.php b/core/l10n/sl.php index 2f998c95492..ad412314319 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -51,6 +51,7 @@ "Database user" => "Uporabnik zbirke", "Database password" => "Geslo podatkovne zbirke", "Database name" => "Ime podatkovne zbirke", +"Database tablespace" => "Razpredelnica podatkovne zbirke", "Database host" => "Gostitelj podatkovne zbirke", "Finish setup" => "Dokončaj namestitev", "web services under your control" => "spletne storitve pod vašim nadzorom", diff --git a/core/l10n/sv.php b/core/l10n/sv.php index 25ba95558e7..f459272eba0 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -51,6 +51,7 @@ "Database user" => "Databasanvändare", "Database password" => "Lösenord till databasen", "Database name" => "Databasnamn", +"Database tablespace" => "Databas tabellutrymme", "Database host" => "Databasserver", "Finish setup" => "Avsluta installation", "web services under your control" => "webbtjänster under din kontroll", diff --git a/core/l10n/th_TH.php b/core/l10n/th_TH.php index 8bd4d36524f..4bfdb524fe0 100644 --- a/core/l10n/th_TH.php +++ b/core/l10n/th_TH.php @@ -51,6 +51,7 @@ "Database user" => "ชื่อผู้ใช้งานฐานข้อมูล", "Database password" => "รหัสผ่านฐานข้อมูล", "Database name" => "ชื่อฐานข้อมูล", +"Database tablespace" => "พื้นที่ตารางในฐานข้อมูล", "Database host" => "Database host", "Finish setup" => "ติดตั้งเรียบร้อยแล้ว", "web services under your control" => "web services under your control", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index e2d0d9b073d..a34443e8dd7 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -51,6 +51,7 @@ "Database user" => "Veritabanı kullanıcı adı", "Database password" => "Veritabanı parolası", "Database name" => "Veritabanı adı", +"Database tablespace" => "Veritabanı tablo alanı", "Database host" => "Veritabanı sunucusu", "Finish setup" => "Kurulumu tamamla", "web services under your control" => "kontrolünüzdeki web servisleri", diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index 37c0d8cc9d1..753dde0a99c 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -2,7 +2,26 @@ "Application name not provided." => "未提供應用程式名稱", "No category to add?" => "無分類添加?", "This category already exists: " => "此分類已經存在:", +"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "設定", +"January" => "一月", +"February" => "二月", +"March" => "三月", +"April" => "四月", +"May" => "五月", +"June" => "六月", +"July" => "七月", +"August" => "八月", +"September" => "九月", +"October" => "十月", +"November" => "十一月", +"December" => "十二月", +"Cancel" => "取消", +"No" => "No", +"Yes" => "Yes", +"Ok" => "Ok", +"No categories selected for deletion." => "沒選擇要刪除的分類", +"Error" => "錯誤", "ownCloud password reset" => "ownCloud 密碼重設", "Use the following link to reset your password: {link}" => "請循以下聯結重設你的密碼: (聯結) ", "You will receive a link to reset your password via Email." => "重設密碼的連結將會寄到你的電子郵件信箱", @@ -32,6 +51,7 @@ "Database user" => "資料庫使用者", "Database password" => "資料庫密碼", "Database name" => "資料庫名稱", +"Database tablespace" => "資料庫 tablespace", "Database host" => "資料庫主機", "Finish setup" => "完成設定", "web services under your control" => "網路服務已在你控制", diff --git a/l10n/af/lib.po b/l10n/af/lib.po index a5cbac26247..a38949f2308 100644 --- a/l10n/af/lib.po +++ b/l10n/af/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: af\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 36dea95d346..562af94ac63 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/ar_SA/lib.po b/l10n/ar_SA/lib.po index 1d1cba42b76..9b889a6e710 100644 --- a/l10n/ar_SA/lib.po +++ b/l10n/ar_SA/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: ar_SA\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 04f21db7de6..f6ce9e2d638 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index e3c5dd92d5c..821e89c924c 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 11:29+0000\n" +"Last-Translator: rogerc <rcalvoi@yahoo.com>\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -231,7 +231,7 @@ msgstr "Nom de la base de dades" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "Espai de taula de la base de dades" #: templates/installation.php:115 msgid "Database host" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 6ccc8e9492c..0857b5ed92e 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -4,14 +4,14 @@ # # Translators: # <joan@montane.cat>, 2012. -# <rcalvoi@yahoo.com>, 2011, 2012. +# <rcalvoi@yahoo.com>, 2011-2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 11:28+0000\n" +"Last-Translator: rogerc <rcalvoi@yahoo.com>\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -108,7 +108,7 @@ msgstr "La pujada s'ha cancel·lat." #: js/files.js:409 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·larà." #: js/files.js:480 msgid "Invalid name, '/' is not allowed." diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index 1aa4ee0ad45..2424e26a3c5 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:04+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 11:34+0000\n" +"Last-Translator: rogerc <rcalvoi@yahoo.com>\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,7 +32,7 @@ msgstr "Baixa" #: templates/public.php:18 msgid "No preview available for" -msgstr "" +msgstr "No hi ha vista prèvia disponible per a" #: templates/public.php:23 msgid "web services under your control" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 397969d686a..2b24de63524 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-29 02:04+0200\n" -"PO-Revision-Date: 2012-07-28 13:42+0000\n" -"Last-Translator: rogerc <rcalvoi@yahoo.com>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,43 +18,43 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "Ajuda" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "Personal" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "Configuració" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "Usuaris" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "Aplicacions" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "Administració" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "La baixada en ZIP està desactivada." -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "Els fitxers s'han de baixar d'un en un." -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "Torna a Fitxers" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "Els fitxers seleccionats son massa grans per generar un fitxer zip." @@ -111,3 +111,16 @@ msgstr "l'any passat" #: template.php:97 msgid "years ago" msgstr "fa anys" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 5c73f9a9cac..35cb1e5db28 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/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: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 11:33+0000\n" +"Last-Translator: rogerc <rcalvoi@yahoo.com>\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -89,39 +89,39 @@ msgstr "usa el servei cron del sistema" #: templates/admin.php:39 msgid "Share API" -msgstr "" +msgstr "API de compartir" #: templates/admin.php:44 msgid "Enable Share API" -msgstr "" +msgstr "Activa l'API de compartir" #: templates/admin.php:45 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Permet que les aplicacions usin l'API de compartir" #: templates/admin.php:49 msgid "Allow links" -msgstr "" +msgstr "Permet enllaços" #: templates/admin.php:50 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Permet als usuaris compartir elements amb el públic amb enllaços" #: templates/admin.php:54 msgid "Allow resharing" -msgstr "" +msgstr "Permet compartir de nou" #: templates/admin.php:55 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "Permet als usuaris comparir elements ja compartits amb ells" #: templates/admin.php:58 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Permet als usuaris compartir amb qualsevol" #: templates/admin.php:60 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Permet als usuaris compartir només amb usuaris del seu grup" #: templates/admin.php:67 msgid "Log" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index f6c62f88034..35f62dc63c9 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-16 02:04+0200\n" -"PO-Revision-Date: 2012-08-15 09:24+0000\n" -"Last-Translator: Martin <fireball@atlas.cz>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -42,19 +42,19 @@ msgstr "Aplikace" msgid "Admin" msgstr "Admin" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "Stahování ZIPu je vypnuto." -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "Soubory je nutno stahovat samostatně." -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "Zpět k souborům" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "Vybarné soubory jsou pro vytvoření zipu příliš velké." @@ -111,3 +111,16 @@ msgstr "loni" #: template.php:97 msgid "years ago" msgstr "před lety" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index 8d65f903fef..75cf36398bc 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Morten Juhl-Johansen Zölde-Fejér <morten@writtenandread.net>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,96 +18,109 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" -msgstr "" +msgstr "Hjælp" -#: app.php:294 +#: app.php:295 msgid "Personal" -msgstr "" +msgstr "Personlig" -#: app.php:299 +#: app.php:300 msgid "Settings" -msgstr "" +msgstr "Indstillinger" -#: app.php:304 +#: app.php:305 msgid "Users" -msgstr "" +msgstr "Brugere" -#: app.php:311 +#: app.php:312 msgid "Apps" -msgstr "" +msgstr "Apps" -#: app.php:313 +#: app.php:314 msgid "Admin" -msgstr "" +msgstr "Admin" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." -msgstr "" +msgstr "ZIP-download er slået fra." -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "Filer skal downloades en for en." -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" -msgstr "" +msgstr "Tilbage til Filer" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." -msgstr "" +msgstr "De markerede filer er for store til at generere en ZIP-fil." #: json.php:28 msgid "Application is not enabled" -msgstr "" +msgstr "Programmet er ikke aktiveret" #: json.php:39 json.php:63 json.php:75 msgid "Authentication error" -msgstr "" +msgstr "Adgangsfejl" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "" +msgstr "Adgang er udløbet. Genindlæs siden." #: template.php:86 msgid "seconds ago" -msgstr "" +msgstr "sekunder siden" #: template.php:87 msgid "1 minute ago" -msgstr "" +msgstr "1 minut siden" #: template.php:88 #, php-format msgid "%d minutes ago" -msgstr "" +msgstr "%d minutter siden" #: template.php:91 msgid "today" -msgstr "" +msgstr "I dag" #: template.php:92 msgid "yesterday" -msgstr "" +msgstr "I går" #: template.php:93 #, php-format msgid "%d days ago" -msgstr "" +msgstr "%d dage siden" #: template.php:94 msgid "last month" -msgstr "" +msgstr "Sidste måned" #: template.php:95 msgid "months ago" -msgstr "" +msgstr "måneder siden" #: template.php:96 msgid "last year" -msgstr "" +msgstr "Sidste år" #: template.php:97 msgid "years ago" +msgstr "år siden" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" msgstr "" diff --git a/l10n/de/core.po b/l10n/de/core.po index c9a09ce63a0..9f06a2c9f42 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:02+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 09:48+0000\n" +"Last-Translator: traductor <transifex.3.mensaje@spamgourmet.com>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -240,7 +240,7 @@ msgstr "Datenbank-Name" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "Datenbank-Tablespace" #: templates/installation.php:115 msgid "Database host" diff --git a/l10n/de/files.po b/l10n/de/files.po index eb9ea98a4c2..2f61acb8ec6 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -9,6 +9,7 @@ # Marcel Kühlhorn <susefan93@gmx.de>, 2012. # Michael Krell <m4dmike.mni@gmail.com>, 2012. # <nelsonfritsch@gmail.com>, 2012. +# <niko@nik-o-mat.de>, 2012. # Phi Lieb <>, 2012. # <thomas.mueller@tmit.eu>, 2012. # Thomas Müller <>, 2012. @@ -17,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 07:32+0000\n" +"Last-Translator: JamFX <niko@nik-o-mat.de>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -116,7 +117,7 @@ msgstr "Hochladen abgebrochen." #: js/files.js:409 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen." #: js/files.js:480 msgid "Invalid name, '/' is not allowed." diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index f1fdd9e874b..7d11d393690 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:04+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 09:46+0000\n" +"Last-Translator: traductor <transifex.3.mensaje@spamgourmet.com>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,7 +35,7 @@ msgstr "Download" #: templates/public.php:18 msgid "No preview available for" -msgstr "" +msgstr "Es ist keine Vorschau verfügbar für" #: templates/public.php:23 msgid "web services under your control" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index 0e1b5201dcc..c2a625b076a 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 09:41+0000\n" -"Last-Translator: traductor <transifex.3.mensaje@spamgourmet.com>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -44,19 +44,19 @@ msgstr "Apps" msgid "Admin" msgstr "Administrator" -#: files.php:276 +#: files.php:280 msgid "ZIP download is turned off." msgstr "Der ZIP-Download ist deaktiviert." -#: files.php:277 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "Die Dateien müssen einzeln heruntergeladen werden." -#: files.php:277 files.php:302 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "Zurück zu \"Dateien\"" -#: files.php:301 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen." @@ -113,3 +113,16 @@ msgstr "Letztes Jahr" #: template.php:97 msgid "years ago" msgstr "Vor Jahren" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 37cd269f546..df25c0b715f 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 07:39+0000\n" +"Last-Translator: JamFX <niko@nik-o-mat.de>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -96,39 +96,39 @@ msgstr "Nutze System-Cron-Service" #: templates/admin.php:39 msgid "Share API" -msgstr "" +msgstr "Teilungs-API" #: templates/admin.php:44 msgid "Enable Share API" -msgstr "" +msgstr "Teilungs-API aktivieren" #: templates/admin.php:45 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Erlaubt Nutzern die Teilungs-API zu nutzen" #: templates/admin.php:49 msgid "Allow links" -msgstr "" +msgstr "Links erlauben" #: templates/admin.php:50 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Erlaube Nutzern Dateien mithilfe von Links mit der Öffentlichkeit zu teilen" #: templates/admin.php:54 msgid "Allow resharing" -msgstr "" +msgstr "Erneutes Teilen erlauben" #: templates/admin.php:55 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "Erlaubt Nutzern, Dateien die mit ihnen geteilt wurden, erneut zu teilen" #: templates/admin.php:58 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Erlaube Nutzern mit jedem zu Teilen" #: templates/admin.php:60 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Erlaube Nutzern nur das Teilen in ihrer Gruppe" #: templates/admin.php:67 msgid "Log" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index 18c835e0663..c8b3a60d6a6 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-30 11:12+0000\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 15:48+0000\n" "Last-Translator: traductor <transifex.3.mensaje@spamgourmet.com>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -128,7 +128,7 @@ msgstr "LDAP-Server (Windows: Groß- und Kleinschreibung bleibt unbeachtet)" #: templates/settings.php:23 msgid "Turn off SSL certificate validation." -msgstr "Schalte die SSL Zertifikatsprüfung aus." +msgstr "Schalte die SSL-Zertifikatsprüfung aus." #: templates/settings.php:23 msgid "" @@ -168,7 +168,7 @@ msgstr "in Sekunden. Eine Änderung leert den Cache." msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "" +msgstr "Ohne Eingabe wird der Benutzername (Standard) verwendet. Anderenfalls geben Sie ein LDAP/AD-Attribut an." #: templates/settings.php:32 msgid "Help" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index da331c0cb80..2a3ab249c25 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-29 02:04+0200\n" -"PO-Revision-Date: 2012-07-28 11:45+0000\n" -"Last-Translator: Efstathios Iosifidis <diamond_gr@freemail.gr>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,43 +18,43 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "Βοήθεια" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "Προσωπικά" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "Ρυθμίσεις" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "Χρήστες" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "Εφαρμογές" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "Διαχειριστής" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "Η λήψη ZIP απενεργοποιήθηκε." -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "Τα αρχεία πρέπει να ληφθούν ένα-ένα." -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "Πίσω στα Αρχεία" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "Τα επιλεγμένα αρχεία είναι μεγάλα ώστε να δημιουργηθεί αρχείο zip." @@ -111,3 +111,16 @@ msgstr "τον προηγούμενο χρόνο" #: template.php:97 msgid "years ago" msgstr "χρόνια πριν" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index 83d78e5ea55..6b56eeafdea 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-04 02:02+0200\n" -"PO-Revision-Date: 2012-08-03 22:37+0000\n" -"Last-Translator: Mariano <mstreet@kde.org.ar>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,43 +18,43 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "Helpo" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "Persona" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "Agordo" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "Uzantoj" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "Aplikaĵoj" -#: app.php:313 +#: app.php:314 msgid "Admin" -msgstr "" +msgstr "Administranto" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "ZIP-elŝuto estas malkapabligita." -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "Dosieroj devas elŝutiĝi unuope." -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "Reen al la dosieroj" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "La elektitaj dosieroj tro grandas por genero de ZIP-dosiero." @@ -111,3 +111,16 @@ msgstr "lasta jaro" #: template.php:97 msgid "years ago" msgstr "jarojn antaŭe" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/es/core.po b/l10n/es/core.po index e6464ac375e..fd0e4112ab5 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -9,14 +9,15 @@ # Raul Fernandez Garcia <raulfg3@gmail.com>, 2012. # <rodrigo.calvo@gmail.com>, 2012. # <rom1dep@gmail.com>, 2011. +# Rubén Trujillo <rubentrf@gmail.com>, 2012. # <sergioballesterossolanas@gmail.com>, 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 22:41+0000\n" +"Last-Translator: Rubén Trujillo <rubentrf@gmail.com>\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" @@ -236,7 +237,7 @@ msgstr "Nombre de la base de datos" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "Espacio de tablas de la base de datos" #: templates/installation.php:115 msgid "Database host" diff --git a/l10n/es/files.po b/l10n/es/files.po index 1e703f1a811..b8ef1ea5821 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -5,14 +5,15 @@ # Translators: # Javier Llorente <javier@opensuse.org>, 2012. # <juanma@kde.org.ar>, 2012. +# Rubén Trujillo <rubentrf@gmail.com>, 2012. # <sergioballesterossolanas@gmail.com>, 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 22:38+0000\n" +"Last-Translator: Rubén Trujillo <rubentrf@gmail.com>\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" @@ -109,7 +110,7 @@ msgstr "Subida cancelada." #: js/files.js:409 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "La subida del archivo está en proceso. Salir de la página ahora cancelará la subida." #: js/files.js:480 msgid "Invalid name, '/' is not allowed." diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po index 7d36e72c7dd..d6c7ffea13d 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.po @@ -5,13 +5,14 @@ # Translators: # Javier Llorente <javier@opensuse.org>, 2012. # <pedro.navia@etecsa.cu>, 2012. +# Rubén Trujillo <rubentrf@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:04+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 22:41+0000\n" +"Last-Translator: Rubén Trujillo <rubentrf@gmail.com>\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" @@ -33,7 +34,7 @@ msgstr "Descargar" #: templates/public.php:18 msgid "No preview available for" -msgstr "" +msgstr "No hay vista previa disponible para" #: templates/public.php:23 msgid "web services under your control" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index a8931cbabc6..016a35e522b 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-31 22:53+0200\n" -"PO-Revision-Date: 2012-07-31 05:46+0000\n" -"Last-Translator: juanman <juanma@kde.org.ar>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.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" @@ -18,43 +18,43 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "Ayuda" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "Personal" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "Ajustes" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "Usuarios" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "Aplicaciones" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "Administración" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "La descarga en ZIP está desactivada." -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "Los archivos deben ser descargados uno por uno." -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "Volver a Archivos" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "Los archivos seleccionados son demasiado grandes para generar el archivo zip." @@ -111,3 +111,16 @@ msgstr "este año" #: template.php:97 msgid "years ago" msgstr "hace años" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index de248b3617a..128b7d82b4e 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -10,14 +10,15 @@ # oSiNaReF <>, 2012. # <rodrigo.calvo@gmail.com>, 2012. # <rom1dep@gmail.com>, 2011. +# Rubén Trujillo <rubentrf@gmail.com>, 2012. # <sergioballesterossolanas@gmail.com>, 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 22:51+0000\n" +"Last-Translator: Rubén Trujillo <rubentrf@gmail.com>\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" @@ -95,39 +96,39 @@ msgstr "usar servicio cron del sistema" #: templates/admin.php:39 msgid "Share API" -msgstr "" +msgstr "API de compartición" #: templates/admin.php:44 msgid "Enable Share API" -msgstr "" +msgstr "Activar API de compartición" #: templates/admin.php:45 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Permitir a las aplicaciones usar la API de compartición" #: templates/admin.php:49 msgid "Allow links" -msgstr "" +msgstr "Permitir enlaces" #: templates/admin.php:50 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Permitir a los usuarios compartir elementos públicamente con enlaces" #: templates/admin.php:54 msgid "Allow resharing" -msgstr "" +msgstr "Permitir re-compartir" #: templates/admin.php:55 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "Permitir a los usuarios compartir elementos compartidos con ellos de nuevo" #: templates/admin.php:58 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Permitir a los usuarios compartir con cualquiera" #: templates/admin.php:60 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Permitir a los usuarios compartir con usuarios en sus grupos" #: templates/admin.php:67 msgid "Log" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index 49025f4606e..e87843eac9c 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -4,13 +4,15 @@ # # Translators: # Javier Llorente <javier@opensuse.org>, 2012. +# Rubén Trujillo <rubentrf@gmail.com>, 2012. +# <sergioballesterossolanas@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-29 02:01+0200\n" -"PO-Revision-Date: 2012-08-29 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 23:04+0000\n" +"Last-Translator: Rubén Trujillo <rubentrf@gmail.com>\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" @@ -20,31 +22,31 @@ msgstr "" #: templates/settings.php:8 msgid "Host" -msgstr "" +msgstr "Servidor" #: templates/settings.php:8 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "" +msgstr "Puede omitir el protocolo, excepto si requiere SSL. En ese caso, empiece con ldaps://" #: templates/settings.php:9 msgid "Base DN" -msgstr "" +msgstr "DN base" #: templates/settings.php:9 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "" +msgstr "Puede especificar el DN base para usuarios y grupos en la pestaña Avanzado" #: templates/settings.php:10 msgid "User DN" -msgstr "" +msgstr "DN usuario" #: templates/settings.php:10 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "" +msgstr "El DN del usuario cliente con el que se hará la asociación, p.ej. uid=agente,dc=ejemplo,dc=com. Para acceso anónimo, deje DN y contraseña vacíos." #: templates/settings.php:11 msgid "Password" @@ -52,7 +54,7 @@ msgstr "Contraseña" #: templates/settings.php:11 msgid "For anonymous access, leave DN and Password empty." -msgstr "" +msgstr "Para acceso anónimo, deje DN y contraseña vacíos." #: templates/settings.php:12 msgid "User Login Filter" @@ -72,11 +74,11 @@ msgstr "" #: templates/settings.php:13 msgid "User List Filter" -msgstr "" +msgstr "Lista de filtros de usuario" #: templates/settings.php:13 msgid "Defines the filter to apply, when retrieving users." -msgstr "" +msgstr "Define el filtro a aplicar, cuando se obtienen usuarios." #: templates/settings.php:13 msgid "without any placeholder, e.g. \"objectClass=person\"." @@ -84,11 +86,11 @@ msgstr "" #: templates/settings.php:14 msgid "Group Filter" -msgstr "" +msgstr "Filtro de grupo" #: templates/settings.php:14 msgid "Defines the filter to apply, when retrieving groups." -msgstr "" +msgstr "Define el filtro a aplicar, cuando se obtienen grupos." #: templates/settings.php:14 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." @@ -100,15 +102,15 @@ msgstr "Puerto" #: templates/settings.php:18 msgid "Base User Tree" -msgstr "" +msgstr "Árbol base de usuario" #: templates/settings.php:19 msgid "Base Group Tree" -msgstr "" +msgstr "Árbol base de grupo" #: templates/settings.php:20 msgid "Group-Member association" -msgstr "" +msgstr "Asociación Grupo-Miembro" #: templates/settings.php:21 msgid "Use TLS" @@ -116,41 +118,41 @@ msgstr "Usar TLS" #: templates/settings.php:21 msgid "Do not use it for SSL connections, it will fail." -msgstr "" +msgstr "No usarlo para SSL, habrá error." #: templates/settings.php:22 msgid "Case insensitve LDAP server (Windows)" -msgstr "" +msgstr "Servidor de LDAP sensible a mayúsculas/minúsculas (Windows)" #: templates/settings.php:23 msgid "Turn off SSL certificate validation." -msgstr "" +msgstr "Apagar la validación por certificado SSL." #: templates/settings.php:23 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "" +msgstr "Si la conexión sólo funciona con esta opción, importe el certificado SSL del servidor LDAP en su servidor ownCloud." #: templates/settings.php:23 msgid "Not recommended, use for testing only." -msgstr "" +msgstr "No recomendado, sólo para pruebas." #: templates/settings.php:24 msgid "User Display Name Field" -msgstr "" +msgstr "Campo de nombre de usuario a mostrar" #: templates/settings.php:24 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "" +msgstr "El atributo LDAP a usar para generar el nombre de usuario de ownCloud." #: templates/settings.php:25 msgid "Group Display Name Field" -msgstr "" +msgstr "Campo de nombre de grupo a mostrar" #: templates/settings.php:25 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "" +msgstr "El atributo LDAP a usar para generar el nombre de los grupos de ownCloud." #: templates/settings.php:27 msgid "in bytes" @@ -158,13 +160,13 @@ msgstr "en bytes" #: templates/settings.php:29 msgid "in seconds. A change empties the cache." -msgstr "" +msgstr "en segundos. Un cambio vacía la cache." #: templates/settings.php:30 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "" +msgstr "Vacío para el nombre de usuario (por defecto). En otro caso, especifique un atributo LDAP/AD." #: templates/settings.php:32 msgid "Help" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index 323ca131149..789beb732bf 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-31 22:53+0200\n" -"PO-Revision-Date: 2012-07-31 10:25+0000\n" -"Last-Translator: Rivo Zängov <eraser@eraser.ee>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,43 +18,43 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "Abiinfo" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "Isiklik" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "Seaded" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "Kasutajad" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "Rakendused" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "Admin" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "ZIP-ina allalaadimine on välja lülitatud." -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "Failid tuleb alla laadida ükshaaval." -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "Tagasi failide juurde" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "Valitud failid on ZIP-faili loomiseks liiga suured." @@ -111,3 +111,16 @@ msgstr "eelmisel aastal" #: template.php:97 msgid "years ago" msgstr "aastat tagasi" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index f8625e4759e..c083e4f8654 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# <asieriko@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.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" @@ -17,96 +18,109 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" -msgstr "" +msgstr "Laguntza" -#: app.php:294 +#: app.php:295 msgid "Personal" -msgstr "" +msgstr "Pertsonala" -#: app.php:299 +#: app.php:300 msgid "Settings" -msgstr "" +msgstr "Ezarpenak" -#: app.php:304 +#: app.php:305 msgid "Users" -msgstr "" +msgstr "Erabiltzaileak" -#: app.php:311 +#: app.php:312 msgid "Apps" -msgstr "" +msgstr "Aplikazioak" -#: app.php:313 +#: app.php:314 msgid "Admin" -msgstr "" +msgstr "Admin" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." -msgstr "" +msgstr "ZIP deskarga ez dago gaituta." -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "Fitxategiak banan-banan deskargatu behar dira." -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" -msgstr "" +msgstr "Itzuli fitxategietara" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." -msgstr "" +msgstr "Hautatuko fitxategiak oso handiak dira zip fitxategia sortzeko." #: json.php:28 msgid "Application is not enabled" -msgstr "" +msgstr "Aplikazioa ez dago gaituta" #: json.php:39 json.php:63 json.php:75 msgid "Authentication error" -msgstr "" +msgstr "Autentikazio errorea" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "" +msgstr "Tokena iraungitu da. Mesedez birkargatu orria." #: template.php:86 msgid "seconds ago" -msgstr "" +msgstr "orain dela segundu batzuk" #: template.php:87 msgid "1 minute ago" -msgstr "" +msgstr "orain dela minutu 1" #: template.php:88 #, php-format msgid "%d minutes ago" -msgstr "" +msgstr "orain dela %d minutu" #: template.php:91 msgid "today" -msgstr "" +msgstr "gaur" #: template.php:92 msgid "yesterday" -msgstr "" +msgstr "atzo" #: template.php:93 #, php-format msgid "%d days ago" -msgstr "" +msgstr "orain dela %d egun" #: template.php:94 msgid "last month" -msgstr "" +msgstr "joan den hilabetea" #: template.php:95 msgid "months ago" -msgstr "" +msgstr "orain dela hilabete batzuk" #: template.php:96 msgid "last year" -msgstr "" +msgstr "joan den urtea" #: template.php:97 msgid "years ago" +msgstr "orain dela urte batzuk" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" msgstr "" diff --git a/l10n/eu_ES/lib.po b/l10n/eu_ES/lib.po index 366fbd9fb9c..120167c8926 100644 --- a/l10n/eu_ES/lib.po +++ b/l10n/eu_ES/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-31 22:53+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: eu_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index 7e1c82ad5e1..589e967a94f 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 20:01+0000\n" -"Last-Translator: Mohammad Dashtizadeh <mohammad@dashtizadeh.net>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -42,19 +42,19 @@ msgstr "" msgid "Admin" msgstr "مدیر" -#: files.php:276 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:277 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:277 files.php:302 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:301 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -111,3 +111,16 @@ msgstr "سال قبل" #: template.php:97 msgid "years ago" msgstr "سالهای قبل" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/fi/lib.po b/l10n/fi/lib.po index eee9ac5f9e5..6ed65abd5e9 100644 --- a/l10n/fi/lib.po +++ b/l10n/fi/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-09 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,19 +41,19 @@ msgstr "" msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index 50d80dd63b7..4306f983386 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-03 02:02+0200\n" -"PO-Revision-Date: 2012-08-02 18:23+0000\n" -"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,43 +18,43 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "Ohje" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "Henkilökohtainen" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "Asetukset" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "Käyttäjät" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "Sovellukset" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "Ylläpitäjä" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "ZIP-lataus on poistettu käytöstä." -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "Tiedostot on ladattava yksittäin." -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "Takaisin tiedostoihin" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "Valitut tiedostot ovat liian suurikokoisia mahtuakseen zip-tiedostoon." @@ -111,3 +111,16 @@ msgstr "viime vuonna" #: template.php:97 msgid "years ago" msgstr "vuotta sitten" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 44ac2aa06cd..9d16fe11ba3 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# <florentin.lemoal@gmail.com>, 2012. # Guillaume Paumier <guillom.pom@gmail.com>, 2012. # Nahir Mohamed <nahirmoha@gmail.com>, 2012. # <nathaplop@gmail.com>, 2012. @@ -12,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 19:09+0000\n" +"Last-Translator: Florentin Le Moal <florentin.lemoal@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" @@ -234,7 +235,7 @@ msgstr "Nom de la base de données" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "Tablespaces de la base de données" #: templates/installation.php:115 msgid "Database host" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 6bc9f20b8b8..9131d0d3508 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -5,6 +5,7 @@ # Translators: # Cyril Glapa <kyriog@gmail.com>, 2012. # Geoffrey Guerrier <geoffrey.guerrier@gmail.com>, 2012. +# <gp4004@arghh.org>, 2012. # <guiguidu31300@gmail.com>, 2012. # Guillaume Paumier <guillom.pom@gmail.com>, 2012. # Nahir Mohamed <nahirmoha@gmail.com>, 2012. @@ -14,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 09:27+0000\n" +"Last-Translator: gp4004 <gp4004@arghh.org>\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" @@ -113,7 +114,7 @@ msgstr "Chargement annulé." #: js/files.js:409 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "L'envoi du fichier est en cours. Quitter cette page maintenant annulera l'envoi du fichier." #: js/files.js:480 msgid "Invalid name, '/' is not allowed." diff --git a/l10n/fr/files_sharing.po b/l10n/fr/files_sharing.po index d107f296193..13fe8b5a464 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/files_sharing.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# <florentin.lemoal@gmail.com>, 2012. # <gp4004@arghh.org>, 2012. # Guillaume Paumier <guillom.pom@gmail.com>, 2012. # Romain DEP. <rom1dep@gmail.com>, 2012. @@ -11,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:04+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 19:11+0000\n" +"Last-Translator: Florentin Le Moal <florentin.lemoal@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" @@ -35,7 +36,7 @@ msgstr "Télécharger" #: templates/public.php:18 msgid "No preview available for" -msgstr "" +msgstr "Pas d'aperçu disponible pour" #: templates/public.php:23 msgid "web services under your control" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index 42c784ce915..5b9ac2ed7fa 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-31 22:53+0200\n" -"PO-Revision-Date: 2012-07-31 00:22+0000\n" -"Last-Translator: Romain DEP. <rom1dep@gmail.com>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\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" @@ -19,43 +19,43 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "Aide" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "Personnel" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "Paramètres" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "Utilisateurs" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "Applications" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "Administration" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "Téléchargement ZIP désactivé." -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "Les fichiers nécessitent d'être téléchargés un par un." -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "Retour aux Fichiers" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "Les fichiers sélectionnés sont trop volumineux pour être compressés." @@ -112,3 +112,16 @@ msgstr "l'année dernière" #: template.php:97 msgid "years ago" msgstr "il y a plusieurs années" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 2fbf6fe41c3..2cde4d61037 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -5,6 +5,7 @@ # Translators: # Cyril Glapa <kyriog@gmail.com>, 2012. # <fboulogne@april.org>, 2011. +# <florentin.lemoal@gmail.com>, 2012. # <gp4004@arghh.org>, 2012. # <guiguidu31300@gmail.com>, 2012. # Jan-Christoph Borchardt <JanCBorchardt@fsfe.org>, 2011. @@ -16,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 18:08+0000\n" +"Last-Translator: Florentin Le Moal <florentin.lemoal@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" @@ -96,39 +97,39 @@ msgstr "utiliser le service cron du système " #: templates/admin.php:39 msgid "Share API" -msgstr "" +msgstr "API de partage" #: templates/admin.php:44 msgid "Enable Share API" -msgstr "" +msgstr "Activer l'API de partage" #: templates/admin.php:45 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Autoriser les applications à utiliser l'API de partage" #: templates/admin.php:49 msgid "Allow links" -msgstr "" +msgstr "Autoriser les liens" #: templates/admin.php:50 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Autoriser les utilisateurs à partager du contenu public avec des liens" #: templates/admin.php:54 msgid "Allow resharing" -msgstr "" +msgstr "Autoriser le re-partage" #: templates/admin.php:55 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "Autoriser les utilisateurs à partager des éléments déjà partagés entre eux" #: templates/admin.php:58 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Autoriser les utilisateurs à partager avec tout le monde" #: templates/admin.php:60 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Autoriser les utilisateurs à ne partager qu'avec les utilisateurs dans leurs groupes" #: templates/admin.php:67 msgid "Log" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index 2e675b5678c..a0531aaba0b 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index 78686b991a1..eed328e6ce5 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index 5dabd1411df..c7209b64c42 100644 --- a/l10n/hi/lib.po +++ b/l10n/hi/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-29 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,19 +41,19 @@ msgstr "" msgid "Admin" msgstr "" -#: files.php:276 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:277 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:277 files.php:302 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:301 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index d38126e621c..a9682726b85 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index cd149d946d7..ddbcd4f2d02 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Adam Toth <adazlord@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,96 +18,109 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" -msgstr "" +msgstr "Súgó" -#: app.php:294 +#: app.php:295 msgid "Personal" -msgstr "" +msgstr "Személyes" -#: app.php:299 +#: app.php:300 msgid "Settings" -msgstr "" +msgstr "Beállítások" -#: app.php:304 +#: app.php:305 msgid "Users" -msgstr "" +msgstr "Felhasználók" -#: app.php:311 +#: app.php:312 msgid "Apps" -msgstr "" +msgstr "Alkalmazások" -#: app.php:313 +#: app.php:314 msgid "Admin" -msgstr "" +msgstr "Admin" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." -msgstr "" +msgstr "ZIP-letöltés letiltva" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "A file-okat egyenként kell letölteni" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" -msgstr "" +msgstr "Vissza a File-okhoz" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." -msgstr "" +msgstr "Túl nagy file-ok a zip-generáláshoz" #: json.php:28 msgid "Application is not enabled" -msgstr "" +msgstr "Az alkalmazás nincs engedélyezve" #: json.php:39 json.php:63 json.php:75 msgid "Authentication error" -msgstr "" +msgstr "Hitelesítési hiba" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "" +msgstr "A token lejárt. Frissítsd az oldalt." #: template.php:86 msgid "seconds ago" -msgstr "" +msgstr "másodperccel ezelőtt" #: template.php:87 msgid "1 minute ago" -msgstr "" +msgstr "1 perccel ezelőtt" #: template.php:88 #, php-format msgid "%d minutes ago" -msgstr "" +msgstr "%d perccel ezelőtt" #: template.php:91 msgid "today" -msgstr "" +msgstr "ma" #: template.php:92 msgid "yesterday" -msgstr "" +msgstr "tegnap" #: template.php:93 #, php-format msgid "%d days ago" -msgstr "" +msgstr "%d évvel ezelőtt" #: template.php:94 msgid "last month" -msgstr "" +msgstr "múlt hónapban" #: template.php:95 msgid "months ago" -msgstr "" +msgstr "hónappal ezelőtt" #: template.php:96 msgid "last year" -msgstr "" +msgstr "tavaly" #: template.php:97 msgid "years ago" +msgstr "évvel ezelőtt" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" msgstr "" diff --git a/l10n/hy/lib.po b/l10n/hy/lib.po index 1a8aea0ebb4..a6359330b34 100644 --- a/l10n/hy/lib.po +++ b/l10n/hy/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: hy\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index 49508111104..ea036a26399 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index 6c8b5a8c494..3193d5c4dd2 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/id_ID/lib.po b/l10n/id_ID/lib.po index 62fef73ca05..53350090786 100644 --- a/l10n/id_ID/lib.po +++ b/l10n/id_ID/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: id_ID\n" "Plural-Forms: nplurals=1; plural=0\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/it/core.po b/l10n/it/core.po index da546df81f8..281cd036adb 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 05:26+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -234,7 +234,7 @@ msgstr "Nome del database" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "Spazio delle tabelle del database" #: templates/installation.php:115 msgid "Database host" diff --git a/l10n/it/files.po b/l10n/it/files.po index b4df0c65ff5..ccf33f1c454 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 05:43+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -110,7 +110,7 @@ msgstr "Invio annullato" #: js/files.js:409 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Caricamento del file in corso. La chiusura della pagina annullerà il caricamento." #: js/files.js:480 msgid "Invalid name, '/' is not allowed." diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po index 51aec56bcd2..b2494f4211e 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:04+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 05:29+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,7 +32,7 @@ msgstr "Scarica" #: templates/public.php:18 msgid "No preview available for" -msgstr "" +msgstr "Nessuna anteprima disponibile per" #: templates/public.php:23 msgid "web services under your control" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index e34db2db96e..c4f2d4bd3b9 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-31 22:53+0200\n" -"PO-Revision-Date: 2012-07-30 10:25+0000\n" -"Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,43 +18,43 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "Aiuto" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "Personale" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "Impostazioni" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "Utenti" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "Applicazioni" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "Admin" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "Lo scaricamento in formato ZIP è stato disabilitato." -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "I file devono essere scaricati uno alla volta." -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "Torna ai file" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "I file selezionati sono troppo grandi per generare un file zip." @@ -111,3 +111,16 @@ msgstr "l'anno scorso" #: template.php:97 msgid "years ago" msgstr "anni fa" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 9d79ed9ad65..0847f13efbb 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 10:32+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -94,39 +94,39 @@ msgstr "usa il servizio cron di sistema" #: templates/admin.php:39 msgid "Share API" -msgstr "" +msgstr "API di condivisione" #: templates/admin.php:44 msgid "Enable Share API" -msgstr "" +msgstr "Abilita API di condivisione" #: templates/admin.php:45 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Consenti alle applicazioni di utilizzare le API di condivisione" #: templates/admin.php:49 msgid "Allow links" -msgstr "" +msgstr "Consenti collegamenti" #: templates/admin.php:50 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Consenti agli utenti di condividere elementi al pubblico con collegamenti" #: templates/admin.php:54 msgid "Allow resharing" -msgstr "" +msgstr "Consenti la ri-condivisione" #: templates/admin.php:55 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "Consenti agli utenti di condividere elementi già condivisi" #: templates/admin.php:58 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Consenti agli utenti di condividere con chiunque" #: templates/admin.php:60 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Consenti agli utenti di condividere con gli utenti del proprio gruppo" #: templates/admin.php:67 msgid "Log" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index a15ecce195d..d0d6924197f 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 07:44+0000\n" +"Last-Translator: ttyn <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" "Content-Type: text/plain; charset=UTF-8\n" @@ -231,7 +231,7 @@ msgstr "データベース名" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "データベースの表領域" #: templates/installation.php:115 msgid "Database host" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index a4c99fedccf..3fbe7f60e99 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -4,13 +4,14 @@ # # Translators: # Daisuke Deguchi <ddeguchi@is.nagoya-u.ac.jp>, 2012. +# <tetuyano+transi@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 07:52+0000\n" +"Last-Translator: ttyn <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" "Content-Type: text/plain; charset=UTF-8\n" @@ -107,7 +108,7 @@ msgstr "アップロードはキャンセルされました。" #: js/files.js:409 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。" #: js/files.js:480 msgid "Invalid name, '/' is not allowed." diff --git a/l10n/ja_JP/files_sharing.po b/l10n/ja_JP/files_sharing.po index c47c870dc7b..648cb83f0f4 100644 --- a/l10n/ja_JP/files_sharing.po +++ b/l10n/ja_JP/files_sharing.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:04+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 07:43+0000\n" +"Last-Translator: ttyn <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" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,7 +33,7 @@ msgstr "ダウンロード" #: templates/public.php:18 msgid "No preview available for" -msgstr "" +msgstr "プレビューはありません" #: templates/public.php:23 msgid "web services under your control" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index 30b50556235..a2197a29945 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Daisuke Deguchi <ddeguchi@is.nagoya-u.ac.jp>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,96 +18,109 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0\n" -#: app.php:287 +#: app.php:288 msgid "Help" -msgstr "" +msgstr "ヘルプ" -#: app.php:294 +#: app.php:295 msgid "Personal" -msgstr "" +msgstr "個人設定" -#: app.php:299 +#: app.php:300 msgid "Settings" -msgstr "" +msgstr "設定" -#: app.php:304 +#: app.php:305 msgid "Users" -msgstr "" +msgstr "ユーザ" -#: app.php:311 +#: app.php:312 msgid "Apps" -msgstr "" +msgstr "アプリ" -#: app.php:313 +#: app.php:314 msgid "Admin" -msgstr "" +msgstr "管理者" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." -msgstr "" +msgstr "ZIPダウンロードは無効です。" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "ファイルは1つずつダウンロードする必要があります。" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" -msgstr "" +msgstr "ファイルに戻る" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." -msgstr "" +msgstr "選択したファイルはZIPファイルの生成には大きすぎます。" #: json.php:28 msgid "Application is not enabled" -msgstr "" +msgstr "アプリケーションは無効です" #: json.php:39 json.php:63 json.php:75 msgid "Authentication error" -msgstr "" +msgstr "認証エラー" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "" +msgstr "トークンが無効になりました。ページを再読込してください。" #: template.php:86 msgid "seconds ago" -msgstr "" +msgstr "秒前" #: template.php:87 msgid "1 minute ago" -msgstr "" +msgstr "1分前" #: template.php:88 #, php-format msgid "%d minutes ago" -msgstr "" +msgstr "%d 分前" #: template.php:91 msgid "today" -msgstr "" +msgstr "今日" #: template.php:92 msgid "yesterday" -msgstr "" +msgstr "昨日" #: template.php:93 #, php-format msgid "%d days ago" -msgstr "" +msgstr "%d 日前" #: template.php:94 msgid "last month" -msgstr "" +msgstr "先月" #: template.php:95 msgid "months ago" -msgstr "" +msgstr "月前" #: template.php:96 msgid "last year" -msgstr "" +msgstr "昨年" #: template.php:97 msgid "years ago" +msgstr "年前" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" msgstr "" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index e7b829db825..2964354ae9c 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/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: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 08:06+0000\n" +"Last-Translator: ttyn <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" "Content-Type: text/plain; charset=UTF-8\n" @@ -89,39 +89,39 @@ msgstr "システムのcronサービスを使用" #: templates/admin.php:39 msgid "Share API" -msgstr "" +msgstr "Share API" #: templates/admin.php:44 msgid "Enable Share API" -msgstr "" +msgstr "Share APIを有効" #: templates/admin.php:45 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Share APIの使用をアプリケーションに許可" #: templates/admin.php:49 msgid "Allow links" -msgstr "" +msgstr "リンクを許可" #: templates/admin.php:50 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "ユーザーがリンクによる公開でアイテムを共有することが出来るようにする" #: templates/admin.php:54 msgid "Allow resharing" -msgstr "" +msgstr "再共有を許可" #: templates/admin.php:55 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "ユーザーが共有されているアイテムをさらに共有することが出来るようにする" #: templates/admin.php:58 msgid "Allow users to share with anyone" -msgstr "" +msgstr "ユーザーが誰にでも共有出来るようにする" #: templates/admin.php:60 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "ユーザーがグループの人にしか共有出来ないようにする" #: templates/admin.php:67 msgid "Log" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index 2308a069de8..bf494197c62 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index bb55ec5a6fa..8aa81edb8f7 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index cf1cc1edba5..4240cfb1d2e 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-22 12:43+0000\n" -"Last-Translator: Dr. ROX <to.dr.rox@gmail.com>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -42,19 +42,19 @@ msgstr "Programos" msgid "Admin" msgstr "Administravimas" -#: files.php:276 +#: files.php:280 msgid "ZIP download is turned off." msgstr "ZIP atsisiuntimo galimybė yra išjungta." -#: files.php:277 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "Failai turi būti parsiunčiami vienas po kito." -#: files.php:277 files.php:302 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "Atgal į Failus" -#: files.php:301 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "Pasirinkti failai per dideli archyvavimui į ZIP." @@ -111,3 +111,16 @@ msgstr "pereitais metais" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 40959dcc424..b7c5c417809 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index 713abb126dc..626e9dc54f2 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index cd3b8e2f803..35fe79aada3 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index 52b02f78ee2..4a78161719d 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 22:57+0000\n" -"Last-Translator: runesudden <runesudden@gmail.com>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@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" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,19 +43,19 @@ msgstr "Apper" msgid "Admin" msgstr "Admin" -#: files.php:276 +#: files.php:280 msgid "ZIP download is turned off." msgstr "ZIP-nedlasting av avslått" -#: files.php:277 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "Filene må lastes ned en om gangen" -#: files.php:277 files.php:302 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "Tilbake til filer" -#: files.php:301 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "De valgte filene er for store til å kunne generere ZIP-fil" @@ -112,3 +112,16 @@ msgstr "i fjor" #: template.php:97 msgid "years ago" msgstr "år siden" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index 2715403dba6..d7e354e9f4f 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-25 02:04+0200\n" -"PO-Revision-Date: 2012-08-24 15:58+0000\n" -"Last-Translator: Richard Bos <radoeka@gmail.com>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -42,19 +42,19 @@ msgstr "Apps" msgid "Admin" msgstr "Administrator" -#: files.php:276 +#: files.php:280 msgid "ZIP download is turned off." msgstr "ZIP download is uitgeschakeld." -#: files.php:277 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "Bestanden moeten één voor één worden gedownload." -#: files.php:277 files.php:302 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "Terug naar bestanden" -#: files.php:301 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "De geselecteerde bestanden zijn te groot om een zip bestand te maken." @@ -111,3 +111,16 @@ msgstr "vorig jaar" #: template.php:97 msgid "years ago" msgstr "jaar geleden" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index 17b3f9e58db..aa993826b37 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index 5b7d557a682..cea78bc05fa 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Cyryl Sochacki <>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,96 +18,109 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" -#: app.php:287 +#: app.php:288 msgid "Help" -msgstr "" +msgstr "Pomoc" -#: app.php:294 +#: app.php:295 msgid "Personal" -msgstr "" +msgstr "Osobiste" -#: app.php:299 +#: app.php:300 msgid "Settings" -msgstr "" +msgstr "Ustawienia" -#: app.php:304 +#: app.php:305 msgid "Users" -msgstr "" +msgstr "Użytkownicy" -#: app.php:311 +#: app.php:312 msgid "Apps" -msgstr "" +msgstr "Aplikacje" -#: app.php:313 +#: app.php:314 msgid "Admin" -msgstr "" +msgstr "Administrator" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." -msgstr "" +msgstr "Pobieranie ZIP jest wyłączone." -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "Pliki muszą zostać pobrane pojedynczo." -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" -msgstr "" +msgstr "Wróć do plików" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." -msgstr "" +msgstr "Wybrane pliki są zbyt duże, aby wygenerować plik zip." #: json.php:28 msgid "Application is not enabled" -msgstr "" +msgstr "Aplikacja nie jest włączona" #: json.php:39 json.php:63 json.php:75 msgid "Authentication error" -msgstr "" +msgstr "Błąd uwierzytelniania" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "" +msgstr "Token wygasł. Proszę ponownie załadować stronę." #: template.php:86 msgid "seconds ago" -msgstr "" +msgstr "sekund temu" #: template.php:87 msgid "1 minute ago" -msgstr "" +msgstr "1 minutę temu" #: template.php:88 #, php-format msgid "%d minutes ago" -msgstr "" +msgstr "%d minut temu" #: template.php:91 msgid "today" -msgstr "" +msgstr "dzisiaj" #: template.php:92 msgid "yesterday" -msgstr "" +msgstr "wczoraj" #: template.php:93 #, php-format msgid "%d days ago" -msgstr "" +msgstr "%d dni temu" #: template.php:94 msgid "last month" -msgstr "" +msgstr "ostatni miesiąc" #: template.php:95 msgid "months ago" -msgstr "" +msgstr "miesięcy temu" #: template.php:96 msgid "last year" -msgstr "" +msgstr "ostatni rok" #: template.php:97 msgid "years ago" +msgstr "lat temu" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" msgstr "" diff --git a/l10n/pl_PL/lib.po b/l10n/pl_PL/lib.po index 27da662a78c..b39526b5c06 100644 --- a/l10n/pl_PL/lib.po +++ b/l10n/pl_PL/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,19 +41,19 @@ msgstr "" msgid "Admin" msgstr "" -#: files.php:276 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:277 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:277 files.php:302 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:301 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index d9a3c6dbc4a..3ff7a35f895 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index 70d233eab3d..c2f8bf858d1 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index b0fd2256d65..1c5698fa220 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1))\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 9ebfee3096b..2203f972c16 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 02:57+0000\n" +"Last-Translator: Denis <reg.transifex.net@demitel.ru>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -112,7 +112,7 @@ msgstr "Загрузка отменена." #: js/files.js:409 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Файл в процессе загрузки. Покинув страницу вы прервёте загрузку." #: js/files.js:480 msgid "Invalid name, '/' is not allowed." diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index 8c24f83b941..e345d2c9749 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-25 02:04+0200\n" -"PO-Revision-Date: 2012-08-24 09:37+0000\n" -"Last-Translator: Denis <reg.transifex.net@demitel.ru>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -42,19 +42,19 @@ msgstr "Приложения" msgid "Admin" msgstr "Admin" -#: files.php:276 +#: files.php:280 msgid "ZIP download is turned off." msgstr "ZIP-скачивание отключено." -#: files.php:277 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "Файлы должны быть загружены по одному." -#: files.php:277 files.php:302 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "Назад к файлам" -#: files.php:301 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "Выбранные файлы слишком велики, чтобы создать zip файл." @@ -111,3 +111,16 @@ msgstr "в прошлом году" #: template.php:97 msgid "years ago" msgstr "годы назад" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/ru_RU/lib.po b/l10n/ru_RU/lib.po index 2c2884966b3..9b7bced5422 100644 --- a/l10n/ru_RU/lib.po +++ b/l10n/ru_RU/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,19 +41,19 @@ msgstr "" msgid "Admin" msgstr "" -#: files.php:276 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:277 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:277 files.php:302 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:301 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index 1e1e954af89..b4ffed65379 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 3c5d0388314..5039ad2eacd 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 14:09+0000\n" +"Last-Translator: Peter Peroša <peter.perosa@gmail.com>\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" @@ -232,7 +232,7 @@ msgstr "Ime podatkovne zbirke" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "Razpredelnica podatkovne zbirke" #: templates/installation.php:115 msgid "Database host" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 97c1b7d487e..10c581f9878 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 14:14+0000\n" +"Last-Translator: Peter Peroša <peter.perosa@gmail.com>\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" @@ -109,7 +109,7 @@ msgstr "Nalaganje je bilo preklicano." #: js/files.js:409 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Nalaganje datoteke je v teku. Če zapustite to stran zdaj, boste nalaganje preklicali." #: js/files.js:480 msgid "Invalid name, '/' is not allowed." diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index c5c7a7f2b65..54b84f8ba13 100644 --- a/l10n/sl/files_sharing.po +++ b/l10n/sl/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 14:15+0000\n" +"Last-Translator: Peter Peroša <peter.perosa@gmail.com>\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" @@ -32,7 +32,7 @@ msgstr "Prenesi" #: templates/public.php:18 msgid "No preview available for" -msgstr "" +msgstr "Predogled ni na voljo za" #: templates/public.php:23 msgid "web services under your control" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 58fda368690..8b9d7de0fa1 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-22 02:04+0200\n" -"PO-Revision-Date: 2012-08-21 13:10+0000\n" -"Last-Translator: Peter Peroša <peter.perosa@gmail.com>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\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" @@ -42,19 +42,19 @@ msgstr "Aplikacije" msgid "Admin" msgstr "Skrbnik" -#: files.php:276 +#: files.php:280 msgid "ZIP download is turned off." msgstr "ZIP prenos je onemogočen." -#: files.php:277 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "Datoteke morajo biti prenešene posamezno." -#: files.php:277 files.php:302 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "Nazaj na datoteke" -#: files.php:301 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "Izbrane datoteke so prevelike, da bi lahko ustvarili zip datoteko." @@ -111,3 +111,16 @@ msgstr "lani" #: template.php:97 msgid "years ago" msgstr "let nazaj" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index d2fe502e3fd..6cb24d59f88 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 14:24+0000\n" +"Last-Translator: Peter Peroša <peter.perosa@gmail.com>\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" @@ -90,39 +90,39 @@ msgstr "uporabi sistemski servis za periodična opravila" #: templates/admin.php:39 msgid "Share API" -msgstr "" +msgstr "API souporabe" #: templates/admin.php:44 msgid "Enable Share API" -msgstr "" +msgstr "Omogoči API souporabe" #: templates/admin.php:45 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Dovoli aplikacijam uporabo API-ja souporabe" #: templates/admin.php:49 msgid "Allow links" -msgstr "" +msgstr "Dovoli povezave" #: templates/admin.php:50 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Uporabnikom dovoli souporabo z javnimi povezavami" #: templates/admin.php:54 msgid "Allow resharing" -msgstr "" +msgstr "Dovoli nadaljnjo souporabo" #: templates/admin.php:55 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "Uporabnikom dovoli nadaljnjo souporabo" #: templates/admin.php:58 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Uporabnikom dovoli souporabo s komerkoli" #: templates/admin.php:60 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Uporabnikom dovoli souporabo le znotraj njihove skupine" #: templates/admin.php:67 msgid "Log" diff --git a/l10n/so/lib.po b/l10n/so/lib.po index a9d32f69499..0b922ce5c76 100644 --- a/l10n/so/lib.po +++ b/l10n/so/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: so\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index 2ee133933bf..f8fa96c4864 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index 7b9a1d577a7..8c7d9b18bd8 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index a42d5e9bdab..870dffe8a99 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 08:10+0000\n" +"Last-Translator: Magnus Höglund <magnus@linux.com>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -235,7 +235,7 @@ msgstr "Databasnamn" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "Databas tabellutrymme" #: templates/installation.php:115 msgid "Database host" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index f5e62007888..719ccf3db60 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 08:09+0000\n" +"Last-Translator: Magnus Höglund <magnus@linux.com>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -112,7 +112,7 @@ msgstr "Uppladdning avbruten." #: js/files.js:409 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen." #: js/files.js:480 msgid "Invalid name, '/' is not allowed." diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index 8605c3d5d7b..1888512788b 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 08:24+0000\n" +"Last-Translator: Magnus Höglund <magnus@linux.com>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,7 +32,7 @@ msgstr "Ladda ner" #: templates/public.php:18 msgid "No preview available for" -msgstr "" +msgstr "Ingen förhandsgranskning tillgänglig för" #: templates/public.php:23 msgid "web services under your control" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index b4e0a3e8656..711935d56e6 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-22 02:04+0200\n" -"PO-Revision-Date: 2012-08-21 08:40+0000\n" -"Last-Translator: Magnus Höglund <magnus@linux.com>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,19 +43,19 @@ msgstr "Program" msgid "Admin" msgstr "Admin" -#: files.php:276 +#: files.php:280 msgid "ZIP download is turned off." msgstr "Nerladdning av ZIP är avstängd." -#: files.php:277 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "Filer laddas ner en åt gången." -#: files.php:277 files.php:302 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "Tillbaka till Filer" -#: files.php:301 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "Valda filer är för stora för att skapa zip-fil." @@ -112,3 +112,16 @@ msgstr "förra året" #: template.php:97 msgid "years ago" msgstr "år sedan" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 325053565a9..b2111ddb48a 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 08:23+0000\n" +"Last-Translator: Magnus Höglund <magnus@linux.com>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -94,39 +94,39 @@ msgstr "använd systemets cron-tjänst" #: templates/admin.php:39 msgid "Share API" -msgstr "" +msgstr "Delat API" #: templates/admin.php:44 msgid "Enable Share API" -msgstr "" +msgstr "Aktivera delat API" #: templates/admin.php:45 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Tillåt applikationer att använda delat API" #: templates/admin.php:49 msgid "Allow links" -msgstr "" +msgstr "Tillåt länkar" #: templates/admin.php:50 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Tillåt delning till allmänheten via publika länkar" #: templates/admin.php:54 msgid "Allow resharing" -msgstr "" +msgstr "Tillåt dela vidare" #: templates/admin.php:55 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "Tillåt användare att dela vidare filer som delats med dom" #: templates/admin.php:58 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Tillåt delning med alla" #: templates/admin.php:60 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Tillåt bara delning med användare i egna grupper" #: templates/admin.php:67 msgid "Log" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index d43c24c59c6..5ec454483f1 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"POT-Creation-Date: 2012-09-01 02:01+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.pot b/l10n/templates/files.pot index 1f2ea860e0c..aba316e6268 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"POT-Creation-Date: 2012-09-01 02:01+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 9aaa78f17f5..80c2aea915c 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"POT-Creation-Date: 2012-09-01 02:01+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 d1350464edc..e9739cd6a06 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"POT-Creation-Date: 2012-09-01 02:01+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 19c56ef174b..6cfc4adf2a9 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"POT-Creation-Date: 2012-09-01 02:01+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 934a3cccec0..8eb69462787 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"POT-Creation-Date: 2012-09-01 02:01+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 f74684b23e8..1024b00ff3b 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"POT-Creation-Date: 2012-09-01 02:01+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" @@ -41,19 +41,19 @@ msgstr "" msgid "Admin" msgstr "" -#: files.php:276 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:277 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:277 files.php:302 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:301 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index a326ab25b34..110d19e434a 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"POT-Creation-Date: 2012-09-01 02:01+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 bedad418089..7b87fc39d38 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" +"POT-Creation-Date: 2012-09-01 02:01+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 2c98916ec0d..80fbd9a5ac9 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 17:01+0000\n" +"Last-Translator: AriesAnywhere Anywhere <ariesanywhere@gmail.com>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -231,7 +231,7 @@ msgstr "ชื่อฐานข้อมูล" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "พื้นที่ตารางในฐานข้อมูล" #: templates/installation.php:115 msgid "Database host" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 4ff4ae0cd44..5068c75cf78 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 17:03+0000\n" +"Last-Translator: AriesAnywhere Anywhere <ariesanywhere@gmail.com>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -108,7 +108,7 @@ msgstr "การอัพโหลดถูกยกเลิก" #: js/files.js:409 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "การอัพโหลดไฟล์กำลังอยู่ในระหว่างดำเนินการ การออกจากหน้าเว็บนี้จะทำให้การอัพโหลดถูกยกเลิก" #: js/files.js:480 msgid "Invalid name, '/' is not allowed." diff --git a/l10n/th_TH/files_sharing.po b/l10n/th_TH/files_sharing.po index 8f2587456ff..27aa8b2872a 100644 --- a/l10n/th_TH/files_sharing.po +++ b/l10n/th_TH/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 17:05+0000\n" +"Last-Translator: AriesAnywhere Anywhere <ariesanywhere@gmail.com>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,7 +32,7 @@ msgstr "ดาวน์โหลด" #: templates/public.php:18 msgid "No preview available for" -msgstr "" +msgstr "ไม่สามารถดูตัวอย่างได้สำหรับ" #: templates/public.php:23 msgid "web services under your control" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index 57847a06f6d..93925a0b0d9 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-15 02:03+0200\n" -"PO-Revision-Date: 2012-08-14 13:40+0000\n" -"Last-Translator: AriesAnywhere Anywhere <ariesanywhere@gmail.com>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -42,19 +42,19 @@ msgstr "แอปฯ" msgid "Admin" msgstr "ผู้ดูแล" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "คุณสมบัติการดาวน์โหลด zip ถูกปิดการใช้งานไว้" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "ไฟล์สามารถดาวน์โหลดได้ทีละครั้งเท่านั้น" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "กลับไปที่ไฟล์" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "ไฟล์ที่เลือกมีขนาดใหญ่เกินกว่าที่จะสร้างเป็นไฟล์ zip" @@ -111,3 +111,16 @@ msgstr "ปีที่แล้ว" #: template.php:97 msgid "years ago" msgstr "ปีที่ผ่านมา" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 2d94b32cab5..fa0161c36cf 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 17:08+0000\n" +"Last-Translator: AriesAnywhere Anywhere <ariesanywhere@gmail.com>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -90,39 +90,39 @@ msgstr "ใช้บริการ cron จากระบบ" #: templates/admin.php:39 msgid "Share API" -msgstr "" +msgstr "API สำหรับคุณสมบัติแชร์ข้อมูล" #: templates/admin.php:44 msgid "Enable Share API" -msgstr "" +msgstr "เปิดใช้งาน API สำหรับคุณสมบัติแชร์ข้อมูล" #: templates/admin.php:45 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "อนุญาตให้แอปฯสามารถใช้ API สำหรับแชร์ข้อมูลได้" #: templates/admin.php:49 msgid "Allow links" -msgstr "" +msgstr "อนุญาตให้ใช้งานลิงก์ได้" #: templates/admin.php:50 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "อนุญาตให้ผู้ใช้งานสามารถแชร์ข้อมูลรายการต่างๆไปให้สาธารณะชนเป็นลิงก์ได้" #: templates/admin.php:54 msgid "Allow resharing" -msgstr "" +msgstr "อนุญาตให้แชร์ข้อมูลซ้ำใหม่ได้" #: templates/admin.php:55 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลรายการต่างๆที่ถูกแชร์มาให้ตัวผู้ใช้งานได้เท่านั้น" #: templates/admin.php:58 msgid "Allow users to share with anyone" -msgstr "" +msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลถึงใครก็ได้" #: templates/admin.php:60 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลได้เฉพาะกับผู้ใช้งานที่อยู่ในกลุ่มเดียวกันเท่านั้น" #: templates/admin.php:67 msgid "Log" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 40f3cba6d9f..8644c4df375 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -4,14 +4,15 @@ # # Translators: # Aranel Surion <aranel@aranelsurion.org>, 2011, 2012. +# Caner Başaran <basaran.caner@gmail.com>, 2012. # Necdet Yücel <necdetyucel@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 21:48+0000\n" +"Last-Translator: Caner Başaran <basaran.caner@gmail.com>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -231,7 +232,7 @@ msgstr "Veritabanı adı" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "Veritabanı tablo alanı" #: templates/installation.php:115 msgid "Database host" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index a1b4a5a6642..61fec9e31f7 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=1; plural=0\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index a818ac7d1f4..d2a2e0eac4a 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-31 22:53+0200\n" -"PO-Revision-Date: 2012-07-30 21:26+0000\n" -"Last-Translator: dzubchikd <dzubchikd@gmail.com>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,43 +18,43 @@ msgstr "" "Language: uk\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "Допомога" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "Особисте" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "Налаштування" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "Користувачі" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "Додатки" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "Адмін" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "ZIP завантаження вимкнено." -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "Файли повинні бути завантаженні послідовно." -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "Повернутися до файлів" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "Вибрані фали завеликі для генерування zip файлу." @@ -111,3 +111,16 @@ msgstr "минулого року" #: template.php:97 msgid "years ago" msgstr "роки тому" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index 40d92269ac1..966ae227063 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,43 +17,43 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0\n" -#: app.php:287 +#: app.php:288 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:295 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:300 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:305 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:312 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:314 msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/zh_CN.GB2312/lib.po b/l10n/zh_CN.GB2312/lib.po index 49d72542b8d..541a462fb8a 100644 --- a/l10n/zh_CN.GB2312/lib.po +++ b/l10n/zh_CN.GB2312/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-11 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@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" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,19 +41,19 @@ msgstr "" msgid "Admin" msgstr "" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." msgstr "" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "" @@ -110,3 +110,16 @@ msgstr "" #: template.php:97 msgid "years ago" msgstr "" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index 4a52e2838c8..7bb4a2e7860 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 12:13+0000\n" -"Last-Translator: leonfeng <rainofchaos@gmail.com>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -42,19 +42,19 @@ msgstr "应用" msgid "Admin" msgstr "管理" -#: files.php:276 +#: files.php:280 msgid "ZIP download is turned off." msgstr "ZIP 下载已经关闭" -#: files.php:277 +#: files.php:281 msgid "Files need to be downloaded one by one." msgstr "需要逐一下载文件" -#: files.php:277 files.php:302 +#: files.php:281 files.php:306 msgid "Back to Files" msgstr "回到文件" -#: files.php:301 +#: files.php:305 msgid "Selected files too large to generate zip file." msgstr "选择的文件太大,无法生成 zip 文件。" @@ -111,3 +111,16 @@ msgstr "上年" #: template.php:97 msgid "years ago" msgstr "几年前" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" +msgstr "" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index feb9070fb42..7af51044d5f 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -4,13 +4,14 @@ # # Translators: # Donahue Chuang <soshinwu@gmail.com>, 2012. +# Ming Yi Wu <mingi.wu@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 07:35+0000\n" +"Last-Translator: Ming Yi Wu <mingi.wu@gmail.com>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,7 +33,7 @@ msgstr "此分類已經存在:" #: js/jquery-ui-1.8.16.custom.min.js:511 msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" +msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" #: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" @@ -40,75 +41,75 @@ msgstr "設定" #: js/js.js:591 msgid "January" -msgstr "" +msgstr "一月" #: js/js.js:591 msgid "February" -msgstr "" +msgstr "二月" #: js/js.js:591 msgid "March" -msgstr "" +msgstr "三月" #: js/js.js:591 msgid "April" -msgstr "" +msgstr "四月" #: js/js.js:591 msgid "May" -msgstr "" +msgstr "五月" #: js/js.js:591 msgid "June" -msgstr "" +msgstr "六月" #: js/js.js:592 msgid "July" -msgstr "" +msgstr "七月" #: js/js.js:592 msgid "August" -msgstr "" +msgstr "八月" #: js/js.js:592 msgid "September" -msgstr "" +msgstr "九月" #: js/js.js:592 msgid "October" -msgstr "" +msgstr "十月" #: js/js.js:592 msgid "November" -msgstr "" +msgstr "十一月" #: js/js.js:592 msgid "December" -msgstr "" +msgstr "十二月" #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" -msgstr "" +msgstr "取消" #: js/oc-dialogs.js:159 msgid "No" -msgstr "" +msgstr "No" #: js/oc-dialogs.js:160 msgid "Yes" -msgstr "" +msgstr "Yes" #: js/oc-dialogs.js:177 msgid "Ok" -msgstr "" +msgstr "Ok" #: js/oc-vcategories.js:68 msgid "No categories selected for deletion." -msgstr "" +msgstr "沒選擇要刪除的分類" #: js/oc-vcategories.js:68 msgid "Error" -msgstr "" +msgstr "錯誤" #: lostpassword/index.php:26 msgid "ownCloud password reset" @@ -230,7 +231,7 @@ msgstr "資料庫名稱" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "資料庫 tablespace" #: templates/installation.php:115 msgid "Database host" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index dc56f8de0c1..2bbfc8d8603 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -5,13 +5,14 @@ # Translators: # Donahue Chuang <soshinwu@gmail.com>, 2012. # Eddy Chang <taiwanmambo@gmail.com>, 2012. +# ywang <ywang1007@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-08-31 20:40+0000\n" +"Last-Translator: ywang <ywang1007@gmail.com>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -59,15 +60,15 @@ msgstr "刪除" #: js/filelist.js:141 msgid "already exists" -msgstr "" +msgstr "已經存在" #: js/filelist.js:141 msgid "replace" -msgstr "" +msgstr "取代" #: js/filelist.js:141 msgid "cancel" -msgstr "" +msgstr "取消" #: js/filelist.js:195 msgid "replaced" @@ -87,15 +88,15 @@ msgstr "" #: js/files.js:179 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "產生壓縮檔, 它可能需要一段時間." #: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "無法上傳您的檔案因為它可能是一個目錄或檔案大小為0" #: js/files.js:208 msgid "Upload Error" -msgstr "" +msgstr "上傳發生錯誤" #: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" @@ -103,16 +104,16 @@ msgstr "" #: js/files.js:341 msgid "Upload cancelled." -msgstr "" +msgstr "上傳取消" #: js/files.js:409 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "檔案上傳中. 離開此頁面將會取消上傳." #: js/files.js:480 msgid "Invalid name, '/' is not allowed." -msgstr "" +msgstr "無效的名稱, '/'是不被允許的" #: js/files.js:726 templates/index.php:55 msgid "Size" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index 43e6429a60b..45a52a790a7 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -3,13 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# <ywang1007+transifex@gmail.com>, 2012. +# ywang <ywang1007@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-09-01 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 00:02+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,96 +19,109 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0\n" -#: app.php:287 +#: app.php:288 msgid "Help" -msgstr "" +msgstr "說明" -#: app.php:294 +#: app.php:295 msgid "Personal" -msgstr "" +msgstr "個人" -#: app.php:299 +#: app.php:300 msgid "Settings" -msgstr "" +msgstr "設定" -#: app.php:304 +#: app.php:305 msgid "Users" -msgstr "" +msgstr "使用者" -#: app.php:311 +#: app.php:312 msgid "Apps" -msgstr "" +msgstr "應用程式" -#: app.php:313 +#: app.php:314 msgid "Admin" -msgstr "" +msgstr "管理" -#: files.php:245 +#: files.php:280 msgid "ZIP download is turned off." -msgstr "" +msgstr "ZIP 下載已關閉" -#: files.php:246 +#: files.php:281 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "檔案需要逐一下載" -#: files.php:246 files.php:271 +#: files.php:281 files.php:306 msgid "Back to Files" -msgstr "" +msgstr "回到檔案列表" -#: files.php:270 +#: files.php:305 msgid "Selected files too large to generate zip file." -msgstr "" +msgstr "選擇的檔案太大以致於無法產生壓縮檔" #: json.php:28 msgid "Application is not enabled" -msgstr "" +msgstr "應用程式未啟用" #: json.php:39 json.php:63 json.php:75 msgid "Authentication error" -msgstr "" +msgstr "認證錯誤" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "" +msgstr "Token 過期. 請重新整理頁面" #: template.php:86 msgid "seconds ago" -msgstr "" +msgstr "幾秒前" #: template.php:87 msgid "1 minute ago" -msgstr "" +msgstr "1 分鐘前" #: template.php:88 #, php-format msgid "%d minutes ago" -msgstr "" +msgstr "%d 分鐘前" #: template.php:91 msgid "today" -msgstr "" +msgstr "今天" #: template.php:92 msgid "yesterday" -msgstr "" +msgstr "昨天" #: template.php:93 #, php-format msgid "%d days ago" -msgstr "" +msgstr "%d 天前" #: template.php:94 msgid "last month" -msgstr "" +msgstr "上個月" #: template.php:95 msgid "months ago" -msgstr "" +msgstr "幾個月前" #: template.php:96 msgid "last year" -msgstr "" +msgstr "去年" #: template.php:97 msgid "years ago" +msgstr "幾年前" + +#: updater.php:66 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:68 +msgid "up to date" +msgstr "" + +#: updater.php:71 +msgid "updates check is disabled" msgstr "" diff --git a/lib/l10n/da.php b/lib/l10n/da.php new file mode 100644 index 00000000000..7a9ee26b477 --- /dev/null +++ b/lib/l10n/da.php @@ -0,0 +1,25 @@ +<?php $TRANSLATIONS = array( +"Help" => "Hjælp", +"Personal" => "Personlig", +"Settings" => "Indstillinger", +"Users" => "Brugere", +"Apps" => "Apps", +"Admin" => "Admin", +"ZIP download is turned off." => "ZIP-download er slået fra.", +"Files need to be downloaded one by one." => "Filer skal downloades en for en.", +"Back to Files" => "Tilbage til Filer", +"Selected files too large to generate zip file." => "De markerede filer er for store til at generere en ZIP-fil.", +"Application is not enabled" => "Programmet er ikke aktiveret", +"Authentication error" => "Adgangsfejl", +"Token expired. Please reload page." => "Adgang er udløbet. Genindlæs siden.", +"seconds ago" => "sekunder siden", +"1 minute ago" => "1 minut siden", +"%d minutes ago" => "%d minutter siden", +"today" => "I dag", +"yesterday" => "I går", +"%d days ago" => "%d dage siden", +"last month" => "Sidste måned", +"months ago" => "måneder siden", +"last year" => "Sidste år", +"years ago" => "år siden" +); diff --git a/lib/l10n/eo.php b/lib/l10n/eo.php index 96bcb06a8d7..3f89e2eca73 100644 --- a/lib/l10n/eo.php +++ b/lib/l10n/eo.php @@ -4,6 +4,7 @@ "Settings" => "Agordo", "Users" => "Uzantoj", "Apps" => "Aplikaĵoj", +"Admin" => "Administranto", "ZIP download is turned off." => "ZIP-elŝuto estas malkapabligita.", "Files need to be downloaded one by one." => "Dosieroj devas elŝutiĝi unuope.", "Back to Files" => "Reen al la dosieroj", diff --git a/lib/l10n/eu.php b/lib/l10n/eu.php new file mode 100644 index 00000000000..989b3694136 --- /dev/null +++ b/lib/l10n/eu.php @@ -0,0 +1,25 @@ +<?php $TRANSLATIONS = array( +"Help" => "Laguntza", +"Personal" => "Pertsonala", +"Settings" => "Ezarpenak", +"Users" => "Erabiltzaileak", +"Apps" => "Aplikazioak", +"Admin" => "Admin", +"ZIP download is turned off." => "ZIP deskarga ez dago gaituta.", +"Files need to be downloaded one by one." => "Fitxategiak banan-banan deskargatu behar dira.", +"Back to Files" => "Itzuli fitxategietara", +"Selected files too large to generate zip file." => "Hautatuko fitxategiak oso handiak dira zip fitxategia sortzeko.", +"Application is not enabled" => "Aplikazioa ez dago gaituta", +"Authentication error" => "Autentikazio errorea", +"Token expired. Please reload page." => "Tokena iraungitu da. Mesedez birkargatu orria.", +"seconds ago" => "orain dela segundu batzuk", +"1 minute ago" => "orain dela minutu 1", +"%d minutes ago" => "orain dela %d minutu", +"today" => "gaur", +"yesterday" => "atzo", +"%d days ago" => "orain dela %d egun", +"last month" => "joan den hilabetea", +"months ago" => "orain dela hilabete batzuk", +"last year" => "joan den urtea", +"years ago" => "orain dela urte batzuk" +); diff --git a/lib/l10n/hu_HU.php b/lib/l10n/hu_HU.php new file mode 100644 index 00000000000..eb074b79c61 --- /dev/null +++ b/lib/l10n/hu_HU.php @@ -0,0 +1,25 @@ +<?php $TRANSLATIONS = array( +"Help" => "Súgó", +"Personal" => "Személyes", +"Settings" => "Beállítások", +"Users" => "Felhasználók", +"Apps" => "Alkalmazások", +"Admin" => "Admin", +"ZIP download is turned off." => "ZIP-letöltés letiltva", +"Files need to be downloaded one by one." => "A file-okat egyenként kell letölteni", +"Back to Files" => "Vissza a File-okhoz", +"Selected files too large to generate zip file." => "Túl nagy file-ok a zip-generáláshoz", +"Application is not enabled" => "Az alkalmazás nincs engedélyezve", +"Authentication error" => "Hitelesítési hiba", +"Token expired. Please reload page." => "A token lejárt. Frissítsd az oldalt.", +"seconds ago" => "másodperccel ezelőtt", +"1 minute ago" => "1 perccel ezelőtt", +"%d minutes ago" => "%d perccel ezelőtt", +"today" => "ma", +"yesterday" => "tegnap", +"%d days ago" => "%d évvel ezelőtt", +"last month" => "múlt hónapban", +"months ago" => "hónappal ezelőtt", +"last year" => "tavaly", +"years ago" => "évvel ezelőtt" +); diff --git a/lib/l10n/ja_JP.php b/lib/l10n/ja_JP.php new file mode 100644 index 00000000000..3552a525c99 --- /dev/null +++ b/lib/l10n/ja_JP.php @@ -0,0 +1,25 @@ +<?php $TRANSLATIONS = array( +"Help" => "ヘルプ", +"Personal" => "個人設定", +"Settings" => "設定", +"Users" => "ユーザ", +"Apps" => "アプリ", +"Admin" => "管理者", +"ZIP download is turned off." => "ZIPダウンロードは無効です。", +"Files need to be downloaded one by one." => "ファイルは1つずつダウンロードする必要があります。", +"Back to Files" => "ファイルに戻る", +"Selected files too large to generate zip file." => "選択したファイルはZIPファイルの生成には大きすぎます。", +"Application is not enabled" => "アプリケーションは無効です", +"Authentication error" => "認証エラー", +"Token expired. Please reload page." => "トークンが無効になりました。ページを再読込してください。", +"seconds ago" => "秒前", +"1 minute ago" => "1分前", +"%d minutes ago" => "%d 分前", +"today" => "今日", +"yesterday" => "昨日", +"%d days ago" => "%d 日前", +"last month" => "先月", +"months ago" => "月前", +"last year" => "昨年", +"years ago" => "年前" +); diff --git a/lib/l10n/pl.php b/lib/l10n/pl.php new file mode 100644 index 00000000000..169462fabb7 --- /dev/null +++ b/lib/l10n/pl.php @@ -0,0 +1,25 @@ +<?php $TRANSLATIONS = array( +"Help" => "Pomoc", +"Personal" => "Osobiste", +"Settings" => "Ustawienia", +"Users" => "Użytkownicy", +"Apps" => "Aplikacje", +"Admin" => "Administrator", +"ZIP download is turned off." => "Pobieranie ZIP jest wyłączone.", +"Files need to be downloaded one by one." => "Pliki muszą zostać pobrane pojedynczo.", +"Back to Files" => "Wróć do plików", +"Selected files too large to generate zip file." => "Wybrane pliki są zbyt duże, aby wygenerować plik zip.", +"Application is not enabled" => "Aplikacja nie jest włączona", +"Authentication error" => "Błąd uwierzytelniania", +"Token expired. Please reload page." => "Token wygasł. Proszę ponownie załadować stronę.", +"seconds ago" => "sekund temu", +"1 minute ago" => "1 minutę temu", +"%d minutes ago" => "%d minut temu", +"today" => "dzisiaj", +"yesterday" => "wczoraj", +"%d days ago" => "%d dni temu", +"last month" => "ostatni miesiąc", +"months ago" => "miesięcy temu", +"last year" => "ostatni rok", +"years ago" => "lat temu" +); diff --git a/lib/l10n/zh_TW.php b/lib/l10n/zh_TW.php new file mode 100644 index 00000000000..008c9483a00 --- /dev/null +++ b/lib/l10n/zh_TW.php @@ -0,0 +1,25 @@ +<?php $TRANSLATIONS = array( +"Help" => "說明", +"Personal" => "個人", +"Settings" => "設定", +"Users" => "使用者", +"Apps" => "應用程式", +"Admin" => "管理", +"ZIP download is turned off." => "ZIP 下載已關閉", +"Files need to be downloaded one by one." => "檔案需要逐一下載", +"Back to Files" => "回到檔案列表", +"Selected files too large to generate zip file." => "選擇的檔案太大以致於無法產生壓縮檔", +"Application is not enabled" => "應用程式未啟用", +"Authentication error" => "認證錯誤", +"Token expired. Please reload page." => "Token 過期. 請重新整理頁面", +"seconds ago" => "幾秒前", +"1 minute ago" => "1 分鐘前", +"%d minutes ago" => "%d 分鐘前", +"today" => "今天", +"yesterday" => "昨天", +"%d days ago" => "%d 天前", +"last month" => "上個月", +"months ago" => "幾個月前", +"last year" => "去年", +"years ago" => "幾年前" +); diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 7b95d6f9af1..29cad92715d 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -16,6 +16,15 @@ "execute one task with each page loaded" => "executa una tasca en carregar cada pàgina", "cron.php is registered at a webcron service" => "cron.php està registrat en un servei web cron", "use systems cron service" => "usa el servei cron del sistema", +"Share API" => "API de compartir", +"Enable Share API" => "Activa l'API de compartir", +"Allow apps to use the Share API" => "Permet que les aplicacions usin l'API de compartir", +"Allow links" => "Permet enllaços", +"Allow users to share items to the public with links" => "Permet als usuaris compartir elements amb el públic amb enllaços", +"Allow resharing" => "Permet compartir de nou", +"Allow users to share items shared with them again" => "Permet als usuaris comparir elements ja compartits amb ells", +"Allow users to share with anyone" => "Permet als usuaris compartir amb qualsevol", +"Allow users to only share with users in their groups" => "Permet als usuaris compartir només amb usuaris del seu grup", "Log" => "Registre", "More" => "Més", "Add your App" => "Afegiu la vostra aplicació", diff --git a/settings/l10n/de.php b/settings/l10n/de.php index 8a9e4bd5682..6d1d28fa2e8 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -16,6 +16,15 @@ "execute one task with each page loaded" => "Führe eine Aufgabe pro geladener Seite aus.", "cron.php is registered at a webcron service" => "cron.php ist beim Webcron-Service registriert", "use systems cron service" => "Nutze System-Cron-Service", +"Share API" => "Teilungs-API", +"Enable Share API" => "Teilungs-API aktivieren", +"Allow apps to use the Share API" => "Erlaubt Nutzern die Teilungs-API zu nutzen", +"Allow links" => "Links erlauben", +"Allow users to share items to the public with links" => "Erlaube Nutzern Dateien mithilfe von Links mit der Öffentlichkeit zu teilen", +"Allow resharing" => "Erneutes Teilen erlauben", +"Allow users to share items shared with them again" => "Erlaubt Nutzern, Dateien die mit ihnen geteilt wurden, erneut zu teilen", +"Allow users to share with anyone" => "Erlaube Nutzern mit jedem zu Teilen", +"Allow users to only share with users in their groups" => "Erlaube Nutzern nur das Teilen in ihrer Gruppe", "Log" => "Log", "More" => "Mehr", "Add your App" => "Fügen Sie Ihre App hinzu", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index 8403b6d3883..d86dc3663ad 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -16,6 +16,15 @@ "execute one task with each page loaded" => "ejecutar una tarea con cada página cargada", "cron.php is registered at a webcron service" => "cron.php se registra en un servicio webcron", "use systems cron service" => "usar servicio cron del sistema", +"Share API" => "API de compartición", +"Enable Share API" => "Activar API de compartición", +"Allow apps to use the Share API" => "Permitir a las aplicaciones usar la API de compartición", +"Allow links" => "Permitir enlaces", +"Allow users to share items to the public with links" => "Permitir a los usuarios compartir elementos públicamente con enlaces", +"Allow resharing" => "Permitir re-compartir", +"Allow users to share items shared with them again" => "Permitir a los usuarios compartir elementos compartidos con ellos de nuevo", +"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 con usuarios en sus grupos", "Log" => "Registro", "More" => "Más", "Add your App" => "Añade tu aplicación", diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index 89516b1c7fc..81fb9f56a2b 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -16,6 +16,15 @@ "execute one task with each page loaded" => "exécuter une tâche pour chaque page chargée", "cron.php is registered at a webcron service" => "cron.php est enregistré comme un service webcron", "use systems cron service" => "utiliser le service cron du système ", +"Share API" => "API de partage", +"Enable Share API" => "Activer l'API de partage", +"Allow apps to use the Share API" => "Autoriser les applications à utiliser l'API de partage", +"Allow links" => "Autoriser les liens", +"Allow users to share items to the public with links" => "Autoriser les utilisateurs à partager du contenu public avec des liens", +"Allow resharing" => "Autoriser le re-partage", +"Allow users to share items shared with them again" => "Autoriser les utilisateurs à partager des éléments déjà partagés entre eux", +"Allow users to share with anyone" => "Autoriser les utilisateurs à partager avec tout le monde", +"Allow users to only share with users in their groups" => "Autoriser les utilisateurs à ne partager qu'avec les utilisateurs dans leurs groupes", "Log" => "Journaux", "More" => "Plus", "Add your App" => "Ajoutez votre application", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index e33eddacb57..64df0cd9d42 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -16,6 +16,15 @@ "execute one task with each page loaded" => "esegui un'attività con ogni pagina caricata", "cron.php is registered at a webcron service" => "cron.php è registrato a un servizio webcron", "use systems cron service" => "usa il servizio cron di sistema", +"Share API" => "API di condivisione", +"Enable Share API" => "Abilita API di condivisione", +"Allow apps to use the Share API" => "Consenti alle applicazioni di utilizzare le API di condivisione", +"Allow links" => "Consenti collegamenti", +"Allow users to share items to the public with links" => "Consenti agli utenti di condividere elementi al pubblico con collegamenti", +"Allow resharing" => "Consenti la ri-condivisione", +"Allow users to share items shared with them again" => "Consenti agli utenti di condividere elementi già condivisi", +"Allow users to share with anyone" => "Consenti agli utenti di condividere con chiunque", +"Allow users to only share with users in their groups" => "Consenti agli utenti di condividere con gli utenti del proprio gruppo", "Log" => "Registro", "More" => "Altro", "Add your App" => "Aggiungi la tua applicazione", diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index 93201a9dfe0..617020daa3f 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -16,6 +16,15 @@ "execute one task with each page loaded" => "ページを開く毎にタスクを1つ実行", "cron.php is registered at a webcron service" => "cron.phpをwebcronサービスに登録しました", "use systems cron service" => "システムのcronサービスを使用", +"Share API" => "Share API", +"Enable Share API" => "Share APIを有効", +"Allow apps to use the Share API" => "Share APIの使用をアプリケーションに許可", +"Allow links" => "リンクを許可", +"Allow users to share items to the public with links" => "ユーザーがリンクによる公開でアイテムを共有することが出来るようにする", +"Allow resharing" => "再共有を許可", +"Allow users to share items shared with them again" => "ユーザーが共有されているアイテムをさらに共有することが出来るようにする", +"Allow users to share with anyone" => "ユーザーが誰にでも共有出来るようにする", +"Allow users to only share with users in their groups" => "ユーザーがグループの人にしか共有出来ないようにする", "Log" => "ログ", "More" => "もっと", "Add your App" => "アプリを追加", diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index a2404d212b2..884acaf576d 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -16,6 +16,15 @@ "execute one task with each page loaded" => "izvedi eno nalogo z vsako naloženo stranjo", "cron.php is registered at a webcron service" => "cron.php je vpisan na storitev webcron", "use systems cron service" => "uporabi sistemski servis za periodična opravila", +"Share API" => "API souporabe", +"Enable Share API" => "Omogoči API souporabe", +"Allow apps to use the Share API" => "Dovoli aplikacijam uporabo API-ja souporabe", +"Allow links" => "Dovoli povezave", +"Allow users to share items to the public with links" => "Uporabnikom dovoli souporabo z javnimi povezavami", +"Allow resharing" => "Dovoli nadaljnjo souporabo", +"Allow users to share items shared with them again" => "Uporabnikom dovoli nadaljnjo souporabo", +"Allow users to share with anyone" => "Uporabnikom dovoli souporabo s komerkoli", +"Allow users to only share with users in their groups" => "Uporabnikom dovoli souporabo le znotraj njihove skupine", "Log" => "Dnevnik", "More" => "Več", "Add your App" => "Dodajte vašo aplikacijo", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index 7603b6b09f7..4a1d1b2c474 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -16,6 +16,15 @@ "execute one task with each page loaded" => "utför en uppgift vid varje sidladdning", "cron.php is registered at a webcron service" => "cron.php är registrerad på en webcron-tjänst", "use systems cron service" => "använd systemets cron-tjänst", +"Share API" => "Delat API", +"Enable Share API" => "Aktivera delat API", +"Allow apps to use the Share API" => "Tillåt applikationer att använda delat API", +"Allow links" => "Tillåt länkar", +"Allow users to share items to the public with links" => "Tillåt delning till allmänheten via publika länkar", +"Allow resharing" => "Tillåt dela vidare", +"Allow users to share items shared with them again" => "Tillåt användare att dela vidare filer som delats med dom", +"Allow users to share with anyone" => "Tillåt delning med alla", +"Allow users to only share with users in their groups" => "Tillåt bara delning med användare i egna grupper", "Log" => "Logg", "More" => "Mera", "Add your App" => "Lägg till din applikation", diff --git a/settings/l10n/th_TH.php b/settings/l10n/th_TH.php index a062c374c6a..6ab253362ef 100644 --- a/settings/l10n/th_TH.php +++ b/settings/l10n/th_TH.php @@ -16,6 +16,15 @@ "execute one task with each page loaded" => "ประมวลผลหนึ่งงานเมื่อโหลดหน้าเว็บแต่ละครั้ง", "cron.php is registered at a webcron service" => "cron.php ได้ถูกลงทะเบียนที่บริการ webcron", "use systems cron service" => "ใช้บริการ cron จากระบบ", +"Share API" => "API สำหรับคุณสมบัติแชร์ข้อมูล", +"Enable Share API" => "เปิดใช้งาน API สำหรับคุณสมบัติแชร์ข้อมูล", +"Allow apps to use the Share API" => "อนุญาตให้แอปฯสามารถใช้ API สำหรับแชร์ข้อมูลได้", +"Allow links" => "อนุญาตให้ใช้งานลิงก์ได้", +"Allow users to share items to the public with links" => "อนุญาตให้ผู้ใช้งานสามารถแชร์ข้อมูลรายการต่างๆไปให้สาธารณะชนเป็นลิงก์ได้", +"Allow resharing" => "อนุญาตให้แชร์ข้อมูลซ้ำใหม่ได้", +"Allow users to share items shared with them again" => "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลรายการต่างๆที่ถูกแชร์มาให้ตัวผู้ใช้งานได้เท่านั้น", +"Allow users to share with anyone" => "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลถึงใครก็ได้", +"Allow users to only share with users in their groups" => "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลได้เฉพาะกับผู้ใช้งานที่อยู่ในกลุ่มเดียวกันเท่านั้น", "Log" => "บันทึกการเปลี่ยนแปลง", "More" => "เพิ่มเติม", "Add your App" => "เพิ่มแอปของคุณ", -- cgit v1.2.3 From 5a9a795cd5b69d9a6acd2b82f77c9437c362d71a Mon Sep 17 00:00:00 2001 From: Michael Gapczynski <mtgap@owncloud.com> Date: Sat, 1 Sep 2012 13:52:12 -0400 Subject: Fix check in Javascript for password protected link --- core/js/share.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core') diff --git a/core/js/share.js b/core/js/share.js index 642c2e1fe4f..e97302b0d5a 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -277,7 +277,7 @@ OC.Share={ $('#linkText').val(link); $('#linkText').show('blind'); $('#showPassword').show(); - if (password.length > 0) { + if (password != null) { $('#linkPass').show('blind'); $('#linkPassText').attr('placeholder', 'Password protected'); } -- cgit v1.2.3 From 2bb7cb9f64b0244290ce8df745fdb040823dbd62 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud <thomas.mueller@tmit.eu> Date: Sun, 2 Sep 2012 02:02:53 +0200 Subject: [tx-robot] updated from transifex --- apps/files/l10n/tr.php | 6 ++++++ apps/files_encryption/l10n/zh_TW.php | 6 ++++++ apps/files_versions/l10n/de.php | 1 + apps/files_versions/l10n/es.php | 2 ++ apps/files_versions/l10n/fr.php | 2 ++ apps/files_versions/l10n/it.php | 2 ++ apps/files_versions/l10n/nl.php | 2 ++ core/l10n/nl.php | 1 + l10n/de/files_versions.po | 7 ++++--- l10n/de/settings.po | 7 ++++--- l10n/es/files_versions.po | 11 ++++++----- l10n/es/lib.po | 13 +++++++------ l10n/es/settings.po | 8 ++++---- l10n/fr/files_versions.po | 10 +++++----- l10n/fr/lib.po | 12 ++++++------ l10n/fr/settings.po | 10 +++++----- l10n/it/files_versions.po | 10 +++++----- l10n/it/settings.po | 10 +++++----- l10n/nl/core.po | 9 +++++---- l10n/nl/files_versions.po | 10 +++++----- l10n/nl/lib.po | 12 ++++++------ l10n/sv/settings.po | 10 +++++----- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/tr/files.po | 19 ++++++++++--------- l10n/zh_TW/files_encryption.po | 15 ++++++++------- l10n/zh_TW/lib.po | 13 +++++++------ l10n/zh_TW/settings.po | 27 ++++++++++++++------------- lib/l10n/es.php | 5 ++++- lib/l10n/fr.php | 5 ++++- lib/l10n/nl.php | 5 ++++- lib/l10n/zh_TW.php | 5 ++++- settings/l10n/de.php | 1 + settings/l10n/es.php | 1 + settings/l10n/fr.php | 2 ++ settings/l10n/it.php | 2 ++ settings/l10n/sv.php | 2 ++ settings/l10n/zh_TW.php | 10 ++++++++++ 45 files changed, 176 insertions(+), 115 deletions(-) create mode 100644 apps/files_encryption/l10n/zh_TW.php (limited to 'core') diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 224322b24e0..630e3563adf 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -8,6 +8,11 @@ "Failed to write to disk" => "Diske yazılamadı", "Files" => "Dosyalar", "Delete" => "Sil", +"already exists" => "zaten mevcut", +"replace" => "değiştir", +"cancel" => "iptal", +"replaced" => "değiştirildi", +"with" => "ile", "undo" => "geri al", "deleted" => "silindi", "generating ZIP-file, it may take some time." => "ZIP dosyası oluşturuluyor, biraz sürebilir.", @@ -15,6 +20,7 @@ "Upload Error" => "Yükleme hatası", "Pending" => "Bekliyor", "Upload cancelled." => "Yükleme iptal edildi.", +"File upload is in progress. Leaving the page now will cancel the upload." => "Dosya yükleme işlemi sürüyor. Şimdi sayfadan ayrılırsanız işleminiz iptal olur.", "Invalid name, '/' is not allowed." => "Geçersiz isim, '/' işaretine izin verilmiyor.", "Size" => "Boyut", "Modified" => "Değiştirilme", diff --git a/apps/files_encryption/l10n/zh_TW.php b/apps/files_encryption/l10n/zh_TW.php new file mode 100644 index 00000000000..4c62130cf4f --- /dev/null +++ b/apps/files_encryption/l10n/zh_TW.php @@ -0,0 +1,6 @@ +<?php $TRANSLATIONS = array( +"Encryption" => "加密", +"Exclude the following file types from encryption" => "下列的檔案類型不加密", +"None" => "無", +"Enable Encryption" => "啟用加密" +); diff --git a/apps/files_versions/l10n/de.php b/apps/files_versions/l10n/de.php index 3d1a0a43f5e..b1ba62a801f 100644 --- a/apps/files_versions/l10n/de.php +++ b/apps/files_versions/l10n/de.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( "Expire all versions" => "Alle Versionen löschen", +"Versions" => "Versionen", "Enable Files Versioning" => "Datei-Versionierung aktivieren" ); diff --git a/apps/files_versions/l10n/es.php b/apps/files_versions/l10n/es.php index be416f5bfba..83d7ed0da2c 100644 --- a/apps/files_versions/l10n/es.php +++ b/apps/files_versions/l10n/es.php @@ -1,4 +1,6 @@ <?php $TRANSLATIONS = array( "Expire all versions" => "Expirar todas las versiones", +"Versions" => "Versiones", +"This will delete all existing backup versions of your files" => "Esto eliminará todas las versiones guardadas como copia de seguridad de tus archivos", "Enable Files Versioning" => "Habilitar versionamiento de archivos" ); diff --git a/apps/files_versions/l10n/fr.php b/apps/files_versions/l10n/fr.php index 02209f543b1..965fa02de98 100644 --- a/apps/files_versions/l10n/fr.php +++ b/apps/files_versions/l10n/fr.php @@ -1,4 +1,6 @@ <?php $TRANSLATIONS = array( "Expire all versions" => "Supprimer les versions intermédiaires", +"Versions" => "Versions", +"This will delete all existing backup versions of your files" => "Cette opération va effacer toutes les versions intermédiaires de vos fichiers (et ne garder que la dernière version en date).", "Enable Files Versioning" => "Activer le versionnage" ); diff --git a/apps/files_versions/l10n/it.php b/apps/files_versions/l10n/it.php index 9711ce18aa8..b7b0b9627b1 100644 --- a/apps/files_versions/l10n/it.php +++ b/apps/files_versions/l10n/it.php @@ -1,4 +1,6 @@ <?php $TRANSLATIONS = array( "Expire all versions" => "Scadenza di tutte le versioni", +"Versions" => "Versioni", +"This will delete all existing backup versions of your files" => "Ciò eliminerà tutte le versioni esistenti dei tuoi file", "Enable Files Versioning" => "Abilita controllo di versione" ); diff --git a/apps/files_versions/l10n/nl.php b/apps/files_versions/l10n/nl.php index 87e72a36202..da31603ff54 100644 --- a/apps/files_versions/l10n/nl.php +++ b/apps/files_versions/l10n/nl.php @@ -1,4 +1,6 @@ <?php $TRANSLATIONS = array( "Expire all versions" => "Alle versies laten verlopen", +"Versions" => "Versies", +"This will delete all existing backup versions of your files" => "Dit zal alle bestaande backup versies van uw bestanden verwijderen", "Enable Files Versioning" => "Activeer file versioning" ); diff --git a/core/l10n/nl.php b/core/l10n/nl.php index 874a710a759..2c020623d6c 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -50,6 +50,7 @@ "Database user" => "Gebruiker databank", "Database password" => "Wachtwoord databank", "Database name" => "Naam databank", +"Database tablespace" => "Database tablespace", "Database host" => "Database server", "Finish setup" => "Installatie afronden", "web services under your control" => "webdiensten die je beheerst", diff --git a/l10n/de/files_versions.po b/l10n/de/files_versions.po index 70c88c71005..773e4b2c44d 100644 --- a/l10n/de/files_versions.po +++ b/l10n/de/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# I Robot <thomas.mueller@tmit.eu>, 2012. # <thomas.mueller@tmit.eu>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 11:47+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -24,7 +25,7 @@ msgstr "Alle Versionen löschen" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "Versionen" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index a0b92971b1c..b99b4b03c5d 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -5,6 +5,7 @@ # Translators: # <admin@s-goecker.de>, 2011, 2012. # <icewind1991@gmail.com>, 2012. +# I Robot <thomas.mueller@tmit.eu>, 2012. # Jan-Christoph Borchardt <JanCBorchardt@fsfe.org>, 2011. # Marcel Kühlhorn <susefan93@gmx.de>, 2012. # <nelsonfritsch@gmail.com>, 2012. @@ -16,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 11:46+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -155,7 +156,7 @@ msgid "" "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>." -msgstr "" +msgstr "Entwickelt von der <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud-Community</a>, der <a href=\"https://github.com/owncloud\" target=\"_blank\">Quellcode</a> ist unter der <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> lizenziert." #: templates/apps.php:10 msgid "Add your App" diff --git a/l10n/es/files_versions.po b/l10n/es/files_versions.po index 0f7858a3de1..05f6814b37a 100644 --- a/l10n/es/files_versions.po +++ b/l10n/es/files_versions.po @@ -5,13 +5,14 @@ # Translators: # Javier Llorente <javier@opensuse.org>, 2012. # <juanma@kde.org.ar>, 2012. +# Rubén Trujillo <rubentrf@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 18:22+0000\n" +"Last-Translator: Rubén Trujillo <rubentrf@gmail.com>\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" @@ -25,11 +26,11 @@ msgstr "Expirar todas las versiones" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "Versiones" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "Esto eliminará todas las versiones guardadas como copia de seguridad de tus archivos" #: templates/settings.php:3 msgid "Enable Files Versioning" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index 016a35e522b..a98b88c383d 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -4,13 +4,14 @@ # # Translators: # <juanma@kde.org.ar>, 2012. +# Rubén Trujillo <rubentrf@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 18:23+0000\n" +"Last-Translator: Rubén Trujillo <rubentrf@gmail.com>\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" @@ -115,12 +116,12 @@ msgstr "hace años" #: updater.php:66 #, php-format msgid "%s is available. Get <a href=\"%s\">more information</a>" -msgstr "" +msgstr "%s está disponible. Obtén <a href=\"%s\">más información</a>" #: updater.php:68 msgid "up to date" -msgstr "" +msgstr "actualizado" #: updater.php:71 msgid "updates check is disabled" -msgstr "" +msgstr "comprobar actualizaciones está desactivado" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index a55e35b1248..030414a8b3b 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 18:24+0000\n" +"Last-Translator: Rubén Trujillo <rubentrf@gmail.com>\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" @@ -155,7 +155,7 @@ msgid "" "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>." -msgstr "" +msgstr "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>." #: templates/apps.php:10 msgid "Add your App" diff --git a/l10n/fr/files_versions.po b/l10n/fr/files_versions.po index 0a1701812e7..70771893524 100644 --- a/l10n/fr/files_versions.po +++ b/l10n/fr/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 16:41+0000\n" +"Last-Translator: Romain DEP. <rom1dep@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" @@ -24,11 +24,11 @@ msgstr "Supprimer les versions intermédiaires" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "Versions" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "Cette opération va effacer toutes les versions intermédiaires de vos fichiers (et ne garder que la dernière version en date)." #: templates/settings.php:3 msgid "Enable Files Versioning" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index 5b9ac2ed7fa..7eaa311dfda 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 16:36+0000\n" +"Last-Translator: Romain DEP. <rom1dep@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" @@ -116,12 +116,12 @@ msgstr "il y a plusieurs années" #: updater.php:66 #, php-format msgid "%s is available. Get <a href=\"%s\">more information</a>" -msgstr "" +msgstr "%s est disponible. Obtenez <a href=\"%s\">plus d'informations</a>" #: updater.php:68 msgid "up to date" -msgstr "" +msgstr "À jour" #: updater.php:71 msgid "updates check is disabled" -msgstr "" +msgstr "la vérification des mises à jour est désactivée" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 542a7ea0b02..8f41df09e83 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 16:35+0000\n" +"Last-Translator: Romain DEP. <rom1dep@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" @@ -86,7 +86,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "Votre répertoire de données et vos fichiers sont probablement accessibles depuis internet. Le fichier .htaccess fourni avec ownCloud ne fonctionne pas. Nous vous recommandons vivement de configurer votre serveur web de façon à ce que ce répertoire ne soit plus accessible, ou bien de déplacer le répertoire de données à l'extérieur de la racine du serveur web." #: templates/admin.php:31 msgid "Cron" @@ -156,7 +156,7 @@ msgid "" "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>." -msgstr "" +msgstr "Développé par la <a href=\"http://ownCloud.org/contact\" target=\"_blank\">communauté ownCloud</a>, le <a href=\"https://github.com/owncloud\" target=\"_blank\">code source</a> est publié sous license <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." #: templates/apps.php:10 msgid "Add your App" diff --git a/l10n/it/files_versions.po b/l10n/it/files_versions.po index 586c50a741d..9e8a8ae6bb3 100644 --- a/l10n/it/files_versions.po +++ b/l10n/it/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 11:42+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,11 +24,11 @@ msgstr "Scadenza di tutte le versioni" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "Versioni" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "Ciò eliminerà tutte le versioni esistenti dei tuoi file" #: templates/settings.php:3 msgid "Enable Files Versioning" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 34568001b5d..a79176c2e14 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 11:46+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -83,7 +83,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "La cartella dei dati e i tuoi file sono probabilmente accessibili da Internet.\nIl file .htaccess fornito da ownCloud non funziona. Ti consigliamo vivamente di configurare il server web in modo che la cartella dei dati non sia più accessibile e spostare la cartella fuori dalla radice del server web." #: templates/admin.php:31 msgid "Cron" @@ -153,7 +153,7 @@ msgid "" "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>." -msgstr "" +msgstr "Sviluppato dalla <a href=\"http://ownCloud.org/contact\" target=\"_blank\">comunità di ownCloud</a>, il <a href=\"https://github.com/owncloud\" target=\"_blank\">codice sorgente</a> è licenziato nei termini della <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." #: templates/apps.php:10 msgid "Add your App" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 171120bab74..2a40cf05712 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -9,13 +9,14 @@ # <jos@gelauff.net>, 2012. # <koen@vervloesem.eu>, 2011. # <pietje8501@gmail.com>, 2012. +# Richard Bos <radoeka@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 20:13+0000\n" +"Last-Translator: Richard Bos <radoeka@gmail.com>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -235,7 +236,7 @@ msgstr "Naam databank" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "Database tablespace" #: templates/installation.php:115 msgid "Database host" diff --git a/l10n/nl/files_versions.po b/l10n/nl/files_versions.po index 257098e81fb..9e4a68ec09b 100644 --- a/l10n/nl/files_versions.po +++ b/l10n/nl/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 20:09+0000\n" +"Last-Translator: Richard Bos <radoeka@gmail.com>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,11 +24,11 @@ msgstr "Alle versies laten verlopen" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "Versies" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "Dit zal alle bestaande backup versies van uw bestanden verwijderen" #: templates/settings.php:3 msgid "Enable Files Versioning" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index d7e354e9f4f..80648c52cf0 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 20:12+0000\n" +"Last-Translator: Richard Bos <radoeka@gmail.com>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -115,12 +115,12 @@ msgstr "jaar geleden" #: updater.php:66 #, php-format msgid "%s is available. Get <a href=\"%s\">more information</a>" -msgstr "" +msgstr "%s is beschikbaar. Verkrijg <a href=\"%s\">meer informatie</a>" #: updater.php:68 msgid "up to date" -msgstr "" +msgstr "Bijgewerkt" #: updater.php:71 msgid "updates check is disabled" -msgstr "" +msgstr "Meest recente versie controle is uitgeschakeld" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 997e9e8f8e4..796ab42e63e 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 12:52+0000\n" +"Last-Translator: Daniel Sandman <revoltism@gmail.com>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -83,7 +83,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "Din datamapp och dina filer kan möjligen vara nåbara från internet. Filen .htaccess som ownCloud tillhandahåller fungerar inte. Vi rekommenderar starkt att du ställer in din webbserver på ett sätt så att datamappen inte är nåbar. Alternativt att ni flyttar datamappen utanför webbservern." #: templates/admin.php:31 msgid "Cron" @@ -153,7 +153,7 @@ msgid "" "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>." -msgstr "" +msgstr "Utvecklad av <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud kommunity</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">källkoden</a> är licenserad under <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." #: templates/apps.php:10 msgid "Add your App" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 952661ec2cd..ee6aa77b12d 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"POT-Creation-Date: 2012-09-02 02:01+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.pot b/l10n/templates/files.pot index 89e2e6fd427..39453f66ed9 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"POT-Creation-Date: 2012-09-02 02:01+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 bcc4c1f4851..18a12f4b7d6 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"POT-Creation-Date: 2012-09-02 02:01+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 e1bf8b89706..794c132aaf4 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"POT-Creation-Date: 2012-09-02 02:01+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 c184445e561..b78bed0cb85 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"POT-Creation-Date: 2012-09-02 02:01+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 41fa04d0eb3..7536c6fd395 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"POT-Creation-Date: 2012-09-02 02:01+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 5daeff661a9..580fc07f7b3 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"POT-Creation-Date: 2012-09-02 02:01+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 a44d444bc8d..eca1559ddbc 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"POT-Creation-Date: 2012-09-02 02:01+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 56b6b0067ba..eb372a1f029 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" +"POT-Creation-Date: 2012-09-02 02:01+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/tr/files.po b/l10n/tr/files.po index 31e1b22ebfe..94595a995e7 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -4,15 +4,16 @@ # # Translators: # Aranel Surion <aranel@aranelsurion.org>, 2011, 2012. +# Caner Başaran <basaran.caner@gmail.com>, 2012. # Emre <emresaracoglu@live.com>, 2012. # Necdet Yücel <necdetyucel@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 13:44+0000\n" +"Last-Translator: Caner Başaran <basaran.caner@gmail.com>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -60,23 +61,23 @@ msgstr "Sil" #: js/filelist.js:141 msgid "already exists" -msgstr "" +msgstr "zaten mevcut" #: js/filelist.js:141 msgid "replace" -msgstr "" +msgstr "değiştir" #: js/filelist.js:141 msgid "cancel" -msgstr "" +msgstr "iptal" #: js/filelist.js:195 msgid "replaced" -msgstr "" +msgstr "değiştirildi" #: js/filelist.js:195 msgid "with" -msgstr "" +msgstr "ile" #: js/filelist.js:195 js/filelist.js:246 msgid "undo" @@ -109,7 +110,7 @@ msgstr "Yükleme iptal edildi." #: js/files.js:409 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Dosya yükleme işlemi sürüyor. Şimdi sayfadan ayrılırsanız işleminiz iptal olur." #: js/files.js:480 msgid "Invalid name, '/' is not allowed." diff --git a/l10n/zh_TW/files_encryption.po b/l10n/zh_TW/files_encryption.po index 86ca709cfa6..1da95b438b9 100644 --- a/l10n/zh_TW/files_encryption.po +++ b/l10n/zh_TW/files_encryption.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# ywang <ywang1007@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 14:48+0000\n" +"Last-Translator: ywang <ywang1007@gmail.com>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,16 +20,16 @@ msgstr "" #: templates/settings.php:3 msgid "Encryption" -msgstr "" +msgstr "加密" #: templates/settings.php:4 msgid "Exclude the following file types from encryption" -msgstr "" +msgstr "下列的檔案類型不加密" #: templates/settings.php:5 msgid "None" -msgstr "" +msgstr "無" #: templates/settings.php:10 msgid "Enable Encryption" -msgstr "" +msgstr "啟用加密" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index 750304e5a1b..7e0c4b47b64 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# <ywang1007+transifex@gmail.com>, 2012. # ywang <ywang1007@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 13:47+0000\n" +"Last-Translator: ywang <ywang1007@gmail.com>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -115,12 +116,12 @@ msgstr "幾年前" #: updater.php:66 #, php-format msgid "%s is available. Get <a href=\"%s\">more information</a>" -msgstr "" +msgstr "%s 已經可用. 取得 <a href=\"%s\">更多資訊</a>" #: updater.php:68 msgid "up to date" -msgstr "" +msgstr "最新的" #: updater.php:71 msgid "updates check is disabled" -msgstr "" +msgstr "檢查更新已停用" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index e4c0e92c2d2..bdb4435bdf0 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -5,13 +5,14 @@ # Translators: # Donahue Chuang <soshinwu@gmail.com>, 2012. # <weiyu871@ms14.url.com.tw>, 2012. +# ywang <ywang1007@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"PO-Revision-Date: 2012-09-01 13:53+0000\n" +"Last-Translator: ywang <ywang1007@gmail.com>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,15 +22,15 @@ msgstr "" #: ajax/apps/ocs.php:23 msgid "Unable to load list from App Store" -msgstr "" +msgstr "無法從 App Store 讀取清單" #: ajax/lostpassword.php:14 msgid "Email saved" -msgstr "" +msgstr "Email已儲存" #: ajax/lostpassword.php:16 msgid "Invalid email" -msgstr "" +msgstr "無效的email" #: ajax/openid.php:16 msgid "OpenID Changed" @@ -41,7 +42,7 @@ msgstr "無效請求" #: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 msgid "Authentication error" -msgstr "" +msgstr "認證錯誤" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -49,19 +50,19 @@ msgstr "語言已變更" #: js/apps.js:18 msgid "Error" -msgstr "" +msgstr "錯誤" #: js/apps.js:39 js/apps.js:73 msgid "Disable" -msgstr "" +msgstr "停用" #: js/apps.js:39 js/apps.js:62 msgid "Enable" -msgstr "" +msgstr "啟用" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "儲存中..." #: personal.php:46 personal.php:47 msgid "__language_name__" @@ -69,7 +70,7 @@ msgstr "__語言_名稱__" #: templates/admin.php:14 msgid "Security Warning" -msgstr "" +msgstr "安全性警告" #: templates/admin.php:17 msgid "" @@ -160,7 +161,7 @@ msgstr "選擇一個應用程式" #: templates/apps.php:29 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "查看應用程式頁面於 apps.owncloud.com" #: templates/apps.php:30 msgid "-licensed" diff --git a/lib/l10n/es.php b/lib/l10n/es.php index 174fe0720fd..6d2a310ca3b 100644 --- a/lib/l10n/es.php +++ b/lib/l10n/es.php @@ -21,5 +21,8 @@ "last month" => "este mes", "months ago" => "hace meses", "last year" => "este año", -"years ago" => "hace años" +"years ago" => "hace años", +"%s is available. Get <a href=\"%s\">more information</a>" => "%s está disponible. Obtén <a href=\"%s\">más información</a>", +"up to date" => "actualizado", +"updates check is disabled" => "comprobar actualizaciones está desactivado" ); diff --git a/lib/l10n/fr.php b/lib/l10n/fr.php index c674b79b959..c10259e6376 100644 --- a/lib/l10n/fr.php +++ b/lib/l10n/fr.php @@ -21,5 +21,8 @@ "last month" => "le mois dernier", "months ago" => "il y a plusieurs mois", "last year" => "l'année dernière", -"years ago" => "il y a plusieurs années" +"years ago" => "il y a plusieurs années", +"%s is available. Get <a href=\"%s\">more information</a>" => "%s est disponible. Obtenez <a href=\"%s\">plus d'informations</a>", +"up to date" => "À jour", +"updates check is disabled" => "la vérification des mises à jour est désactivée" ); diff --git a/lib/l10n/nl.php b/lib/l10n/nl.php index 01bc4d3e19f..a90fc6caa6c 100644 --- a/lib/l10n/nl.php +++ b/lib/l10n/nl.php @@ -21,5 +21,8 @@ "last month" => "vorige maand", "months ago" => "maanden geleden", "last year" => "vorig jaar", -"years ago" => "jaar geleden" +"years ago" => "jaar geleden", +"%s is available. Get <a href=\"%s\">more information</a>" => "%s is beschikbaar. Verkrijg <a href=\"%s\">meer informatie</a>", +"up to date" => "Bijgewerkt", +"updates check is disabled" => "Meest recente versie controle is uitgeschakeld" ); diff --git a/lib/l10n/zh_TW.php b/lib/l10n/zh_TW.php index 008c9483a00..c9a26a53b2a 100644 --- a/lib/l10n/zh_TW.php +++ b/lib/l10n/zh_TW.php @@ -21,5 +21,8 @@ "last month" => "上個月", "months ago" => "幾個月前", "last year" => "去年", -"years ago" => "幾年前" +"years ago" => "幾年前", +"%s is available. Get <a href=\"%s\">more information</a>" => "%s 已經可用. 取得 <a href=\"%s\">更多資訊</a>", +"up to date" => "最新的", +"updates check is disabled" => "檢查更新已停用" ); diff --git a/settings/l10n/de.php b/settings/l10n/de.php index 6d1d28fa2e8..8ca01243e5d 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -27,6 +27,7 @@ "Allow users to only share with users in their groups" => "Erlaube Nutzern nur das Teilen in ihrer Gruppe", "Log" => "Log", "More" => "Mehr", +"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>." => "Entwickelt von der <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud-Community</a>, der <a href=\"https://github.com/owncloud\" target=\"_blank\">Quellcode</a> ist unter der <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> lizenziert.", "Add your App" => "Fügen Sie Ihre App hinzu", "Select an App" => "Wählen Sie eine Anwendung aus", "See application page at apps.owncloud.com" => "Weitere Anwendungen finden Sie auf apps.owncloud.com", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index d86dc3663ad..be496cd9647 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -27,6 +27,7 @@ "Allow users to only share with users in their groups" => "Permitir a los usuarios compartir con usuarios en sus grupos", "Log" => "Registro", "More" => "Más", +"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ñade tu aplicación", "Select an App" => "Seleccionar una aplicación", "See application page at apps.owncloud.com" => "Echa un vistazo a la web de aplicaciones apps.owncloud.com", diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index 81fb9f56a2b..235c5430df1 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -12,6 +12,7 @@ "Saving..." => "Sauvegarde...", "__language_name__" => "Français", "Security Warning" => "Alertes de sécurité", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Votre répertoire de données et vos fichiers sont probablement accessibles depuis internet. Le fichier .htaccess fourni avec ownCloud ne fonctionne pas. Nous vous recommandons vivement de configurer votre serveur web de façon à ce que ce répertoire ne soit plus accessible, ou bien de déplacer le répertoire de données à l'extérieur de la racine du serveur web.", "Cron" => "Cron", "execute one task with each page loaded" => "exécuter une tâche pour chaque page chargée", "cron.php is registered at a webcron service" => "cron.php est enregistré comme un service webcron", @@ -27,6 +28,7 @@ "Allow users to only share with users in their groups" => "Autoriser les utilisateurs à ne partager qu'avec les utilisateurs dans leurs groupes", "Log" => "Journaux", "More" => "Plus", +"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>." => "Développé par la <a href=\"http://ownCloud.org/contact\" target=\"_blank\">communauté ownCloud</a>, le <a href=\"https://github.com/owncloud\" target=\"_blank\">code source</a> est publié sous license <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" => "Ajoutez votre application", "Select an App" => "Sélectionner une Application", "See application page at apps.owncloud.com" => "Voir la page des applications à l'url apps.owncloud.com", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index 64df0cd9d42..dc42c009993 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -12,6 +12,7 @@ "Saving..." => "Salvataggio in corso...", "__language_name__" => "Italiano", "Security Warning" => "Avviso di sicurezza", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "La cartella dei dati e i tuoi file sono probabilmente accessibili da Internet.\nIl file .htaccess fornito da ownCloud non funziona. Ti consigliamo vivamente di configurare il server web in modo che la cartella dei dati non sia più accessibile e spostare la cartella fuori dalla radice del server web.", "Cron" => "Cron", "execute one task with each page loaded" => "esegui un'attività con ogni pagina caricata", "cron.php is registered at a webcron service" => "cron.php è registrato a un servizio webcron", @@ -27,6 +28,7 @@ "Allow users to only share with users in their groups" => "Consenti agli utenti di condividere con gli utenti del proprio gruppo", "Log" => "Registro", "More" => "Altro", +"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>." => "Sviluppato dalla <a href=\"http://ownCloud.org/contact\" target=\"_blank\">comunità di ownCloud</a>, il <a href=\"https://github.com/owncloud\" target=\"_blank\">codice sorgente</a> è licenziato nei termini della <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" => "Aggiungi la tua applicazione", "Select an App" => "Seleziona un'applicazione", "See application page at apps.owncloud.com" => "Vedere la pagina dell'applicazione su apps.owncloud.com", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index 4a1d1b2c474..74b5406f804 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -12,6 +12,7 @@ "Saving..." => "Sparar...", "__language_name__" => "__language_name__", "Security Warning" => "Säkerhetsvarning", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Din datamapp och dina filer kan möjligen vara nåbara från internet. Filen .htaccess som ownCloud tillhandahåller fungerar inte. Vi rekommenderar starkt att du ställer in din webbserver på ett sätt så att datamappen inte är nåbar. Alternativt att ni flyttar datamappen utanför webbservern.", "Cron" => "Cron", "execute one task with each page loaded" => "utför en uppgift vid varje sidladdning", "cron.php is registered at a webcron service" => "cron.php är registrerad på en webcron-tjänst", @@ -27,6 +28,7 @@ "Allow users to only share with users in their groups" => "Tillåt bara delning med användare i egna grupper", "Log" => "Logg", "More" => "Mera", +"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>." => "Utvecklad av <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud kommunity</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">källkoden</a> är licenserad under <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" => "Lägg till din applikation", "Select an App" => "Välj en App", "See application page at apps.owncloud.com" => "Se programsida på apps.owncloud.com", diff --git a/settings/l10n/zh_TW.php b/settings/l10n/zh_TW.php index 0218133f65a..f0b0de7d731 100644 --- a/settings/l10n/zh_TW.php +++ b/settings/l10n/zh_TW.php @@ -1,12 +1,22 @@ <?php $TRANSLATIONS = array( +"Unable to load list from App Store" => "無法從 App Store 讀取清單", +"Email saved" => "Email已儲存", +"Invalid email" => "無效的email", "OpenID Changed" => "OpenID 已變更", "Invalid request" => "無效請求", +"Authentication error" => "認證錯誤", "Language changed" => "語言已變更", +"Error" => "錯誤", +"Disable" => "停用", +"Enable" => "啟用", +"Saving..." => "儲存中...", "__language_name__" => "__語言_名稱__", +"Security Warning" => "安全性警告", "Log" => "紀錄", "More" => "更多", "Add your App" => "添加你的 App", "Select an App" => "選擇一個應用程式", +"See application page at apps.owncloud.com" => "查看應用程式頁面於 apps.owncloud.com", "-licensed" => "-已許可", "by" => "由", "Documentation" => "文件", -- cgit v1.2.3 From d386e0172a54df88694a9f4942b651ce69a25058 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud <thomas.mueller@tmit.eu> Date: Mon, 3 Sep 2012 02:07:40 +0200 Subject: [tx-robot] updated from transifex --- apps/files/l10n/da.php | 1 + apps/files_versions/l10n/de.php | 1 + apps/files_versions/l10n/fi_FI.php | 2 ++ apps/files_versions/l10n/sl.php | 2 ++ apps/files_versions/l10n/sv.php | 2 ++ apps/files_versions/l10n/th_TH.php | 2 ++ core/l10n/da.php | 1 + l10n/da/core.po | 9 +++++---- l10n/da/files.po | 9 +++++---- l10n/da/settings.po | 29 +++++++++++++++-------------- l10n/de/files_versions.po | 9 +++++---- l10n/de/settings.po | 12 ++++++------ l10n/fi_FI/files_versions.po | 10 +++++----- l10n/fi_FI/settings.po | 18 +++++++++--------- l10n/ru/lib.po | 9 +++++---- l10n/sl/files_versions.po | 10 +++++----- l10n/sl/settings.po | 10 +++++----- l10n/sv/files_versions.po | 10 +++++----- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/th_TH/files_versions.po | 10 +++++----- l10n/th_TH/lib.po | 12 ++++++------ l10n/th_TH/settings.po | 10 +++++----- lib/l10n/ru.php | 3 ++- lib/l10n/th_TH.php | 5 ++++- settings/l10n/da.php | 11 +++++++++++ settings/l10n/de.php | 5 +++-- settings/l10n/fi_FI.php | 6 ++++++ settings/l10n/sl.php | 2 ++ settings/l10n/th_TH.php | 2 ++ 37 files changed, 136 insertions(+), 94 deletions(-) (limited to 'core') diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index 56af0fa61d7..a842088e7b5 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -20,6 +20,7 @@ "Upload Error" => "Fejl ved upload", "Pending" => "Afventer", "Upload cancelled." => "Upload afbrudt.", +"File upload is in progress. Leaving the page now will cancel the upload." => "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret.", "Invalid name, '/' is not allowed." => "Ugyldigt navn, '/' er ikke tilladt.", "Size" => "Størrelse", "Modified" => "Ændret", diff --git a/apps/files_versions/l10n/de.php b/apps/files_versions/l10n/de.php index b1ba62a801f..2c15884d1b5 100644 --- a/apps/files_versions/l10n/de.php +++ b/apps/files_versions/l10n/de.php @@ -1,5 +1,6 @@ <?php $TRANSLATIONS = array( "Expire all versions" => "Alle Versionen löschen", "Versions" => "Versionen", +"This will delete all existing backup versions of your files" => "Dies löscht alle vorhandenen Sicherungsversionen Ihrer Dateien.", "Enable Files Versioning" => "Datei-Versionierung aktivieren" ); diff --git a/apps/files_versions/l10n/fi_FI.php b/apps/files_versions/l10n/fi_FI.php index c5092daf998..5cfcbf28bd4 100644 --- a/apps/files_versions/l10n/fi_FI.php +++ b/apps/files_versions/l10n/fi_FI.php @@ -1,4 +1,6 @@ <?php $TRANSLATIONS = array( "Expire all versions" => "Vanhenna kaikki versiot", +"Versions" => "Versiot", +"This will delete all existing backup versions of your files" => "Tämä poistaa kaikki tiedostojesi olemassa olevat varmuuskopioversiot", "Enable Files Versioning" => "Käytä tiedostojen versiointia" ); diff --git a/apps/files_versions/l10n/sl.php b/apps/files_versions/l10n/sl.php index e7db55930c1..aec6edb3c22 100644 --- a/apps/files_versions/l10n/sl.php +++ b/apps/files_versions/l10n/sl.php @@ -1,4 +1,6 @@ <?php $TRANSLATIONS = array( "Expire all versions" => "Zastaraj vse različice", +"Versions" => "Različice", +"This will delete all existing backup versions of your files" => "To bo izbrisalo vse obstoječe različice varnostnih kopij vaših datotek", "Enable Files Versioning" => "Omogoči sledenje različicam datotek" ); diff --git a/apps/files_versions/l10n/sv.php b/apps/files_versions/l10n/sv.php index 03d4d54d0b9..5788d8ae197 100644 --- a/apps/files_versions/l10n/sv.php +++ b/apps/files_versions/l10n/sv.php @@ -1,4 +1,6 @@ <?php $TRANSLATIONS = array( "Expire all versions" => "Upphör alla versioner", +"Versions" => "Versioner", +"This will delete all existing backup versions of your files" => "Detta kommer att radera alla befintliga säkerhetskopior av dina filer", "Enable Files Versioning" => "Aktivera versionshantering" ); diff --git a/apps/files_versions/l10n/th_TH.php b/apps/files_versions/l10n/th_TH.php index e880840f4b9..4f26e3bd035 100644 --- a/apps/files_versions/l10n/th_TH.php +++ b/apps/files_versions/l10n/th_TH.php @@ -1,4 +1,6 @@ <?php $TRANSLATIONS = array( "Expire all versions" => "หมดอายุทุกรุ่น", +"Versions" => "รุ่น", +"This will delete all existing backup versions of your files" => "นี่จะเป็นลบทิ้งไฟล์รุ่นที่ทำการสำรองข้อมูลทั้งหมดที่มีอยู่ของคุณทิ้งไป", "Enable Files Versioning" => "เปิดใช้งานคุณสมบัติการแยกสถานะรุ่นหรือเวอร์ชั่นของไฟล์" ); diff --git a/core/l10n/da.php b/core/l10n/da.php index 5e62b5b95db..398ebdb670c 100644 --- a/core/l10n/da.php +++ b/core/l10n/da.php @@ -51,6 +51,7 @@ "Database user" => "Databasebruger", "Database password" => "Databasekodeord", "Database name" => "Navn på database", +"Database tablespace" => "Database tabelplads", "Database host" => "Databasehost", "Finish setup" => "Afslut opsætning", "web services under your control" => "Webtjenester under din kontrol", diff --git a/l10n/da/core.po b/l10n/da/core.po index 383cb162d33..542e8425faf 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -6,15 +6,16 @@ # <mikkelbjerglarsen@gmail.com>, 2011, 2012. # Morten Juhl-Johansen Zölde-Fejér <morten@writtenandread.net>, 2011, 2012. # Pascal d'Hermilly <pascal@dhermilly.dk>, 2011. +# <simon@rosmi.dk>, 2012. # Thomas Tanghus <>, 2012. # Thomas Tanghus <thomas@tanghus.net>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-03 02:04+0200\n" +"PO-Revision-Date: 2012-09-02 14:21+0000\n" +"Last-Translator: muunsim <simon@rosmi.dk>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -234,7 +235,7 @@ msgstr "Navn på database" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "Database tabelplads" #: templates/installation.php:115 msgid "Database host" diff --git a/l10n/da/files.po b/l10n/da/files.po index 777667d6f5f..de51c340b83 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -5,15 +5,16 @@ # Translators: # Morten Juhl-Johansen Zölde-Fejér <morten@writtenandread.net>, 2011, 2012. # Pascal d'Hermilly <pascal@dhermilly.dk>, 2011. +# <simon@rosmi.dk>, 2012. # Thomas Tanghus <>, 2012. # Thomas Tanghus <thomas@tanghus.net>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-03 02:04+0200\n" +"PO-Revision-Date: 2012-09-02 14:21+0000\n" +"Last-Translator: muunsim <simon@rosmi.dk>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -110,7 +111,7 @@ msgstr "Upload afbrudt." #: js/files.js:409 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret." #: js/files.js:480 msgid "Invalid name, '/' is not allowed." diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 58ca661b315..0e6fe9214b5 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -7,6 +7,7 @@ # <mikkelbjerglarsen@gmail.com>, 2011. # Morten Juhl-Johansen Zölde-Fejér <morten@writtenandread.net>, 2011, 2012. # Pascal d'Hermilly <pascal@dhermilly.dk>, 2011. +# <simon@rosmi.dk>, 2012. # <sr@ybnet.dk>, 2012. # Thomas Tanghus <>, 2012. # Thomas Tanghus <thomas@tanghus.net>, 2012. @@ -14,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-03 02:05+0200\n" +"PO-Revision-Date: 2012-09-02 14:13+0000\n" +"Last-Translator: muunsim <simon@rosmi.dk>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -91,7 +92,7 @@ msgstr "Cron" #: templates/admin.php:33 msgid "execute one task with each page loaded" -msgstr "" +msgstr "udfør en opgave for hver indlæst side" #: templates/admin.php:35 msgid "cron.php is registered at a webcron service" @@ -99,31 +100,31 @@ msgstr "cron.php er tilmeldt en webcron tjeneste" #: templates/admin.php:37 msgid "use systems cron service" -msgstr "" +msgstr "brug systemets cron service" #: templates/admin.php:41 msgid "Share API" -msgstr "" +msgstr "Del API" #: templates/admin.php:46 msgid "Enable Share API" -msgstr "" +msgstr "Aktiver dele API" #: templates/admin.php:47 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Tillad apps a bruge dele APIen" #: templates/admin.php:51 msgid "Allow links" -msgstr "" +msgstr "Tillad links" #: templates/admin.php:52 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Tillad brugere at dele elementer med offentligheden med links" #: templates/admin.php:56 msgid "Allow resharing" -msgstr "" +msgstr "Tillad gendeling" #: templates/admin.php:57 msgid "Allow users to share items shared with them again" @@ -131,11 +132,11 @@ msgstr "" #: templates/admin.php:60 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Tillad brugere at dele med hvem som helst" #: templates/admin.php:62 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Tillad kun deling med brugere i brugerens egen gruppe" #: templates/admin.php:69 msgid "Log" @@ -289,7 +290,7 @@ msgstr "Andet" #: templates/users.php:80 templates/users.php:112 msgid "Group Admin" -msgstr "" +msgstr "Gruppe Administrator" #: templates/users.php:82 msgid "Quota" diff --git a/l10n/de/files_versions.po b/l10n/de/files_versions.po index 773e4b2c44d..f4e27ec5144 100644 --- a/l10n/de/files_versions.po +++ b/l10n/de/files_versions.po @@ -4,14 +4,15 @@ # # Translators: # I Robot <thomas.mueller@tmit.eu>, 2012. +# <niko@nik-o-mat.de>, 2012. # <thomas.mueller@tmit.eu>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-02 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 11:47+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-03 02:04+0200\n" +"PO-Revision-Date: 2012-09-02 06:01+0000\n" +"Last-Translator: JamFX <niko@nik-o-mat.de>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,7 +30,7 @@ msgstr "Versionen" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "Dies löscht alle vorhandenen Sicherungsversionen Ihrer Dateien." #: templates/settings.php:3 msgid "Enable Files Versioning" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index b99b4b03c5d..4f41b94c0d1 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-02 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 11:46+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-03 02:05+0200\n" +"PO-Revision-Date: 2012-09-02 20:12+0000\n" +"Last-Translator: traductor <transifex.3.mensaje@spamgourmet.com>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,7 +86,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "Ihr Datenverzeichnis ist möglicher Weise aus dem Internet erreichbar. Die .htaccess-Datei von OwnCloud funktioniert nicht. Wir raten Ihnen dringend, dass Sie Ihren Webserver dahingehend konfigurieren, dass Ihr Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder Sie verschieben das Datenverzeichnis außerhalb des Wurzelverzeichnisses des Webservers." #: templates/admin.php:31 msgid "Cron" @@ -114,7 +114,7 @@ msgstr "Teilungs-API aktivieren" #: templates/admin.php:47 msgid "Allow apps to use the Share API" -msgstr "Erlaubt Nutzern die Teilungs-API zu nutzen" +msgstr "Erlaubt Nutzern, die Teilungs-API zu nutzen" #: templates/admin.php:51 msgid "Allow links" @@ -122,7 +122,7 @@ msgstr "Links erlauben" #: templates/admin.php:52 msgid "Allow users to share items to the public with links" -msgstr "Erlaube Nutzern Dateien mithilfe von Links mit der Öffentlichkeit zu teilen" +msgstr "Erlaube Nutzern, Dateien mithilfe von Links mit der Öffentlichkeit zu teilen" #: templates/admin.php:56 msgid "Allow resharing" diff --git a/l10n/fi_FI/files_versions.po b/l10n/fi_FI/files_versions.po index f5badf4ae77..7d47ae42141 100644 --- a/l10n/fi_FI/files_versions.po +++ b/l10n/fi_FI/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-03 02:04+0200\n" +"PO-Revision-Date: 2012-09-02 15:39+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,11 +24,11 @@ msgstr "Vanhenna kaikki versiot" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "Versiot" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "Tämä poistaa kaikki tiedostojesi olemassa olevat varmuuskopioversiot" #: templates/settings.php:3 msgid "Enable Files Versioning" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 98c69430bb8..b2d28143e9d 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/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: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-03 02:05+0200\n" +"PO-Revision-Date: 2012-09-02 15:47+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -110,15 +110,15 @@ msgstr "" #: templates/admin.php:51 msgid "Allow links" -msgstr "" +msgstr "Salli linkit" #: templates/admin.php:52 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Salli käyttäjien jakaa kohteita julkisesti linkkejä käyttäen" #: templates/admin.php:56 msgid "Allow resharing" -msgstr "" +msgstr "Salli uudelleenjako" #: templates/admin.php:57 msgid "Allow users to share items shared with them again" @@ -126,11 +126,11 @@ msgstr "" #: templates/admin.php:60 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Salli käyttäjien jakaa kohteita kenen tahansa kanssa" #: templates/admin.php:62 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Salli käyttäjien jakaa kohteita vain omien ryhmien jäsenten kesken" #: templates/admin.php:69 msgid "Log" @@ -148,7 +148,7 @@ msgid "" "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>." -msgstr "" +msgstr "Kehityksestä on vastannut <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud-yhteisö</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">lähdekoodi</a> on julkaistu lisenssin <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> alaisena." #: templates/apps.php:10 msgid "Add your App" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index e345d2c9749..9a75b9546ae 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -4,13 +4,14 @@ # # Translators: # Denis <reg.transifex.net@demitel.ru>, 2012. +# <mpolr21@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-03 02:04+0200\n" +"PO-Revision-Date: 2012-09-02 14:32+0000\n" +"Last-Translator: mPolr <mpolr21@gmail.com>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -123,4 +124,4 @@ msgstr "" #: updater.php:71 msgid "updates check is disabled" -msgstr "" +msgstr "проверка обновлений отключена" diff --git a/l10n/sl/files_versions.po b/l10n/sl/files_versions.po index a018b4cf423..d37dc15d09e 100644 --- a/l10n/sl/files_versions.po +++ b/l10n/sl/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-03 02:04+0200\n" +"PO-Revision-Date: 2012-09-02 02:04+0000\n" +"Last-Translator: Peter Peroša <peter.perosa@gmail.com>\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" @@ -24,11 +24,11 @@ msgstr "Zastaraj vse različice" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "Različice" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "To bo izbrisalo vse obstoječe različice varnostnih kopij vaših datotek" #: templates/settings.php:3 msgid "Enable Files Versioning" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 299979763bc..95cdc0a22a4 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-03 02:05+0200\n" +"PO-Revision-Date: 2012-09-02 02:00+0000\n" +"Last-Translator: Peter Peroša <peter.perosa@gmail.com>\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" @@ -79,7 +79,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "Vaša mapa data in vaše datoteke so verjetno vsem dostopne preko interneta. Datoteka .htaccess vključena v ownCloud ni omogočena. Močno vam priporočamo, da nastavite vaš spletni strežnik tako, da mapa data ne bo več na voljo vsem, ali pa jo preselite izven korenske mape spletnega strežnika." #: templates/admin.php:31 msgid "Cron" @@ -149,7 +149,7 @@ msgid "" "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>." -msgstr "" +msgstr "Razvit s strani <a href=\"http://ownCloud.org/contact\" target=\"_blank\">skupnosti ownCloud</a>. <a href=\"https://github.com/owncloud\" target=\"_blank\">Izvorna koda</a> je izdana pod licenco <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." #: templates/apps.php:10 msgid "Add your App" diff --git a/l10n/sv/files_versions.po b/l10n/sv/files_versions.po index 53aac5ef45d..29af9f4e970 100644 --- a/l10n/sv/files_versions.po +++ b/l10n/sv/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-03 02:04+0200\n" +"PO-Revision-Date: 2012-09-02 09:50+0000\n" +"Last-Translator: Magnus Höglund <magnus@linux.com>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,11 +24,11 @@ msgstr "Upphör alla versioner" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "Versioner" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "Detta kommer att radera alla befintliga säkerhetskopior av dina filer" #: templates/settings.php:3 msgid "Enable Files Versioning" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index ee6aa77b12d..2ab352a0a8d 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"POT-Creation-Date: 2012-09-03 02:04+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.pot b/l10n/templates/files.pot index 39453f66ed9..66d9dbcd1b9 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"POT-Creation-Date: 2012-09-03 02:04+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 18a12f4b7d6..5b047fcf46d 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"POT-Creation-Date: 2012-09-03 02:04+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 794c132aaf4..3f295496fd3 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"POT-Creation-Date: 2012-09-03 02:04+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 b78bed0cb85..d386ad1e35f 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"POT-Creation-Date: 2012-09-03 02:04+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 7536c6fd395..72af58b8b55 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"POT-Creation-Date: 2012-09-03 02:04+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 580fc07f7b3..3c27e4b0f88 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"POT-Creation-Date: 2012-09-03 02:04+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 eca1559ddbc..dcdeac2fdc9 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"POT-Creation-Date: 2012-09-03 02:05+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 eb372a1f029..a8e7af24122 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-02 02:01+0200\n" +"POT-Creation-Date: 2012-09-03 02:04+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/files_versions.po b/l10n/th_TH/files_versions.po index 178ff67a954..28f3effc2a2 100644 --- a/l10n/th_TH/files_versions.po +++ b/l10n/th_TH/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-03 02:04+0200\n" +"PO-Revision-Date: 2012-09-02 22:45+0000\n" +"Last-Translator: AriesAnywhere Anywhere <ariesanywhere@gmail.com>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,11 +24,11 @@ msgstr "หมดอายุทุกรุ่น" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "รุ่น" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "นี่จะเป็นลบทิ้งไฟล์รุ่นที่ทำการสำรองข้อมูลทั้งหมดที่มีอยู่ของคุณทิ้งไป" #: templates/settings.php:3 msgid "Enable Files Versioning" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index 93925a0b0d9..ea4639ff8f3 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-03 02:04+0200\n" +"PO-Revision-Date: 2012-09-02 22:43+0000\n" +"Last-Translator: AriesAnywhere Anywhere <ariesanywhere@gmail.com>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -115,12 +115,12 @@ msgstr "ปีที่ผ่านมา" #: updater.php:66 #, php-format msgid "%s is available. Get <a href=\"%s\">more information</a>" -msgstr "" +msgstr "%s พร้อมให้ใช้งานได้แล้ว. <a href=\"%s\">ดูรายละเอียดเพิ่มเติม</a>" #: updater.php:68 msgid "up to date" -msgstr "" +msgstr "ทันสมัย" #: updater.php:71 msgid "updates check is disabled" -msgstr "" +msgstr "การตรวจสอบชุดอัพเดทถูกปิดใช้งานไว้" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index fe1fc15e9ea..383a4a47c8b 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-03 02:05+0200\n" +"PO-Revision-Date: 2012-09-02 22:49+0000\n" +"Last-Translator: AriesAnywhere Anywhere <ariesanywhere@gmail.com>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -79,7 +79,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "ไดเร็กทอรี่ข้อมูลและไฟล์ของคุณสามารถเข้าถึงได้จากอินเทอร์เน็ต ไฟล์ .htaccess ที่ ownCloud มีให้ไม่สามารถทำงานได้อย่างเหมาะสม เราขอแนะนำให้คุณกำหนดค่าเว็บเซิร์ฟเวอร์ใหม่ในรูปแบบที่ไดเร็กทอรี่เก็บข้อมูลไม่สามารถเข้าถึงได้อีกต่อไป หรือคุณได้ย้ายไดเร็กทอรี่ที่ใช้เก็บข้อมูลไปอยู่ภายนอกตำแหน่ง root ของเว็บเซิร์ฟเวอร์แล้ว" #: templates/admin.php:31 msgid "Cron" @@ -149,7 +149,7 @@ msgid "" "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>." -msgstr "" +msgstr "พัฒนาโดย the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ชุมชนผู้ใช้งาน ownCloud</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">ซอร์สโค้ด</a>อยู่ภายใต้สัญญาอนุญาตของ <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." #: templates/apps.php:10 msgid "Add your App" diff --git a/lib/l10n/ru.php b/lib/l10n/ru.php index 07dacc598ae..3b2681ba8d1 100644 --- a/lib/l10n/ru.php +++ b/lib/l10n/ru.php @@ -21,5 +21,6 @@ "last month" => "в прошлом месяце", "months ago" => "месяцы назад", "last year" => "в прошлом году", -"years ago" => "годы назад" +"years ago" => "годы назад", +"updates check is disabled" => "проверка обновлений отключена" ); diff --git a/lib/l10n/th_TH.php b/lib/l10n/th_TH.php index cb2610fa204..2aa2ffaba8c 100644 --- a/lib/l10n/th_TH.php +++ b/lib/l10n/th_TH.php @@ -21,5 +21,8 @@ "last month" => "เดือนที่แล้ว", "months ago" => "เดือนมาแล้ว", "last year" => "ปีที่แล้ว", -"years ago" => "ปีที่ผ่านมา" +"years ago" => "ปีที่ผ่านมา", +"%s is available. Get <a href=\"%s\">more information</a>" => "%s พร้อมให้ใช้งานได้แล้ว. <a href=\"%s\">ดูรายละเอียดเพิ่มเติม</a>", +"up to date" => "ทันสมัย", +"updates check is disabled" => "การตรวจสอบชุดอัพเดทถูกปิดใช้งานไว้" ); diff --git a/settings/l10n/da.php b/settings/l10n/da.php index f17fb11fa7e..775087a7079 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -13,7 +13,17 @@ "__language_name__" => "Dansk", "Security Warning" => "Sikkerhedsadvarsel", "Cron" => "Cron", +"execute one task with each page loaded" => "udfør en opgave for hver indlæst side", "cron.php is registered at a webcron service" => "cron.php er tilmeldt en webcron tjeneste", +"use systems cron service" => "brug systemets cron service", +"Share API" => "Del API", +"Enable Share API" => "Aktiver dele API", +"Allow apps to use the Share API" => "Tillad apps a bruge dele APIen", +"Allow links" => "Tillad links", +"Allow users to share items to the public with links" => "Tillad brugere at dele elementer med offentligheden med links", +"Allow resharing" => "Tillad gendeling", +"Allow users to share with anyone" => "Tillad brugere at dele med hvem som helst", +"Allow users to only share with users in their groups" => "Tillad kun deling med brugere i brugerens egen gruppe", "Log" => "Log", "More" => "Mere", "Add your App" => "Tilføj din App", @@ -49,6 +59,7 @@ "Create" => "Ny", "Default Quota" => "Standard kvote", "Other" => "Andet", +"Group Admin" => "Gruppe Administrator", "Quota" => "Kvote", "Delete" => "Slet" ); diff --git a/settings/l10n/de.php b/settings/l10n/de.php index 8ca01243e5d..68bdb81f55f 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -12,15 +12,16 @@ "Saving..." => "Speichern...", "__language_name__" => "Deutsch", "Security Warning" => "Sicherheitshinweis", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Ihr Datenverzeichnis ist möglicher Weise aus dem Internet erreichbar. Die .htaccess-Datei von OwnCloud funktioniert nicht. Wir raten Ihnen dringend, dass Sie Ihren Webserver dahingehend konfigurieren, dass Ihr Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder Sie verschieben das Datenverzeichnis außerhalb des Wurzelverzeichnisses des Webservers.", "Cron" => "Cron", "execute one task with each page loaded" => "Führe eine Aufgabe pro geladener Seite aus.", "cron.php is registered at a webcron service" => "cron.php ist beim Webcron-Service registriert", "use systems cron service" => "Nutze System-Cron-Service", "Share API" => "Teilungs-API", "Enable Share API" => "Teilungs-API aktivieren", -"Allow apps to use the Share API" => "Erlaubt Nutzern die Teilungs-API zu nutzen", +"Allow apps to use the Share API" => "Erlaubt Nutzern, die Teilungs-API zu nutzen", "Allow links" => "Links erlauben", -"Allow users to share items to the public with links" => "Erlaube Nutzern Dateien mithilfe von Links mit der Öffentlichkeit zu teilen", +"Allow users to share items to the public with links" => "Erlaube Nutzern, Dateien mithilfe von Links mit der Öffentlichkeit zu teilen", "Allow resharing" => "Erneutes Teilen erlauben", "Allow users to share items shared with them again" => "Erlaubt Nutzern, Dateien die mit ihnen geteilt wurden, erneut zu teilen", "Allow users to share with anyone" => "Erlaube Nutzern mit jedem zu Teilen", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index bfcf1a59dda..0ca490d8d51 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -13,8 +13,14 @@ "Security Warning" => "Turvallisuusvaroitus", "Cron" => "Cron", "use systems cron service" => "käytä järjestelmän cron-palvelua", +"Allow links" => "Salli linkit", +"Allow users to share items to the public with links" => "Salli käyttäjien jakaa kohteita julkisesti linkkejä käyttäen", +"Allow resharing" => "Salli uudelleenjako", +"Allow users to share with anyone" => "Salli käyttäjien jakaa kohteita kenen tahansa kanssa", +"Allow users to only share with users in their groups" => "Salli käyttäjien jakaa kohteita vain omien ryhmien jäsenten kesken", "Log" => "Loki", "More" => "Lisää", +"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>." => "Kehityksestä on vastannut <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud-yhteisö</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">lähdekoodi</a> on julkaistu lisenssin <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> alaisena.", "Add your App" => "Lisää ohjelmasi", "Select an App" => "Valitse ohjelma", "See application page at apps.owncloud.com" => "Katso sovellussivu osoitteessa apps.owncloud.com", diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index 884acaf576d..9dd7813cc13 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -12,6 +12,7 @@ "Saving..." => "Shranjevanje...", "__language_name__" => "__ime_jezika__", "Security Warning" => "Varnostno opozorilo", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Vaša mapa data in vaše datoteke so verjetno vsem dostopne preko interneta. Datoteka .htaccess vključena v ownCloud ni omogočena. Močno vam priporočamo, da nastavite vaš spletni strežnik tako, da mapa data ne bo več na voljo vsem, ali pa jo preselite izven korenske mape spletnega strežnika.", "Cron" => "Periodično opravilo", "execute one task with each page loaded" => "izvedi eno nalogo z vsako naloženo stranjo", "cron.php is registered at a webcron service" => "cron.php je vpisan na storitev webcron", @@ -27,6 +28,7 @@ "Allow users to only share with users in their groups" => "Uporabnikom dovoli souporabo le znotraj njihove skupine", "Log" => "Dnevnik", "More" => "Več", +"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>." => "Razvit s strani <a href=\"http://ownCloud.org/contact\" target=\"_blank\">skupnosti ownCloud</a>. <a href=\"https://github.com/owncloud\" target=\"_blank\">Izvorna koda</a> je izdana pod licenco <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" => "Dodajte vašo aplikacijo", "Select an App" => "Izberite aplikacijo", "See application page at apps.owncloud.com" => "Obiščite spletno stran aplikacije na apps.owncloud.com", diff --git a/settings/l10n/th_TH.php b/settings/l10n/th_TH.php index 6ab253362ef..862445524f5 100644 --- a/settings/l10n/th_TH.php +++ b/settings/l10n/th_TH.php @@ -12,6 +12,7 @@ "Saving..." => "กำลังบันทึุกข้อมูล...", "__language_name__" => "ภาษาไทย", "Security Warning" => "คำเตือนเกี่ยวกับความปลอดภัย", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "ไดเร็กทอรี่ข้อมูลและไฟล์ของคุณสามารถเข้าถึงได้จากอินเทอร์เน็ต ไฟล์ .htaccess ที่ ownCloud มีให้ไม่สามารถทำงานได้อย่างเหมาะสม เราขอแนะนำให้คุณกำหนดค่าเว็บเซิร์ฟเวอร์ใหม่ในรูปแบบที่ไดเร็กทอรี่เก็บข้อมูลไม่สามารถเข้าถึงได้อีกต่อไป หรือคุณได้ย้ายไดเร็กทอรี่ที่ใช้เก็บข้อมูลไปอยู่ภายนอกตำแหน่ง root ของเว็บเซิร์ฟเวอร์แล้ว", "Cron" => "Cron", "execute one task with each page loaded" => "ประมวลผลหนึ่งงานเมื่อโหลดหน้าเว็บแต่ละครั้ง", "cron.php is registered at a webcron service" => "cron.php ได้ถูกลงทะเบียนที่บริการ webcron", @@ -27,6 +28,7 @@ "Allow users to only share with users in their groups" => "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลได้เฉพาะกับผู้ใช้งานที่อยู่ในกลุ่มเดียวกันเท่านั้น", "Log" => "บันทึกการเปลี่ยนแปลง", "More" => "เพิ่มเติม", +"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>." => "พัฒนาโดย the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ชุมชนผู้ใช้งาน ownCloud</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">ซอร์สโค้ด</a>อยู่ภายใต้สัญญาอนุญาตของ <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" => "เพิ่มแอปของคุณ", "Select an App" => "เลือก App", "See application page at apps.owncloud.com" => "ดูหน้าแอพพลิเคชั่นที่ apps.owncloud.com", -- cgit v1.2.3 From 5153b8b293b5485b9aa3d321f6a93979ec302068 Mon Sep 17 00:00:00 2001 From: Bart Visscher <bartv@thisnet.nl> Date: Mon, 3 Sep 2012 19:12:52 +0200 Subject: Add url-params to url with new parameter in linkTo function --- apps/files_versions/templates/history.php | 2 +- core/lostpassword/index.php | 2 +- lib/search/provider/file.php | 10 +++++----- lib/util.php | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) (limited to 'core') diff --git a/apps/files_versions/templates/history.php b/apps/files_versions/templates/history.php index d4f875a36e8..99bc153a816 100644 --- a/apps/files_versions/templates/history.php +++ b/apps/files_versions/templates/history.php @@ -22,7 +22,7 @@ if( isset( $_['message'] ) ) { foreach ( $_['versions'] as $v ) { echo ' '; echo OCP\Util::formatDate( doubleval($v['version']) ); - echo ' <a href="'.OCP\Util::linkTo('files_versions', 'history.php').'?path='.urlencode( $_['path'] ).'&revert='. $v['version'] .'" class="button">Revert</a><br /><br />'; + echo ' <a href="'.OCP\Util::linkTo('files_versions', 'history.php', array('path' => urlencode( $_['path'] ), 'revert' => $v['version'])) .'" class="button">Revert</a><br /><br />'; if ( $v['cur'] ) { echo ' (<b>Current</b>)'; } echo '<br /><br />'; } diff --git a/core/lostpassword/index.php b/core/lostpassword/index.php index 8f86fe23aad..58dab597324 100644 --- a/core/lostpassword/index.php +++ b/core/lostpassword/index.php @@ -17,7 +17,7 @@ if (isset($_POST['user'])) { OC_Preferences::setValue($_POST['user'], 'owncloud', 'lostpassword', $token); $email = OC_Preferences::getValue($_POST['user'], 'settings', 'email', ''); if (!empty($email) and isset($_POST['sectoken']) and isset($_SESSION['sectoken']) and ($_POST['sectoken']==$_SESSION['sectoken']) ) { - $link = OC_Helper::linkToAbsolute('core/lostpassword', 'resetpassword.php').'?user='.urlencode($_POST['user']).'&token='.$token; + $link = OC_Helper::linkToAbsolute('core/lostpassword', 'resetpassword.php', array('user' => urlencode($_POST['user']), 'token' => $token)); $tmpl = new OC_Template('core/lostpassword', 'email'); $tmpl->assign('link', $link, false); $msg = $tmpl->fetchPage(); diff --git a/lib/search/provider/file.php b/lib/search/provider/file.php index a37af495599..12a535876fe 100644 --- a/lib/search/provider/file.php +++ b/lib/search/provider/file.php @@ -8,23 +8,23 @@ class OC_Search_Provider_File extends OC_Search_Provider{ $file=$fileData['path']; $mime=$fileData['mimetype']; if($mime=='httpd/unix-directory'){ - $results[]=new OC_Search_Result(basename($file),'',OC_Helper::linkTo( 'files', 'index.php' ).'?dir='.$file,'Files'); + $results[]=new OC_Search_Result(basename($file),'',OC_Helper::linkTo( 'files', 'index.php', array('dir' => $file)),'Files'); }else{ $mimeBase=$fileData['mimepart']; switch($mimeBase){ case 'audio': break; case 'text': - $results[]=new OC_Search_Result(basename($file),'',OC_Helper::linkTo( 'files', 'download.php' ).'?file='.$file,'Text'); + $results[]=new OC_Search_Result(basename($file),'',OC_Helper::linkTo( 'files', 'download.php', array('dir' => $file) ),'Text'); break; case 'image': - $results[]=new OC_Search_Result(basename($file),'',OC_Helper::linkTo( 'files', 'download.php' ).'?file='.$file,'Images'); + $results[]=new OC_Search_Result(basename($file),'',OC_Helper::linkTo( 'files', 'download.php', array('dir' => $file) ),'Images'); break; default: if($mime=='application/xml'){ - $results[]=new OC_Search_Result(basename($file),'',OC_Helper::linkTo( 'files', 'download.php' ).'?file='.$file,'Text'); + $results[]=new OC_Search_Result(basename($file),'',OC_Helper::linkTo( 'files', 'download.php', array('dir' => $file) ),'Text'); }else{ - $results[]=new OC_Search_Result(basename($file),'',OC_Helper::linkTo( 'files', 'download.php' ).'?file='.$file,'Files'); + $results[]=new OC_Search_Result(basename($file),'',OC_Helper::linkTo( 'files', 'download.php', array('dir' => $file) ),'Files'); } } } diff --git a/lib/util.php b/lib/util.php index 581b6bdb317..42a0f5c7df1 100755 --- a/lib/util.php +++ b/lib/util.php @@ -320,7 +320,7 @@ class OC_Util { public static function checkLoggedIn(){ // Check if we are a user if( !OC_User::isLoggedIn()){ - header( 'Location: '.OC_Helper::linkToAbsolute( '', 'index.php' ).'?redirect_url='.urlencode($_SERVER["REQUEST_URI"])); + header( 'Location: '.OC_Helper::linkToAbsolute( '', 'index.php', array('redirect_url' => urlencode($_SERVER["REQUEST_URI"])))); exit(); } } -- cgit v1.2.3 From b867b738e8772ac8806b031baccebf150d701dde Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud <thomas.mueller@tmit.eu> Date: Tue, 4 Sep 2012 02:03:21 +0200 Subject: [tx-robot] updated from transifex --- apps/files/l10n/fi_FI.php | 3 ++- apps/files/l10n/lb.php | 17 ++++++++++++ apps/files/l10n/pl.php | 1 + apps/files_sharing/l10n/eu.php | 1 + apps/files_sharing/l10n/fi_FI.php | 1 + apps/files_sharing/l10n/pl.php | 1 + apps/files_versions/l10n/ca.php | 2 ++ apps/files_versions/l10n/eu.php | 2 ++ apps/files_versions/l10n/ja_JP.php | 2 ++ apps/files_versions/l10n/pl.php | 2 ++ apps/user_ldap/l10n/es.php | 5 ++++ core/l10n/fi_FI.php | 2 ++ core/l10n/lb.php | 21 ++++++++++++++- core/l10n/pl.php | 1 + l10n/ca/files_versions.po | 12 ++++----- l10n/ca/lib.po | 34 ++++++++++++------------ l10n/ca/settings.po | 12 ++++----- l10n/es/settings.po | 12 ++++----- l10n/es/user_ldap.po | 20 +++++++------- l10n/eu/files_sharing.po | 12 ++++----- l10n/eu/files_versions.po | 12 ++++----- l10n/eu/lib.po | 34 ++++++++++++------------ l10n/eu/settings.po | 30 ++++++++++----------- l10n/fi_FI/core.po | 13 +++++----- l10n/fi_FI/files.po | 11 ++++---- l10n/fi_FI/files_sharing.po | 13 +++++----- l10n/fi_FI/settings.po | 27 +++++++++---------- l10n/ja_JP/files_versions.po | 12 ++++----- l10n/ja_JP/lib.po | 34 ++++++++++++------------ l10n/lb/core.po | 50 +++++++++++++++++------------------ l10n/lb/files.po | 44 +++++++++++++++---------------- l10n/lb/settings.po | 52 ++++++++++++++++++------------------- l10n/pl/core.po | 10 +++---- l10n/pl/files.po | 10 +++---- l10n/pl/files_sharing.po | 12 ++++----- l10n/pl/files_versions.po | 12 ++++----- l10n/pl/lib.po | 34 ++++++++++++------------ l10n/pl/settings.po | 18 ++++++------- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 4 +-- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 22 ++++++++-------- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- lib/l10n/ca.php | 5 +++- lib/l10n/eu.php | 5 +++- lib/l10n/ja_JP.php | 5 +++- lib/l10n/pl.php | 5 +++- settings/l10n/ca.php | 2 ++ settings/l10n/es.php | 1 + settings/l10n/eu.php | 11 ++++++++ settings/l10n/fi_FI.php | 9 +++++++ settings/l10n/lb.php | 21 +++++++++++++++ settings/l10n/pl.php | 5 ++++ 57 files changed, 412 insertions(+), 288 deletions(-) (limited to 'core') diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index 399adb0b1d7..3ed56de6419 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -47,5 +47,6 @@ "Download" => "Lataa", "Upload too large" => "Lähetettävä tiedosto on liian suuri", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Lähetettäväksi valitsemasi tiedostot ylittävät palvelimen salliman tiedostokoon rajan.", -"Files are being scanned, please wait." => "Tiedostoja tarkistetaan, odota hetki." +"Files are being scanned, please wait." => "Tiedostoja tarkistetaan, odota hetki.", +"Current scanning" => "Tämänhetkinen tutkinta" ); diff --git a/apps/files/l10n/lb.php b/apps/files/l10n/lb.php index f7a10fbc5cd..7c8244a8747 100644 --- a/apps/files/l10n/lb.php +++ b/apps/files/l10n/lb.php @@ -8,8 +8,25 @@ "Failed to write to disk" => "Konnt net op den Disk schreiwen", "Files" => "Dateien", "Delete" => "Läschen", +"already exists" => "existéiert schonn", +"replace" => "ersetzen", +"cancel" => "ofbriechen", +"replaced" => "ersat", +"with" => "mat", +"undo" => "réckgängeg man", +"deleted" => "geläscht", +"generating ZIP-file, it may take some time." => "Et gëtt eng ZIP-File generéiert, dëst ka bëssen daueren.", +"Unable to upload your file as it is a directory or has 0 bytes" => "Kann deng Datei net eroplueden well et en Dossier ass oder 0 byte grouss ass.", +"Upload Error" => "Fehler beim eroplueden", +"Upload cancelled." => "Upload ofgebrach.", +"File upload is in progress. Leaving the page now will cancel the upload." => "File Upload am gaang. Wann's de des Säit verléiss gëtt den Upload ofgebrach.", +"Invalid name, '/' is not allowed." => "Ongültege Numm, '/' net erlaabt.", "Size" => "Gréisst", "Modified" => "Geännert", +"folder" => "Dossier", +"folders" => "Dossieren", +"file" => "Datei", +"files" => "Dateien", "File handling" => "Fichier handling", "Maximum upload size" => "Maximum Upload Gréisst ", "max. possible: " => "max. méiglech:", diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index eb791330bfd..a95c995d252 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -20,6 +20,7 @@ "Upload Error" => "Błąd wczytywania", "Pending" => "Oczekujące", "Upload cancelled." => "Wczytywanie anulowane.", +"File upload is in progress. Leaving the page now will cancel the upload." => "Wysyłanie pliku jest w toku. Teraz opuszczając stronę wysyłanie zostanie anulowane.", "Invalid name, '/' is not allowed." => "Nieprawidłowa nazwa '/' jest niedozwolone.", "Size" => "Rozmiar", "Modified" => "Czas modyfikacji", diff --git a/apps/files_sharing/l10n/eu.php b/apps/files_sharing/l10n/eu.php index a1f810826c2..70ff2e8876c 100644 --- a/apps/files_sharing/l10n/eu.php +++ b/apps/files_sharing/l10n/eu.php @@ -2,5 +2,6 @@ "Password" => "Pasahitza", "Submit" => "Bidali", "Download" => "Deskargatu", +"No preview available for" => "Ez dago aurrebista eskuragarririk hauentzat ", "web services under your control" => "web zerbitzuak zure kontrolpean" ); diff --git a/apps/files_sharing/l10n/fi_FI.php b/apps/files_sharing/l10n/fi_FI.php index ce2c5932d48..85c6c7a7132 100644 --- a/apps/files_sharing/l10n/fi_FI.php +++ b/apps/files_sharing/l10n/fi_FI.php @@ -2,5 +2,6 @@ "Password" => "Salasana", "Submit" => "Lähetä", "Download" => "Lataa", +"No preview available for" => "Ei esikatselua kohteelle", "web services under your control" => "verkkopalvelut hallinnassasi" ); diff --git a/apps/files_sharing/l10n/pl.php b/apps/files_sharing/l10n/pl.php index 5810cc6d796..1d5e6261ef0 100644 --- a/apps/files_sharing/l10n/pl.php +++ b/apps/files_sharing/l10n/pl.php @@ -2,5 +2,6 @@ "Password" => "Hasło", "Submit" => "Wyślij", "Download" => "Pobierz", +"No preview available for" => "Podgląd nie jest dostępny dla", "web services under your control" => "Kontrolowane serwisy" ); diff --git a/apps/files_versions/l10n/ca.php b/apps/files_versions/l10n/ca.php index 8388556bec6..b6ddc6feecf 100644 --- a/apps/files_versions/l10n/ca.php +++ b/apps/files_versions/l10n/ca.php @@ -1,4 +1,6 @@ <?php $TRANSLATIONS = array( "Expire all versions" => "Expira totes les versions", +"Versions" => "Versions", +"This will delete all existing backup versions of your files" => "Això eliminarà totes les versions de còpia de seguretat dels vostres fitxers", "Enable Files Versioning" => "Habilita les versions de fitxers" ); diff --git a/apps/files_versions/l10n/eu.php b/apps/files_versions/l10n/eu.php index eacbdd09934..0f065c1e93c 100644 --- a/apps/files_versions/l10n/eu.php +++ b/apps/files_versions/l10n/eu.php @@ -1,4 +1,6 @@ <?php $TRANSLATIONS = array( "Expire all versions" => "Iraungi bertsio guztiak", +"Versions" => "Bertsioak", +"This will delete all existing backup versions of your files" => "Honek zure fitxategien bertsio guztiak ezabatuko ditu", "Enable Files Versioning" => "Gaitu fitxategien bertsioak" ); diff --git a/apps/files_versions/l10n/ja_JP.php b/apps/files_versions/l10n/ja_JP.php index ec5e32f3e29..81d17f56f8f 100644 --- a/apps/files_versions/l10n/ja_JP.php +++ b/apps/files_versions/l10n/ja_JP.php @@ -1,4 +1,6 @@ <?php $TRANSLATIONS = array( "Expire all versions" => "すべてのバージョンを削除する", +"Versions" => "バージョン", +"This will delete all existing backup versions of your files" => "これは、あなたのファイルのすべてのバックアップバージョンを削除します", "Enable Files Versioning" => "ファイルのバージョン管理を有効にする" ); diff --git a/apps/files_versions/l10n/pl.php b/apps/files_versions/l10n/pl.php index faf2d39e709..c25d37611a0 100644 --- a/apps/files_versions/l10n/pl.php +++ b/apps/files_versions/l10n/pl.php @@ -1,4 +1,6 @@ <?php $TRANSLATIONS = array( "Expire all versions" => "Wygasają wszystkie wersje", +"Versions" => "Wersje", +"This will delete all existing backup versions of your files" => "Spowoduje to usunięcie wszystkich istniejących wersji kopii zapasowych plików", "Enable Files Versioning" => "Włącz wersjonowanie plików" ); diff --git a/apps/user_ldap/l10n/es.php b/apps/user_ldap/l10n/es.php index 8d9c7f9ad38..c89ceb8eee2 100644 --- a/apps/user_ldap/l10n/es.php +++ b/apps/user_ldap/l10n/es.php @@ -7,10 +7,15 @@ "The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "El DN del usuario cliente con el que se hará la asociación, p.ej. uid=agente,dc=ejemplo,dc=com. Para acceso anónimo, deje DN y contraseña vacíos.", "Password" => "Contraseña", "For anonymous access, leave DN and Password empty." => "Para acceso anónimo, deje DN y contraseña vacíos.", +"User Login Filter" => "Filtro de inicio de sesión de usuario", +"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action." => "Define el filtro a aplicar cuando se ha realizado un login. %%uid remplazrá el nombre de usuario en el proceso de login.", +"use %%uid placeholder, e.g. \"uid=%%uid\"" => "usar %%uid como placeholder, ej: \"uid=%%uid\"", "User List Filter" => "Lista de filtros de usuario", "Defines the filter to apply, when retrieving users." => "Define el filtro a aplicar, cuando se obtienen usuarios.", +"without any placeholder, e.g. \"objectClass=person\"." => "Sin placeholder, ej: \"objectClass=person\".", "Group Filter" => "Filtro de grupo", "Defines the filter to apply, when retrieving groups." => "Define el filtro a aplicar, cuando se obtienen grupos.", +"without any placeholder, e.g. \"objectClass=posixGroup\"." => "Con cualquier placeholder, ej: \"objectClass=posixGroup\".", "Port" => "Puerto", "Base User Tree" => "Árbol base de usuario", "Base Group Tree" => "Árbol base de grupo", diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php index 64bb4dca631..34a69b6c643 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -2,6 +2,7 @@ "Application name not provided." => "Sovelluksen nimeä ei määritelty.", "No category to add?" => "Ei lisättävää luokkaa?", "This category already exists: " => "Tämä luokka on jo olemassa: ", +"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Asetukset", "January" => "Tammikuu", "February" => "Helmikuu", @@ -50,6 +51,7 @@ "Database user" => "Tietokannan käyttäjä", "Database password" => "Tietokannan salasana", "Database name" => "Tietokannan nimi", +"Database tablespace" => "Tietokannan taulukkotila", "Database host" => "Tietokantapalvelin", "Finish setup" => "Viimeistele asennus", "web services under your control" => "verkkopalvelut hallinnassasi", diff --git a/core/l10n/lb.php b/core/l10n/lb.php index eafdcc37370..0959e0ed25f 100644 --- a/core/l10n/lb.php +++ b/core/l10n/lb.php @@ -3,6 +3,24 @@ "No category to add?" => "Keng Kategorie fir bäizesetzen?", "This category already exists: " => "Des Kategorie existéiert schonn:", "Settings" => "Astellungen", +"January" => "Januar", +"February" => "Februar", +"March" => "Mäerz", +"April" => "Abrëll", +"May" => "Mee", +"June" => "Juni", +"July" => "Juli", +"August" => "August", +"September" => "September", +"October" => "Oktober", +"November" => "November", +"December" => "Dezember", +"Cancel" => "Ofbriechen", +"No" => "Nee", +"Yes" => "Jo", +"Ok" => "OK", +"No categories selected for deletion." => "Keng Kategorien ausgewielt fir ze läschen.", +"Error" => "Fehler", "ownCloud password reset" => "ownCloud Passwuert reset", "Use the following link to reset your password: {link}" => "Benotz folgende Link fir däi Passwuert ze reseten: {link}", "You will receive a link to reset your password via Email." => "Du kriss en Link fir däin Passwuert nei ze setzen via Email geschéckt.", @@ -25,13 +43,14 @@ "Add" => "Bäisetzen", "Create an <strong>admin account</strong>" => "En <strong>Admin Account</strong> uleeën", "Password" => "Passwuert", -"Advanced" => "Erweidert", +"Advanced" => "Advanced", "Data folder" => "Daten Dossier", "Configure the database" => "Datebank konfiguréieren", "will be used" => "wärt benotzt ginn", "Database user" => "Datebank Benotzer", "Database password" => "Datebank Passwuert", "Database name" => "Datebank Numm", +"Database tablespace" => "Datebank Tabelle-Gréisst", "Database host" => "Datebank Server", "Finish setup" => "Installatioun ofschléissen", "web services under your control" => "Web Servicer ënnert denger Kontroll", diff --git a/core/l10n/pl.php b/core/l10n/pl.php index 4eb5f1f9ae9..2751b851524 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -51,6 +51,7 @@ "Database user" => "Użytkownik bazy danych", "Database password" => "Hasło do bazy danych", "Database name" => "Nazwa bazy danych", +"Database tablespace" => "Obszar tabel bazy danych", "Database host" => "Komputer bazy danych", "Finish setup" => "Zakończ konfigurowanie", "web services under your control" => "usługi internetowe pod kontrolą", diff --git a/l10n/ca/files_versions.po b/l10n/ca/files_versions.po index ae5ccd77e07..12b6059c7b6 100644 --- a/l10n/ca/files_versions.po +++ b/l10n/ca/files_versions.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 10:13+0000\n" +"Last-Translator: rogerc <rcalvoi@yahoo.com>\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ca\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -24,11 +24,11 @@ msgstr "Expira totes les versions" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "Versions" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "Això eliminarà totes les versions de còpia de seguretat dels vostres fitxers" #: templates/settings.php:3 msgid "Enable Files Versioning" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 2b24de63524..e43b91310b5 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 10:11+0000\n" +"Last-Translator: rogerc <rcalvoi@yahoo.com>\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ca\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: app.php:288 msgid "Help" @@ -70,57 +70,57 @@ msgstr "Error d'autenticació" msgid "Token expired. Please reload page." msgstr "El testimoni ha expirat. Torneu a carregar la pàgina." -#: template.php:86 +#: template.php:87 msgid "seconds ago" msgstr "segons enrere" -#: template.php:87 +#: template.php:88 msgid "1 minute ago" msgstr "fa 1 minut" -#: template.php:88 +#: template.php:89 #, php-format msgid "%d minutes ago" msgstr "fa %d minuts" -#: template.php:91 +#: template.php:92 msgid "today" msgstr "avui" -#: template.php:92 +#: template.php:93 msgid "yesterday" msgstr "ahir" -#: template.php:93 +#: template.php:94 #, php-format msgid "%d days ago" msgstr "fa %d dies" -#: template.php:94 +#: template.php:95 msgid "last month" msgstr "el mes passat" -#: template.php:95 +#: template.php:96 msgid "months ago" msgstr "mesos enrere" -#: template.php:96 +#: template.php:97 msgid "last year" msgstr "l'any passat" -#: template.php:97 +#: template.php:98 msgid "years ago" msgstr "fa anys" #: updater.php:66 #, php-format msgid "%s is available. Get <a href=\"%s\">more information</a>" -msgstr "" +msgstr "%s està disponible. Obtén <a href=\"%s\">més informació</a>" #: updater.php:68 msgid "up to date" -msgstr "" +msgstr "actualitzat" #: updater.php:71 msgid "updates check is disabled" -msgstr "" +msgstr "la comprovació d'actualitzacions està desactivada" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 7e9e39e072f..e15a614d689 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 10:06+0000\n" +"Last-Translator: rogerc <rcalvoi@yahoo.com>\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ca\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/apps/ocs.php:23 msgid "Unable to load list from App Store" @@ -78,7 +78,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "La carpeta de dades i els vostres fitxersprobablement són accessibles des d'Internet. La fitxer .htaccess que ownCloud proporciona no funciona. Us recomanem que configureu el servidor web de tal manera que la carpeta de dades no sigui accessible o que moveu la carpeta de dades fora de l'arrel de documents del servidor web." #: templates/admin.php:31 msgid "Cron" @@ -148,7 +148,7 @@ msgid "" "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>." -msgstr "" +msgstr "Desenvolupat per la <a href=\"http://ownCloud.org/contact\" target=\"_blank\">comunitat ownCloud</a>, el <a href=\"https://github.com/owncloud\" target=\"_blank\">codi font</a> té llicència <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." #: templates/apps.php:10 msgid "Add your App" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 030414a8b3b..be7300b0457 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -5,7 +5,7 @@ # Translators: # <davidlopez.david@gmail.com>, 2012. # Javier Llorente <javier@opensuse.org>, 2012. -# <juanma@kde.org.ar>, 2011, 2012. +# <juanma@kde.org.ar>, 2011-2012. # <monty_2731@hotmail.com>, 2011. # oSiNaReF <>, 2012. # <rodrigo.calvo@gmail.com>, 2012. @@ -16,15 +16,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-02 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 18:24+0000\n" -"Last-Translator: Rubén Trujillo <rubentrf@gmail.com>\n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 04:35+0000\n" +"Last-Translator: juanman <juanma@kde.org.ar>\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" "Content-Transfer-Encoding: 8bit\n" "Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/apps/ocs.php:23 msgid "Unable to load list from App Store" @@ -85,7 +85,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "El directorio de datos -data- y sus archivos probablemente son accesibles desde internet. El archivo .htaccess que provee ownCloud no está funcionando. Recomendamos fuertemente que configure su servidor web de forma que el directorio de datos ya no sea accesible o mueva el directorio de datos fuera de la raíz de documentos del servidor web." #: templates/admin.php:31 msgid "Cron" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index e87843eac9c..fdf3b2be402 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -4,21 +4,23 @@ # # Translators: # Javier Llorente <javier@opensuse.org>, 2012. +# <juanma@kde.org.ar>, 2012. +# Raul Fernandez Garcia <raulfg3@gmail.com>, 2012. # Rubén Trujillo <rubentrf@gmail.com>, 2012. # <sergioballesterossolanas@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 23:04+0000\n" -"Last-Translator: Rubén Trujillo <rubentrf@gmail.com>\n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 14:15+0000\n" +"Last-Translator: Raul Fernandez Garcia <raulfg3@gmail.com>\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" "Content-Transfer-Encoding: 8bit\n" "Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:8 msgid "Host" @@ -58,19 +60,19 @@ msgstr "Para acceso anónimo, deje DN y contraseña vacíos." #: templates/settings.php:12 msgid "User Login Filter" -msgstr "" +msgstr "Filtro de inicio de sesión de usuario" #: templates/settings.php:12 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "" +msgstr "Define el filtro a aplicar cuando se ha realizado un login. %%uid remplazrá el nombre de usuario en el proceso de login." #: templates/settings.php:12 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "" +msgstr "usar %%uid como placeholder, ej: \"uid=%%uid\"" #: templates/settings.php:13 msgid "User List Filter" @@ -82,7 +84,7 @@ msgstr "Define el filtro a aplicar, cuando se obtienen usuarios." #: templates/settings.php:13 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "" +msgstr "Sin placeholder, ej: \"objectClass=person\"." #: templates/settings.php:14 msgid "Group Filter" @@ -94,7 +96,7 @@ msgstr "Define el filtro a aplicar, cuando se obtienen grupos." #: templates/settings.php:14 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "" +msgstr "Con cualquier placeholder, ej: \"objectClass=posixGroup\"." #: templates/settings.php:17 msgid "Port" diff --git a/l10n/eu/files_sharing.po b/l10n/eu/files_sharing.po index a519a3b4f4b..162fca43720 100644 --- a/l10n/eu/files_sharing.po +++ b/l10n/eu/files_sharing.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 13:00+0000\n" +"Last-Translator: asieriko <asieriko@gmail.com>\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" "Content-Transfer-Encoding: 8bit\n" "Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 msgid "Password" @@ -32,8 +32,8 @@ msgstr "Deskargatu" #: templates/public.php:18 msgid "No preview available for" -msgstr "" +msgstr "Ez dago aurrebista eskuragarririk hauentzat " -#: templates/public.php:23 +#: templates/public.php:25 msgid "web services under your control" msgstr "web zerbitzuak zure kontrolpean" diff --git a/l10n/eu/files_versions.po b/l10n/eu/files_versions.po index 357b26164df..0f7610079ce 100644 --- a/l10n/eu/files_versions.po +++ b/l10n/eu/files_versions.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 12:58+0000\n" +"Last-Translator: asieriko <asieriko@gmail.com>\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" "Content-Transfer-Encoding: 8bit\n" "Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -24,11 +24,11 @@ msgstr "Iraungi bertsio guztiak" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "Bertsioak" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "Honek zure fitxategien bertsio guztiak ezabatuko ditu" #: templates/settings.php:3 msgid "Enable Files Versioning" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index c083e4f8654..1fd4db54aa2 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 13:06+0000\n" +"Last-Translator: asieriko <asieriko@gmail.com>\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" "Content-Transfer-Encoding: 8bit\n" "Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: app.php:288 msgid "Help" @@ -70,57 +70,57 @@ msgstr "Autentikazio errorea" msgid "Token expired. Please reload page." msgstr "Tokena iraungitu da. Mesedez birkargatu orria." -#: template.php:86 +#: template.php:87 msgid "seconds ago" msgstr "orain dela segundu batzuk" -#: template.php:87 +#: template.php:88 msgid "1 minute ago" msgstr "orain dela minutu 1" -#: template.php:88 +#: template.php:89 #, php-format msgid "%d minutes ago" msgstr "orain dela %d minutu" -#: template.php:91 +#: template.php:92 msgid "today" msgstr "gaur" -#: template.php:92 +#: template.php:93 msgid "yesterday" msgstr "atzo" -#: template.php:93 +#: template.php:94 #, php-format msgid "%d days ago" msgstr "orain dela %d egun" -#: template.php:94 +#: template.php:95 msgid "last month" msgstr "joan den hilabetea" -#: template.php:95 +#: template.php:96 msgid "months ago" msgstr "orain dela hilabete batzuk" -#: template.php:96 +#: template.php:97 msgid "last year" msgstr "joan den urtea" -#: template.php:97 +#: template.php:98 msgid "years ago" msgstr "orain dela urte batzuk" #: updater.php:66 #, php-format msgid "%s is available. Get <a href=\"%s\">more information</a>" -msgstr "" +msgstr "%s eskuragarri dago. Lortu <a href=\"%s\">informazio gehiago</a>" #: updater.php:68 msgid "up to date" -msgstr "" +msgstr "eguneratuta" #: updater.php:71 msgid "updates check is disabled" -msgstr "" +msgstr "eguneraketen egiaztapena ez dago gaituta" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index f069773c1d7..b22e432ec73 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 13:05+0000\n" +"Last-Translator: asieriko <asieriko@gmail.com>\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" "Content-Transfer-Encoding: 8bit\n" "Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/apps/ocs.php:23 msgid "Unable to load list from App Store" @@ -79,7 +79,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "Zure data karpeta eta zure fitxategiak internetetik zuzenean eskuragarri egon daitezke. ownCloudek emandako .htaccess fitxategia ez du bere lana egiten. Aholkatzen dizugu zure web zerbitzaria ongi konfiguratzea data karpeta eskuragarri ez izateko edo data karpeta web zerbitzariaren dokumentu errotik mugitzea." #: templates/admin.php:31 msgid "Cron" @@ -99,39 +99,39 @@ msgstr "erabili sistemaren cron zerbitzua" #: templates/admin.php:41 msgid "Share API" -msgstr "" +msgstr "Partekatze APIa" #: templates/admin.php:46 msgid "Enable Share API" -msgstr "" +msgstr "Gaitu Partekatze APIa" #: templates/admin.php:47 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Baimendu aplikazioak Partekatze APIa erabiltzeko" #: templates/admin.php:51 msgid "Allow links" -msgstr "" +msgstr "Baimendu loturak" #: templates/admin.php:52 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Baimendu erabiltzaileak loturen bidez fitxategiak publikoki partekatzen" #: templates/admin.php:56 msgid "Allow resharing" -msgstr "" +msgstr "Baimendu birpartekatzea" #: templates/admin.php:57 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "Baimendu erabiltzaileak haiekin partekatutako fitxategiak berriz ere partekatzen" #: templates/admin.php:60 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Baimendu erabiltzaileak edonorekin partekatzen" #: templates/admin.php:62 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Baimendu erabiltzaileak bakarrik bere taldeko erabiltzaileekin partekatzen" #: templates/admin.php:69 msgid "Log" @@ -149,7 +149,7 @@ msgid "" "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>." -msgstr "" +msgstr "<a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud komunitateak</a> garatuta, <a href=\"https://github.com/owncloud\" target=\"_blank\">itubruru kodea</a><a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr> lizentziarekin banatzen da</a>." #: templates/apps.php:10 msgid "Add your App" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 6ad322c5cc7..7506e66bc4e 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -7,20 +7,21 @@ # Jiri Grönroos <jiri.gronroos@iki.fi>, 2012. # Johannes Korpela <>, 2012. # Pekka Sutela <pekka.sutela@gmail.com>, 2012. +# <tehoratopato@gmail.com>, 2012. # <tscooter@hotmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 16:24+0000\n" +"Last-Translator: teho <tehoratopato@gmail.com>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -36,7 +37,7 @@ msgstr "Tämä luokka on jo olemassa: " #: js/jquery-ui-1.8.16.custom.min.js:511 msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" +msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" #: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" @@ -234,7 +235,7 @@ msgstr "Tietokannan nimi" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "Tietokannan taulukkotila" #: templates/installation.php:115 msgid "Database host" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index d9cca99c90c..4bac70c1c2b 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -6,20 +6,21 @@ # Jesse Jaara <jesse.jaara@gmail.com>, 2012. # Jiri Grönroos <jiri.gronroos@iki.fi>, 2012. # Johannes Korpela <>, 2012. +# <tehoratopato@gmail.com>, 2012. # <tscooter@hotmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 10:00+0000\n" -"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 16:25+0000\n" +"Last-Translator: teho <tehoratopato@gmail.com>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -224,4 +225,4 @@ msgstr "Tiedostoja tarkistetaan, odota hetki." #: templates/index.php:74 msgid "Current scanning" -msgstr "" +msgstr "Tämänhetkinen tutkinta" diff --git a/l10n/fi_FI/files_sharing.po b/l10n/fi_FI/files_sharing.po index 252458e4cb1..f55a4520322 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.po @@ -4,19 +4,20 @@ # # Translators: # Jiri Grönroos <jiri.gronroos@iki.fi>, 2012. +# <tehoratopato@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 15:46+0000\n" +"Last-Translator: teho <tehoratopato@gmail.com>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 msgid "Password" @@ -32,8 +33,8 @@ msgstr "Lataa" #: templates/public.php:18 msgid "No preview available for" -msgstr "" +msgstr "Ei esikatselua kohteelle" -#: templates/public.php:23 +#: templates/public.php:25 msgid "web services under your control" msgstr "verkkopalvelut hallinnassasi" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index b2d28143e9d..528da08db5c 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -5,23 +5,24 @@ # Translators: # Jesse Jaara <jesse.jaara@gmail.com>, 2012. # Jiri Grönroos <jiri.gronroos@iki.fi>, 2012. +# <tehoratopato@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-03 02:05+0200\n" -"PO-Revision-Date: 2012-09-02 15:47+0000\n" -"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 16:42+0000\n" +"Last-Translator: teho <tehoratopato@gmail.com>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/apps/ocs.php:23 msgid "Unable to load list from App Store" -msgstr "" +msgstr "Ei pystytä lataamaan listaa sovellusvarastosta (App Store)" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -78,7 +79,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "Data-kansio ja tiedostot ovat ehkä saavutettavissa Internetistä. .htaccess-tiedosto, jolla kontrolloidaan pääsyä, ei toimi. Suosittelemme, että muutat web-palvelimesi asetukset niin ettei data-kansio ole enää pääsyä tai siirrät data-kansion pois web-palvelimen tiedostojen juuresta." #: templates/admin.php:31 msgid "Cron" @@ -86,11 +87,11 @@ msgstr "Cron" #: templates/admin.php:33 msgid "execute one task with each page loaded" -msgstr "" +msgstr "suorita yksi tehtävä jokaisella ladatulla sivulla" #: templates/admin.php:35 msgid "cron.php is registered at a webcron service" -msgstr "" +msgstr "cron.php on rekisteröity webcron-palvelulla" #: templates/admin.php:37 msgid "use systems cron service" @@ -98,15 +99,15 @@ msgstr "käytä järjestelmän cron-palvelua" #: templates/admin.php:41 msgid "Share API" -msgstr "" +msgstr "Jaon ohelmointirajapinta (Share API)" #: templates/admin.php:46 msgid "Enable Share API" -msgstr "" +msgstr "Ota käyttöön jaon ohjelmoitirajapinta (Share API)" #: templates/admin.php:47 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Salli sovellusten käyttää jaon ohjelmointirajapintaa (Share API)" #: templates/admin.php:51 msgid "Allow links" @@ -122,7 +123,7 @@ msgstr "Salli uudelleenjako" #: templates/admin.php:57 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "Salli käyttäjien jakaa heille itselleen jaettuja tietoja edelleen" #: templates/admin.php:60 msgid "Allow users to share with anyone" @@ -284,7 +285,7 @@ msgstr "Muu" #: templates/users.php:80 templates/users.php:112 msgid "Group Admin" -msgstr "" +msgstr "Ryhmän ylläpitäjä" #: templates/users.php:82 msgid "Quota" diff --git a/l10n/ja_JP/files_versions.po b/l10n/ja_JP/files_versions.po index bed89934fbc..a2dc0289007 100644 --- a/l10n/ja_JP/files_versions.po +++ b/l10n/ja_JP/files_versions.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 15:56+0000\n" +"Last-Translator: Daisuke Deguchi <ddeguchi@is.nagoya-u.ac.jp>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -24,11 +24,11 @@ msgstr "すべてのバージョンを削除する" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "バージョン" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "これは、あなたのファイルのすべてのバックアップバージョンを削除します" #: templates/settings.php:3 msgid "Enable Files Versioning" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index a2197a29945..d9b410fa885 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 15:55+0000\n" +"Last-Translator: Daisuke Deguchi <ddeguchi@is.nagoya-u.ac.jp>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: app.php:288 msgid "Help" @@ -70,57 +70,57 @@ msgstr "認証エラー" msgid "Token expired. Please reload page." msgstr "トークンが無効になりました。ページを再読込してください。" -#: template.php:86 +#: template.php:87 msgid "seconds ago" msgstr "秒前" -#: template.php:87 +#: template.php:88 msgid "1 minute ago" msgstr "1分前" -#: template.php:88 +#: template.php:89 #, php-format msgid "%d minutes ago" msgstr "%d 分前" -#: template.php:91 +#: template.php:92 msgid "today" msgstr "今日" -#: template.php:92 +#: template.php:93 msgid "yesterday" msgstr "昨日" -#: template.php:93 +#: template.php:94 #, php-format msgid "%d days ago" msgstr "%d 日前" -#: template.php:94 +#: template.php:95 msgid "last month" msgstr "先月" -#: template.php:95 +#: template.php:96 msgid "months ago" msgstr "月前" -#: template.php:96 +#: template.php:97 msgid "last year" msgstr "昨年" -#: template.php:97 +#: template.php:98 msgid "years ago" msgstr "年前" #: updater.php:66 #, php-format msgid "%s is available. Get <a href=\"%s\">more information</a>" -msgstr "" +msgstr "%s が利用可能です。<a href=\"%s\">詳細情報</a> を確認ください" #: updater.php:68 msgid "up to date" -msgstr "" +msgstr "最新です" #: updater.php:71 msgid "updates check is disabled" -msgstr "" +msgstr "更新チェックは無効です" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index fbc1cddc1c7..a9de0752461 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -3,20 +3,20 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# <sim0n@trypill.org>, 2011, 2012. +# <sim0n@trypill.org>, 2011-2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 21:47+0000\n" +"Last-Translator: sim0n <sim0n@trypill.org>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: lb\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -40,75 +40,75 @@ msgstr "Astellungen" #: js/js.js:591 msgid "January" -msgstr "" +msgstr "Januar" #: js/js.js:591 msgid "February" -msgstr "" +msgstr "Februar" #: js/js.js:591 msgid "March" -msgstr "" +msgstr "Mäerz" #: js/js.js:591 msgid "April" -msgstr "" +msgstr "Abrëll" #: js/js.js:591 msgid "May" -msgstr "" +msgstr "Mee" #: js/js.js:591 msgid "June" -msgstr "" +msgstr "Juni" #: js/js.js:592 msgid "July" -msgstr "" +msgstr "Juli" #: js/js.js:592 msgid "August" -msgstr "" +msgstr "August" #: js/js.js:592 msgid "September" -msgstr "" +msgstr "September" #: js/js.js:592 msgid "October" -msgstr "" +msgstr "Oktober" #: js/js.js:592 msgid "November" -msgstr "" +msgstr "November" #: js/js.js:592 msgid "December" -msgstr "" +msgstr "Dezember" #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" -msgstr "" +msgstr "Ofbriechen" #: js/oc-dialogs.js:159 msgid "No" -msgstr "" +msgstr "Nee" #: js/oc-dialogs.js:160 msgid "Yes" -msgstr "" +msgstr "Jo" #: js/oc-dialogs.js:177 msgid "Ok" -msgstr "" +msgstr "OK" #: js/oc-vcategories.js:68 msgid "No categories selected for deletion." -msgstr "" +msgstr "Keng Kategorien ausgewielt fir ze läschen." #: js/oc-vcategories.js:68 msgid "Error" -msgstr "" +msgstr "Fehler" #: lostpassword/index.php:26 msgid "ownCloud password reset" @@ -201,7 +201,7 @@ msgstr "Passwuert" #: templates/installation.php:36 msgid "Advanced" -msgstr "Erweidert" +msgstr "Advanced" #: templates/installation.php:38 msgid "Data folder" @@ -230,7 +230,7 @@ msgstr "Datebank Numm" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "Datebank Tabelle-Gréisst" #: templates/installation.php:115 msgid "Database host" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index ae57349ec9e..45773897b67 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -3,20 +3,20 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# <sim0n@trypill.org>, 2011, 2012. +# <sim0n@trypill.org>, 2011-2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 21:52+0000\n" +"Last-Translator: sim0n <sim0n@trypill.org>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: lb\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -58,43 +58,43 @@ msgstr "Läschen" #: js/filelist.js:141 msgid "already exists" -msgstr "" +msgstr "existéiert schonn" #: js/filelist.js:141 msgid "replace" -msgstr "" +msgstr "ersetzen" #: js/filelist.js:141 msgid "cancel" -msgstr "" +msgstr "ofbriechen" #: js/filelist.js:195 msgid "replaced" -msgstr "" +msgstr "ersat" #: js/filelist.js:195 msgid "with" -msgstr "" +msgstr "mat" #: js/filelist.js:195 js/filelist.js:246 msgid "undo" -msgstr "" +msgstr "réckgängeg man" #: js/filelist.js:246 msgid "deleted" -msgstr "" +msgstr "geläscht" #: js/files.js:179 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "Et gëtt eng ZIP-File generéiert, dëst ka bëssen daueren." #: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "Kann deng Datei net eroplueden well et en Dossier ass oder 0 byte grouss ass." #: js/files.js:208 msgid "Upload Error" -msgstr "" +msgstr "Fehler beim eroplueden" #: js/files.js:236 js/files.js:327 js/files.js:356 msgid "Pending" @@ -102,16 +102,16 @@ msgstr "" #: js/files.js:341 msgid "Upload cancelled." -msgstr "" +msgstr "Upload ofgebrach." #: js/files.js:409 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "File Upload am gaang. Wann's de des Säit verléiss gëtt den Upload ofgebrach." #: js/files.js:480 msgid "Invalid name, '/' is not allowed." -msgstr "" +msgstr "Ongültege Numm, '/' net erlaabt." #: js/files.js:726 templates/index.php:55 msgid "Size" @@ -123,19 +123,19 @@ msgstr "Geännert" #: js/files.js:754 msgid "folder" -msgstr "" +msgstr "Dossier" #: js/files.js:756 msgid "folders" -msgstr "" +msgstr "Dossieren" #: js/files.js:764 msgid "file" -msgstr "" +msgstr "Datei" #: js/files.js:766 msgid "files" -msgstr "" +msgstr "Dateien" #: templates/admin.php:5 msgid "File handling" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 46b0f23beb3..ce3cde89a09 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -3,32 +3,32 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# <sim0n@trypill.org>, 2011, 2012. +# <sim0n@trypill.org>, 2011-2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 21:57+0000\n" +"Last-Translator: sim0n <sim0n@trypill.org>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: lb\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/apps/ocs.php:23 msgid "Unable to load list from App Store" -msgstr "" +msgstr "Konnt Lescht net vum App Store lueden" #: ajax/lostpassword.php:14 msgid "Email saved" -msgstr "" +msgstr "E-mail gespäichert" #: ajax/lostpassword.php:16 msgid "Invalid email" -msgstr "" +msgstr "Ongülteg e-mail" #: ajax/openid.php:16 msgid "OpenID Changed" @@ -40,7 +40,7 @@ msgstr "Ongülteg Requête" #: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 msgid "Authentication error" -msgstr "" +msgstr "Authentifikatioun's Fehler" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -48,19 +48,19 @@ msgstr "Sprooch huet geännert" #: js/apps.js:18 msgid "Error" -msgstr "" +msgstr "Fehler" #: js/apps.js:39 js/apps.js:73 msgid "Disable" -msgstr "" +msgstr "Ofschalten" #: js/apps.js:39 js/apps.js:62 msgid "Enable" -msgstr "" +msgstr "Aschalten" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "Speicheren..." #: personal.php:46 personal.php:47 msgid "__language_name__" @@ -68,7 +68,7 @@ msgstr "__language_name__" #: templates/admin.php:14 msgid "Security Warning" -msgstr "" +msgstr "Sécherheets Warnung" #: templates/admin.php:17 msgid "" @@ -81,7 +81,7 @@ msgstr "" #: templates/admin.php:31 msgid "Cron" -msgstr "" +msgstr "Cron" #: templates/admin.php:33 msgid "execute one task with each page loaded" @@ -89,27 +89,27 @@ msgstr "" #: templates/admin.php:35 msgid "cron.php is registered at a webcron service" -msgstr "" +msgstr "cron.php ass als en webcron Service registréiert" #: templates/admin.php:37 msgid "use systems cron service" -msgstr "" +msgstr "benotz den systems cron Service" #: templates/admin.php:41 msgid "Share API" -msgstr "" +msgstr "Share API" #: templates/admin.php:46 msgid "Enable Share API" -msgstr "" +msgstr "Share API aschalten" #: templates/admin.php:47 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Erlab Apps d'Share API ze benotzen" #: templates/admin.php:51 msgid "Allow links" -msgstr "" +msgstr "Links erlaben" #: templates/admin.php:52 msgid "Allow users to share items to the public with links" @@ -117,7 +117,7 @@ msgstr "" #: templates/admin.php:56 msgid "Allow resharing" -msgstr "" +msgstr "Resharing erlaben" #: templates/admin.php:57 msgid "Allow users to share items shared with them again" @@ -125,11 +125,11 @@ msgstr "" #: templates/admin.php:60 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Useren erlaben mat egal wiem ze sharen" #: templates/admin.php:62 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Useren nëmmen erlaben mat Useren aus hirer Grupp ze sharen" #: templates/admin.php:69 msgid "Log" @@ -159,7 +159,7 @@ msgstr "Wiel eng Applikatioun aus" #: templates/apps.php:29 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "Kuck dir d'Applicatioun's Säit op apps.owncloud.com un" #: templates/apps.php:30 msgid "-licensed" @@ -283,7 +283,7 @@ msgstr "Aner" #: templates/users.php:80 templates/users.php:112 msgid "Group Admin" -msgstr "" +msgstr "Gruppen Admin" #: templates/users.php:82 msgid "Quota" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 39c80a75e61..3889b13622d 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -13,15 +13,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:02+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 06:40+0000\n" +"Last-Translator: Cyryl Sochacki <>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -235,7 +235,7 @@ msgstr "Nazwa bazy danych" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "Obszar tabel bazy danych" #: templates/installation.php:115 msgid "Database host" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 652fd350165..02f24afbe72 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -11,15 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 06:33+0000\n" +"Last-Translator: Cyryl Sochacki <>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -110,7 +110,7 @@ msgstr "Wczytywanie anulowane." #: js/files.js:409 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Wysyłanie pliku jest w toku. Teraz opuszczając stronę wysyłanie zostanie anulowane." #: js/files.js:480 msgid "Invalid name, '/' is not allowed." diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index 0cb14cf441b..fee8ef8b65a 100644 --- a/l10n/pl/files_sharing.po +++ b/l10n/pl/files_sharing.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 07:03+0000\n" +"Last-Translator: Cyryl Sochacki <>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/authenticate.php:4 msgid "Password" @@ -33,8 +33,8 @@ msgstr "Pobierz" #: templates/public.php:18 msgid "No preview available for" -msgstr "" +msgstr "Podgląd nie jest dostępny dla" -#: templates/public.php:23 +#: templates/public.php:25 msgid "web services under your control" msgstr "Kontrolowane serwisy" diff --git a/l10n/pl/files_versions.po b/l10n/pl/files_versions.po index 9db71f8d1a4..ea579c0b6a4 100644 --- a/l10n/pl/files_versions.po +++ b/l10n/pl/files_versions.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 06:57+0000\n" +"Last-Translator: Cyryl Sochacki <>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -24,11 +24,11 @@ msgstr "Wygasają wszystkie wersje" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "Wersje" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "Spowoduje to usunięcie wszystkich istniejących wersji kopii zapasowych plików" #: templates/settings.php:3 msgid "Enable Files Versioning" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index cea78bc05fa..09263ad142c 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 07:02+0000\n" +"Last-Translator: Cyryl Sochacki <>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: app.php:288 msgid "Help" @@ -70,57 +70,57 @@ msgstr "Błąd uwierzytelniania" msgid "Token expired. Please reload page." msgstr "Token wygasł. Proszę ponownie załadować stronę." -#: template.php:86 +#: template.php:87 msgid "seconds ago" msgstr "sekund temu" -#: template.php:87 +#: template.php:88 msgid "1 minute ago" msgstr "1 minutę temu" -#: template.php:88 +#: template.php:89 #, php-format msgid "%d minutes ago" msgstr "%d minut temu" -#: template.php:91 +#: template.php:92 msgid "today" msgstr "dzisiaj" -#: template.php:92 +#: template.php:93 msgid "yesterday" msgstr "wczoraj" -#: template.php:93 +#: template.php:94 #, php-format msgid "%d days ago" msgstr "%d dni temu" -#: template.php:94 +#: template.php:95 msgid "last month" msgstr "ostatni miesiąc" -#: template.php:95 +#: template.php:96 msgid "months ago" msgstr "miesięcy temu" -#: template.php:96 +#: template.php:97 msgid "last year" msgstr "ostatni rok" -#: template.php:97 +#: template.php:98 msgid "years ago" msgstr "lat temu" #: updater.php:66 #, php-format msgid "%s is available. Get <a href=\"%s\">more information</a>" -msgstr "" +msgstr "%s jest dostępna. Uzyskaj <a href=\"%s\">więcej informacji</a>" #: updater.php:68 msgid "up to date" -msgstr "" +msgstr "Aktualne" #: updater.php:71 msgid "updates check is disabled" -msgstr "" +msgstr "wybór aktualizacji jest wyłączony" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 8afec9db2af..3eb675060a7 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -14,15 +14,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-04 02:01+0200\n" +"PO-Revision-Date: 2012-09-03 07:00+0000\n" +"Last-Translator: Cyryl Sochacki <>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: ajax/apps/ocs.php:23 msgid "Unable to load list from App Store" @@ -103,19 +103,19 @@ msgstr "korzystaj z usługi systemowej cron" #: templates/admin.php:41 msgid "Share API" -msgstr "" +msgstr "Udostępnij API" #: templates/admin.php:46 msgid "Enable Share API" -msgstr "" +msgstr "Włącz udostępniane API" #: templates/admin.php:47 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Zezwalaj aplikacjom na używanie API" #: templates/admin.php:51 msgid "Allow links" -msgstr "" +msgstr "Zezwalaj na łącza" #: templates/admin.php:52 msgid "Allow users to share items to the public with links" @@ -123,7 +123,7 @@ msgstr "" #: templates/admin.php:56 msgid "Allow resharing" -msgstr "" +msgstr "Zezwól na ponowne udostępnianie" #: templates/admin.php:57 msgid "Allow users to share items shared with them again" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 2ab352a0a8d..136685c098f 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-03 02:04+0200\n" +"POT-Creation-Date: 2012-09-04 02:01+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.pot b/l10n/templates/files.pot index 66d9dbcd1b9..2c15a9049b4 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-03 02:04+0200\n" +"POT-Creation-Date: 2012-09-04 02:01+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 5b047fcf46d..7346533735d 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-03 02:04+0200\n" +"POT-Creation-Date: 2012-09-04 02:01+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 3f295496fd3..a4d2244600e 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-03 02:04+0200\n" +"POT-Creation-Date: 2012-09-04 02:01+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 d386ad1e35f..cffd3fd5052 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-03 02:04+0200\n" +"POT-Creation-Date: 2012-09-04 02:01+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" @@ -33,6 +33,6 @@ msgstr "" msgid "No preview available for" msgstr "" -#: templates/public.php:23 +#: templates/public.php:25 msgid "web services under your control" msgstr "" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 72af58b8b55..88f3182b3e8 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-03 02:04+0200\n" +"POT-Creation-Date: 2012-09-04 02:01+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 3c27e4b0f88..82b69d86b88 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-03 02:04+0200\n" +"POT-Creation-Date: 2012-09-04 02:01+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" @@ -69,45 +69,45 @@ msgstr "" msgid "Token expired. Please reload page." msgstr "" -#: template.php:86 +#: template.php:87 msgid "seconds ago" msgstr "" -#: template.php:87 +#: template.php:88 msgid "1 minute ago" msgstr "" -#: template.php:88 +#: template.php:89 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:91 +#: template.php:92 msgid "today" msgstr "" -#: template.php:92 +#: template.php:93 msgid "yesterday" msgstr "" -#: template.php:93 +#: template.php:94 #, php-format msgid "%d days ago" msgstr "" -#: template.php:94 +#: template.php:95 msgid "last month" msgstr "" -#: template.php:95 +#: template.php:96 msgid "months ago" msgstr "" -#: template.php:96 +#: template.php:97 msgid "last year" msgstr "" -#: template.php:97 +#: template.php:98 msgid "years ago" msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index dcdeac2fdc9..35a5a06eca4 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-03 02:05+0200\n" +"POT-Creation-Date: 2012-09-04 02:01+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 a8e7af24122..8a2113c6e11 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-03 02:04+0200\n" +"POT-Creation-Date: 2012-09-04 02:01+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/lib/l10n/ca.php b/lib/l10n/ca.php index 8e4c30caec9..031207227ec 100644 --- a/lib/l10n/ca.php +++ b/lib/l10n/ca.php @@ -21,5 +21,8 @@ "last month" => "el mes passat", "months ago" => "mesos enrere", "last year" => "l'any passat", -"years ago" => "fa anys" +"years ago" => "fa anys", +"%s is available. Get <a href=\"%s\">more information</a>" => "%s està disponible. Obtén <a href=\"%s\">més informació</a>", +"up to date" => "actualitzat", +"updates check is disabled" => "la comprovació d'actualitzacions està desactivada" ); diff --git a/lib/l10n/eu.php b/lib/l10n/eu.php index 989b3694136..461bf458778 100644 --- a/lib/l10n/eu.php +++ b/lib/l10n/eu.php @@ -21,5 +21,8 @@ "last month" => "joan den hilabetea", "months ago" => "orain dela hilabete batzuk", "last year" => "joan den urtea", -"years ago" => "orain dela urte batzuk" +"years ago" => "orain dela urte batzuk", +"%s is available. Get <a href=\"%s\">more information</a>" => "%s eskuragarri dago. Lortu <a href=\"%s\">informazio gehiago</a>", +"up to date" => "eguneratuta", +"updates check is disabled" => "eguneraketen egiaztapena ez dago gaituta" ); diff --git a/lib/l10n/ja_JP.php b/lib/l10n/ja_JP.php index 3552a525c99..10f7276703a 100644 --- a/lib/l10n/ja_JP.php +++ b/lib/l10n/ja_JP.php @@ -21,5 +21,8 @@ "last month" => "先月", "months ago" => "月前", "last year" => "昨年", -"years ago" => "年前" +"years ago" => "年前", +"%s is available. Get <a href=\"%s\">more information</a>" => "%s が利用可能です。<a href=\"%s\">詳細情報</a> を確認ください", +"up to date" => "最新です", +"updates check is disabled" => "更新チェックは無効です" ); diff --git a/lib/l10n/pl.php b/lib/l10n/pl.php index 169462fabb7..087aaa227d3 100644 --- a/lib/l10n/pl.php +++ b/lib/l10n/pl.php @@ -21,5 +21,8 @@ "last month" => "ostatni miesiąc", "months ago" => "miesięcy temu", "last year" => "ostatni rok", -"years ago" => "lat temu" +"years ago" => "lat temu", +"%s is available. Get <a href=\"%s\">more information</a>" => "%s jest dostępna. Uzyskaj <a href=\"%s\">więcej informacji</a>", +"up to date" => "Aktualne", +"updates check is disabled" => "wybór aktualizacji jest wyłączony" ); diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 29cad92715d..6d9a043bc2e 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -12,6 +12,7 @@ "Saving..." => "S'està desant...", "__language_name__" => "Català", "Security Warning" => "Avís de seguretat", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "La carpeta de dades i els vostres fitxersprobablement són accessibles des d'Internet. La fitxer .htaccess que ownCloud proporciona no funciona. Us recomanem que configureu el servidor web de tal manera que la carpeta de dades no sigui accessible o que moveu la carpeta de dades fora de l'arrel de documents del servidor web.", "Cron" => "Cron", "execute one task with each page loaded" => "executa una tasca en carregar cada pàgina", "cron.php is registered at a webcron service" => "cron.php està registrat en un servei web cron", @@ -27,6 +28,7 @@ "Allow users to only share with users in their groups" => "Permet als usuaris compartir només amb usuaris del seu grup", "Log" => "Registre", "More" => "Més", +"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>." => "Desenvolupat per la <a href=\"http://ownCloud.org/contact\" target=\"_blank\">comunitat ownCloud</a>, el <a href=\"https://github.com/owncloud\" target=\"_blank\">codi font</a> té llicència <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" => "Afegiu la vostra aplicació", "Select an App" => "Seleccioneu una aplicació", "See application page at apps.owncloud.com" => "Mireu la pàgina d'aplicacions a apps.owncloud.com", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index be496cd9647..54a42eaad27 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -12,6 +12,7 @@ "Saving..." => "Guardando...", "__language_name__" => "Castellano", "Security Warning" => "Advertencia de seguridad", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "El directorio de datos -data- y sus archivos probablemente son accesibles desde internet. El archivo .htaccess que provee ownCloud no está funcionando. Recomendamos fuertemente que configure su servidor web de forma que el directorio de datos ya no sea accesible o mueva el directorio de datos fuera de la raíz de documentos del servidor web.", "Cron" => "Cron", "execute one task with each page loaded" => "ejecutar una tarea con cada página cargada", "cron.php is registered at a webcron service" => "cron.php se registra en un servicio webcron", diff --git a/settings/l10n/eu.php b/settings/l10n/eu.php index d5dcf396add..61ccec9da85 100644 --- a/settings/l10n/eu.php +++ b/settings/l10n/eu.php @@ -12,12 +12,23 @@ "Saving..." => "Gordetzen...", "__language_name__" => "Euskera", "Security Warning" => "Segurtasun abisua", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Zure data karpeta eta zure fitxategiak internetetik zuzenean eskuragarri egon daitezke. ownCloudek emandako .htaccess fitxategia ez du bere lana egiten. Aholkatzen dizugu zure web zerbitzaria ongi konfiguratzea data karpeta eskuragarri ez izateko edo data karpeta web zerbitzariaren dokumentu errotik mugitzea.", "Cron" => "Cron", "execute one task with each page loaded" => "exekutatu zeregina orri karga bakoitzean", "cron.php is registered at a webcron service" => "cron.php webcron zerbitzu batean erregistratuta dago", "use systems cron service" => "erabili sistemaren cron zerbitzua", +"Share API" => "Partekatze APIa", +"Enable Share API" => "Gaitu Partekatze APIa", +"Allow apps to use the Share API" => "Baimendu aplikazioak Partekatze APIa erabiltzeko", +"Allow links" => "Baimendu loturak", +"Allow users to share items to the public with links" => "Baimendu erabiltzaileak loturen bidez fitxategiak publikoki partekatzen", +"Allow resharing" => "Baimendu birpartekatzea", +"Allow users to share items shared with them again" => "Baimendu erabiltzaileak haiekin partekatutako fitxategiak berriz ere partekatzen", +"Allow users to share with anyone" => "Baimendu erabiltzaileak edonorekin partekatzen", +"Allow users to only share with users in their groups" => "Baimendu erabiltzaileak bakarrik bere taldeko erabiltzaileekin partekatzen", "Log" => "Egunkaria", "More" => "Gehiago", +"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>." => "<a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud komunitateak</a> garatuta, <a href=\"https://github.com/owncloud\" target=\"_blank\">itubruru kodea</a><a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr> lizentziarekin banatzen da</a>.", "Add your App" => "Gehitu zure aplikazioa", "Select an App" => "Aukeratu programa bat", "See application page at apps.owncloud.com" => "Ikusi programen orria apps.owncloud.com en", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index 0ca490d8d51..0bca3719838 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"Unable to load list from App Store" => "Ei pystytä lataamaan listaa sovellusvarastosta (App Store)", "Email saved" => "Sähköposti tallennettu", "Invalid email" => "Virheellinen sähköposti", "OpenID Changed" => "OpenID on vaihdettu", @@ -11,11 +12,18 @@ "Saving..." => "Tallennetaan...", "__language_name__" => "_kielen_nimi_", "Security Warning" => "Turvallisuusvaroitus", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Data-kansio ja tiedostot ovat ehkä saavutettavissa Internetistä. .htaccess-tiedosto, jolla kontrolloidaan pääsyä, ei toimi. Suosittelemme, että muutat web-palvelimesi asetukset niin ettei data-kansio ole enää pääsyä tai siirrät data-kansion pois web-palvelimen tiedostojen juuresta.", "Cron" => "Cron", +"execute one task with each page loaded" => "suorita yksi tehtävä jokaisella ladatulla sivulla", +"cron.php is registered at a webcron service" => "cron.php on rekisteröity webcron-palvelulla", "use systems cron service" => "käytä järjestelmän cron-palvelua", +"Share API" => "Jaon ohelmointirajapinta (Share API)", +"Enable Share API" => "Ota käyttöön jaon ohjelmoitirajapinta (Share API)", +"Allow apps to use the Share API" => "Salli sovellusten käyttää jaon ohjelmointirajapintaa (Share API)", "Allow links" => "Salli linkit", "Allow users to share items to the public with links" => "Salli käyttäjien jakaa kohteita julkisesti linkkejä käyttäen", "Allow resharing" => "Salli uudelleenjako", +"Allow users to share items shared with them again" => "Salli käyttäjien jakaa heille itselleen jaettuja tietoja edelleen", "Allow users to share with anyone" => "Salli käyttäjien jakaa kohteita kenen tahansa kanssa", "Allow users to only share with users in their groups" => "Salli käyttäjien jakaa kohteita vain omien ryhmien jäsenten kesken", "Log" => "Loki", @@ -54,6 +62,7 @@ "Create" => "Luo", "Default Quota" => "Oletuskiintiö", "Other" => "Muu", +"Group Admin" => "Ryhmän ylläpitäjä", "Quota" => "Kiintiö", "Delete" => "Poista" ); diff --git a/settings/l10n/lb.php b/settings/l10n/lb.php index 29072720a02..b419cb9278a 100644 --- a/settings/l10n/lb.php +++ b/settings/l10n/lb.php @@ -1,12 +1,32 @@ <?php $TRANSLATIONS = array( +"Unable to load list from App Store" => "Konnt Lescht net vum App Store lueden", +"Email saved" => "E-mail gespäichert", +"Invalid email" => "Ongülteg e-mail", "OpenID Changed" => "OpenID huet geännert", "Invalid request" => "Ongülteg Requête", +"Authentication error" => "Authentifikatioun's Fehler", "Language changed" => "Sprooch huet geännert", +"Error" => "Fehler", +"Disable" => "Ofschalten", +"Enable" => "Aschalten", +"Saving..." => "Speicheren...", "__language_name__" => "__language_name__", +"Security Warning" => "Sécherheets Warnung", +"Cron" => "Cron", +"cron.php is registered at a webcron service" => "cron.php ass als en webcron Service registréiert", +"use systems cron service" => "benotz den systems cron Service", +"Share API" => "Share API", +"Enable Share API" => "Share API aschalten", +"Allow apps to use the Share API" => "Erlab Apps d'Share API ze benotzen", +"Allow links" => "Links erlaben", +"Allow resharing" => "Resharing erlaben", +"Allow users to share with anyone" => "Useren erlaben mat egal wiem ze sharen", +"Allow users to only share with users in their groups" => "Useren nëmmen erlaben mat Useren aus hirer Grupp ze sharen", "Log" => "Log", "More" => "Méi", "Add your App" => "Setz deng App bei", "Select an App" => "Wiel eng Applikatioun aus", +"See application page at apps.owncloud.com" => "Kuck dir d'Applicatioun's Säit op apps.owncloud.com un", "-licensed" => "-Lizenséiert", "by" => "vun", "Documentation" => "Dokumentatioun", @@ -37,6 +57,7 @@ "Create" => "Erstellen", "Default Quota" => "Standard Quota", "Other" => "Aner", +"Group Admin" => "Gruppen Admin", "Quota" => "Quota", "Delete" => "Läschen" ); diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index de9384a2440..d331f2e1472 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -16,6 +16,11 @@ "execute one task with each page loaded" => "wykonanie jednego zadania z każdej załadowanej strony", "cron.php is registered at a webcron service" => "cron.php jest zarejestrowany w usłudze webcron", "use systems cron service" => "korzystaj z usługi systemowej cron", +"Share API" => "Udostępnij API", +"Enable Share API" => "Włącz udostępniane API", +"Allow apps to use the Share API" => "Zezwalaj aplikacjom na używanie API", +"Allow links" => "Zezwalaj na łącza", +"Allow resharing" => "Zezwól na ponowne udostępnianie", "Log" => "Log", "More" => "Więcej", "Add your App" => "Dodaj aplikacje", -- cgit v1.2.3 From 395ea2a02853471478ff529a2dfbd8ba5787865e Mon Sep 17 00:00:00 2001 From: Thomas Müller <thomas.mueller@tmit.eu> Date: Tue, 4 Sep 2012 13:08:55 +0300 Subject: Update core/lostpassword/index.php respect coding style --- core/lostpassword/index.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'core') diff --git a/core/lostpassword/index.php b/core/lostpassword/index.php index 58dab597324..3f58b03c982 100644 --- a/core/lostpassword/index.php +++ b/core/lostpassword/index.php @@ -7,7 +7,7 @@ */ $RUNTIME_NOAPPS = TRUE; //no apps -require_once('../../lib/base.php'); +require_once '../../lib/base.php'; // Someone lost their password: @@ -23,20 +23,20 @@ if (isset($_POST['user'])) { $msg = $tmpl->fetchPage(); $l = OC_L10N::get('core'); $from = 'lostpassword-noreply@' . OCP\Util::getServerHost(); - OC_MAIL::send($email,$_POST['user'],$l->t('ownCloud password reset'),$msg,$from,'ownCloud'); + OC_MAIL::send($email, $_POST['user'], $l->t('ownCloud password reset'), $msg, $from, 'ownCloud'); echo('sent'); } - $sectoken=rand(1000000,9999999); + $sectoken=rand(1000000, 9999999); $_SESSION['sectoken']=$sectoken; OC_Template::printGuestPage('core/lostpassword', 'lostpassword', array('error' => false, 'requested' => true, 'sectoken' => $sectoken)); } else { - $sectoken=rand(1000000,9999999); + $sectoken=rand(1000000, 9999999); $_SESSION['sectoken']=$sectoken; OC_Template::printGuestPage('core/lostpassword', 'lostpassword', array('error' => true, 'requested' => false, 'sectoken' => $sectoken)); } } else { - $sectoken=rand(1000000,9999999); + $sectoken=rand(1000000, 9999999); $_SESSION['sectoken']=$sectoken; OC_Template::printGuestPage('core/lostpassword', 'lostpassword', array('error' => false, 'requested' => false, 'sectoken' => $sectoken)); } -- cgit v1.2.3 From 97e4647ad57255f320b85de410f747961167cc88 Mon Sep 17 00:00:00 2001 From: Thomas Müller <thomas.mueller@tmit.eu> Date: Tue, 4 Sep 2012 13:09:25 +0300 Subject: Update core/lostpassword/resetpassword.php --- core/lostpassword/resetpassword.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core') diff --git a/core/lostpassword/resetpassword.php b/core/lostpassword/resetpassword.php index 33be9d7053b..28a0063fc64 100644 --- a/core/lostpassword/resetpassword.php +++ b/core/lostpassword/resetpassword.php @@ -7,7 +7,7 @@ */ $RUNTIME_NOAPPS = TRUE; //no apps -require_once('../../lib/base.php'); +require_once '../../lib/base.php'; // Someone wants to reset their password: if(isset($_GET['token']) && isset($_GET['user']) && OC_Preferences::getValue($_GET['user'], 'owncloud', 'lostpassword') === $_GET['token']) { -- cgit v1.2.3 From 6d358c051f1de1a717234e94ddbf6a63fbb57b02 Mon Sep 17 00:00:00 2001 From: Thomas Müller <thomas.mueller@tmit.eu> Date: Tue, 4 Sep 2012 13:10:14 +0300 Subject: Update core/lostpassword/templates/email.php respect coding style --- core/lostpassword/templates/email.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'core') diff --git a/core/lostpassword/templates/email.php b/core/lostpassword/templates/email.php index d146d8e4c37..bf025e41973 100644 --- a/core/lostpassword/templates/email.php +++ b/core/lostpassword/templates/email.php @@ -1 +1,2 @@ -<?php echo str_replace('{link}', $_['link'], $l->t('Use the following link to reset your password: {link}')) ?> +<?php +echo str_replace('{link}', $_['link'], $l->t('Use the following link to reset your password: {link}')) \ No newline at end of file -- cgit v1.2.3 From 9e5807d1f9ae1b33c5cdbd6a1a126ec52270865e Mon Sep 17 00:00:00 2001 From: Thomas Müller <thomas.mueller@tmit.eu> Date: Tue, 4 Sep 2012 13:13:18 +0300 Subject: fixing syntax error - sorry for that --- core/lostpassword/templates/email.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core') diff --git a/core/lostpassword/templates/email.php b/core/lostpassword/templates/email.php index bf025e41973..b65049feffe 100644 --- a/core/lostpassword/templates/email.php +++ b/core/lostpassword/templates/email.php @@ -1,2 +1,2 @@ <?php -echo str_replace('{link}', $_['link'], $l->t('Use the following link to reset your password: {link}')) \ No newline at end of file +echo str_replace('{link}', $_['link'], $l->t('Use the following link to reset your password: {link}')); \ No newline at end of file -- cgit v1.2.3 From 5bd4d6b0513dd7944641dfc4498b77f7c66da40b Mon Sep 17 00:00:00 2001 From: Thomas Müller <thomas.mueller@tmit.eu> Date: Tue, 4 Sep 2012 13:17:14 +0300 Subject: Respect coding style --- core/ajax/translations.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core') diff --git a/core/ajax/translations.php b/core/ajax/translations.php index 2bd6b7ed634..75679da2c04 100644 --- a/core/ajax/translations.php +++ b/core/ajax/translations.php @@ -22,7 +22,7 @@ */ // Init owncloud -require_once('../../lib/base.php'); +require_once '../../lib/base.php'; $app = $_POST["app"]; -- cgit v1.2.3 From 6e76c59007ef51c78a056cb0be7e1f96f6e4a210 Mon Sep 17 00:00:00 2001 From: Thomas Müller <thomas.mueller@tmit.eu> Date: Tue, 4 Sep 2012 13:18:11 +0300 Subject: Remove closing php tag --- core/ajax/share.php | 2 -- 1 file changed, 2 deletions(-) (limited to 'core') diff --git a/core/ajax/share.php b/core/ajax/share.php index debdf612c0e..3ace97d4d02 100644 --- a/core/ajax/share.php +++ b/core/ajax/share.php @@ -135,5 +135,3 @@ if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSo break; } } - -?> \ No newline at end of file -- cgit v1.2.3 From f4cace6cc1da872ac6a06cb5ccac7f0335be4261 Mon Sep 17 00:00:00 2001 From: Thomas Müller <thomas.mueller@tmit.eu> Date: Tue, 4 Sep 2012 13:19:04 +0300 Subject: Respect coding style --- core/ajax/appconfig.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'core') diff --git a/core/ajax/appconfig.php b/core/ajax/appconfig.php index bf749be3e30..3ad9e2326c3 100644 --- a/core/ajax/appconfig.php +++ b/core/ajax/appconfig.php @@ -5,7 +5,7 @@ * See the COPYING-README file. */ -require_once ("../../lib/base.php"); +require_once "../../lib/base.php"; OC_Util::checkAdminUser(); OCP\JSON::callCheck(); @@ -13,10 +13,10 @@ $action=isset($_POST['action'])?$_POST['action']:$_GET['action']; $result=false; switch($action){ case 'getValue': - $result=OC_Appconfig::getValue($_GET['app'],$_GET['key'],$_GET['defaultValue']); + $result=OC_Appconfig::getValue($_GET['app'], $_GET['key'], $_GET['defaultValue']); break; case 'setValue': - $result=OC_Appconfig::setValue($_POST['app'],$_POST['key'],$_POST['value']); + $result=OC_Appconfig::setValue($_POST['app'], $_POST['key'], $_POST['value']); break; case 'getApps': $result=OC_Appconfig::getApps(); @@ -25,10 +25,10 @@ switch($action){ $result=OC_Appconfig::getKeys($_GET['app']); break; case 'hasKey': - $result=OC_Appconfig::hasKey($_GET['app'],$_GET['key']); + $result=OC_Appconfig::hasKey($_GET['app'], $_GET['key']); break; case 'deleteKey': - $result=OC_Appconfig::deleteKey($_POST['app'],$_POST['key']); + $result=OC_Appconfig::deleteKey($_POST['app'], $_POST['key']); break; case 'deleteApp': $result=OC_Appconfig::deleteApp($_POST['app']); -- cgit v1.2.3 From ff8b8909c1116551bff14853bcc4d930e10a1664 Mon Sep 17 00:00:00 2001 From: Thomas Müller <thomas.mueller@tmit.eu> Date: Tue, 4 Sep 2012 13:19:44 +0300 Subject: Respect coding style --- core/ajax/vcategories/add.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'core') diff --git a/core/ajax/vcategories/add.php b/core/ajax/vcategories/add.php index e69f8bb726b..81fa06dbf19 100644 --- a/core/ajax/vcategories/add.php +++ b/core/ajax/vcategories/add.php @@ -7,14 +7,14 @@ */ function bailOut($msg) { OC_JSON::error(array('data' => array('message' => $msg))); - OC_Log::write('core','ajax/vcategories/add.php: '.$msg, OC_Log::DEBUG); + OC_Log::write('core', 'ajax/vcategories/add.php: '.$msg, OC_Log::DEBUG); exit(); } function debug($msg) { - OC_Log::write('core','ajax/vcategories/add.php: '.$msg, OC_Log::DEBUG); + OC_Log::write('core', 'ajax/vcategories/add.php: '.$msg, OC_Log::DEBUG); } -require_once('../../../lib/base.php'); +require_once '../../../lib/base.php'; OC_JSON::checkLoggedIn(); $category = isset($_GET['category'])?strip_tags($_GET['category']):null; $app = isset($_GET['app'])?$_GET['app']:null; -- cgit v1.2.3 From ae678414611e8f2a8cab488a51db8c54088ed2e6 Mon Sep 17 00:00:00 2001 From: Thomas Müller <thomas.mueller@tmit.eu> Date: Tue, 4 Sep 2012 13:21:00 +0300 Subject: Respect coding style --- core/ajax/vcategories/delete.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'core') diff --git a/core/ajax/vcategories/delete.php b/core/ajax/vcategories/delete.php index a41fa083c38..cd46a25b79d 100644 --- a/core/ajax/vcategories/delete.php +++ b/core/ajax/vcategories/delete.php @@ -8,14 +8,14 @@ function bailOut($msg) { OC_JSON::error(array('data' => array('message' => $msg))); - OC_Log::write('core','ajax/vcategories/delete.php: '.$msg, OC_Log::DEBUG); + OC_Log::write('core', 'ajax/vcategories/delete.php: '.$msg, OC_Log::DEBUG); exit(); } function debug($msg) { - OC_Log::write('core','ajax/vcategories/delete.php: '.$msg, OC_Log::DEBUG); + OC_Log::write('core', 'ajax/vcategories/delete.php: '.$msg, OC_Log::DEBUG); } -require_once('../../../lib/base.php'); +require_once '../../../lib/base.php'; OC_JSON::checkLoggedIn(); $app = isset($_POST['app'])?$_POST['app']:null; $categories = isset($_POST['categories'])?$_POST['categories']:null; -- cgit v1.2.3 From 5868f834c8e38e211759bc1fd31949d77c55fb6a Mon Sep 17 00:00:00 2001 From: Thomas Müller <thomas.mueller@tmit.eu> Date: Tue, 4 Sep 2012 13:21:36 +0300 Subject: Respect coding style --- core/ajax/vcategories/edit.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'core') diff --git a/core/ajax/vcategories/edit.php b/core/ajax/vcategories/edit.php index 3e5540cbc22..a0e67841c55 100644 --- a/core/ajax/vcategories/edit.php +++ b/core/ajax/vcategories/edit.php @@ -8,14 +8,14 @@ function bailOut($msg) { OC_JSON::error(array('data' => array('message' => $msg))); - OC_Log::write('core','ajax/vcategories/edit.php: '.$msg, OC_Log::DEBUG); + OC_Log::write('core', 'ajax/vcategories/edit.php: '.$msg, OC_Log::DEBUG); exit(); } function debug($msg) { - OC_Log::write('core','ajax/vcategories/edit.php: '.$msg, OC_Log::DEBUG); + OC_Log::write('core', 'ajax/vcategories/edit.php: '.$msg, OC_Log::DEBUG); } -require_once('../../../lib/base.php'); +require_once '../../../lib/base.php'; OC_JSON::checkLoggedIn(); $app = isset($_GET['app'])?$_GET['app']:null; @@ -29,5 +29,5 @@ $tmpl = new OC_TEMPLATE("core", "edit_categories_dialog"); $vcategories = new OC_VCategories($app); $categories = $vcategories->categories(); debug(print_r($categories, true)); -$tmpl->assign('categories',$categories); +$tmpl->assign('categories', $categories); $tmpl->printpage(); -- cgit v1.2.3 From f188f6cc2fed10bdc78a34df95b898a770bcf506 Mon Sep 17 00:00:00 2001 From: Bart Visscher <bartv@thisnet.nl> Date: Tue, 4 Sep 2012 21:27:04 +0200 Subject: Fix some jslint warnings --- apps/files/js/fileactions.js | 10 +++++----- apps/files/js/filelist.js | 4 ++-- core/js/js.js | 2 ++ 3 files changed, 9 insertions(+), 7 deletions(-) (limited to 'core') diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index ea3522cb101..f4e7b7723f6 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -1,4 +1,4 @@ -FileActions={ +var FileActions={ actions:{}, defaults:{}, icons:{}, @@ -20,20 +20,20 @@ FileActions={ get:function(mime,type,permissions){ var actions={}; if(FileActions.actions.all){ - actions=$.extend( actions, FileActions.actions.all ) + actions=$.extend( actions, FileActions.actions.all ); } if(mime){ if(FileActions.actions[mime]){ - actions=$.extend( actions, FileActions.actions[mime] ) + actions=$.extend( actions, FileActions.actions[mime] ); } var mimePart=mime.substr(0,mime.indexOf('/')); if(FileActions.actions[mimePart]){ - actions=$.extend( actions, FileActions.actions[mimePart] ) + actions=$.extend( actions, FileActions.actions[mimePart] ); } } if(type){//type is 'dir' or 'file' if(FileActions.actions[type]){ - actions=$.extend( actions, FileActions.actions[type] ) + actions=$.extend( actions, FileActions.actions[type] ); } } var filteredActions = {}; diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index e0cf516411a..85e5cfb14c2 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -1,4 +1,4 @@ -FileList={ +var FileList={ useUndo:true, update:function(fileListHtml) { $('#fileList').empty().html(fileListHtml); @@ -14,7 +14,7 @@ FileList={ var extension=false; } html+='<td class="filename" style="background-image:url('+img+')"><input type="checkbox" />'; - html+='<a class="name" href="download.php?file='+$('#dir').val().replace(/</, '<').replace(/>/, '>')+'/'+name+'"><span class="nametext">'+basename + html+='<a class="name" href="download.php?file='+$('#dir').val().replace(/</, '<').replace(/>/, '>')+'/'+name+'"><span class="nametext">'+basename; if(extension){ html+='<span class="extension">'+extension+'</span>'; } diff --git a/core/js/js.js b/core/js/js.js index 7ce349a2147..8b9ecd38dc2 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -4,6 +4,8 @@ * @param text the string to translate * @return string */ +var OC; + function t(app,text){ if( !( app in t.cache )){ $.ajax(OC.filePath('core','ajax','translations.php'),{ -- cgit v1.2.3 From 9329af921d6d9bf7861fe9f996562f17beecf6a2 Mon Sep 17 00:00:00 2001 From: Bart Visscher <bartv@thisnet.nl> Date: Wed, 5 Sep 2012 22:17:33 +0200 Subject: Add missing ; to js code --- apps/files/js/fileactions.js | 8 ++++---- apps/files/js/files.js | 2 +- apps/files_encryption/js/settings.js | 4 ++-- apps/files_external/js/dropbox.js | 4 ++-- apps/files_external/js/settings.js | 4 ++-- apps/files_versions/js/versions.js | 4 ++-- core/js/config.js | 2 +- core/js/js.js | 2 +- core/js/listview.js | 10 +++++----- core/js/setup.js | 4 ++-- core/js/share.js | 2 +- settings/js/admin.js | 4 ++-- settings/js/apps.js | 4 ++-- settings/js/personal.js | 2 +- 14 files changed, 28 insertions(+), 28 deletions(-) (limited to 'core') diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index f4e7b7723f6..b7670fa2259 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -143,7 +143,7 @@ var FileActions={ getCurrentPermissions:function() { return FileActions.currentFile.parent().data('permissions'); } -} +}; $(document).ready(function(){ if($('#allowZipDownload').val() == 1){ @@ -151,12 +151,12 @@ $(document).ready(function(){ } else { var downloadScope = 'file'; } - FileActions.register(downloadScope,'Download', OC.PERMISSION_READ, function(){return OC.imagePath('core','actions/download')},function(filename){ + FileActions.register(downloadScope,'Download', OC.PERMISSION_READ, function(){return OC.imagePath('core','actions/download');},function(filename){ window.location=OC.filePath('files', 'ajax', 'download.php') + encodeURIComponent('?files='+encodeURIComponent(filename)+'&dir='+encodeURIComponent($('#dir').val())); }); }); -FileActions.register('all','Delete', OC.PERMISSION_DELETE, function(){return OC.imagePath('core','actions/delete')},function(filename){ +FileActions.register('all','Delete', OC.PERMISSION_DELETE, function(){return OC.imagePath('core','actions/delete');},function(filename){ if(Files.cancelUpload(filename)) { if(filename.substr){ filename=[filename]; @@ -174,7 +174,7 @@ FileActions.register('all','Delete', OC.PERMISSION_DELETE, function(){return OC. $('.tipsy').remove(); }); -FileActions.register('all','Rename', OC.PERMISSION_UPDATE, function(){return OC.imagePath('core','actions/rename')},function(filename){ +FileActions.register('all','Rename', OC.PERMISSION_UPDATE, function(){return OC.imagePath('core','actions/rename');},function(filename){ FileList.rename(filename); }); diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 3d347c3f564..8229bfa24f1 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -26,7 +26,7 @@ Files={ }); procesSelection(); } -} +}; $(document).ready(function() { $('#fileList tr').each(function(){ //little hack to set unescape filenames in attribute diff --git a/apps/files_encryption/js/settings.js b/apps/files_encryption/js/settings.js index a160b9e0e18..6fc70eba7f6 100644 --- a/apps/files_encryption/js/settings.js +++ b/apps/files_encryption/js/settings.js @@ -20,5 +20,5 @@ $(document).ready(function(){ $('#enable_encryption').change(function(){ var checked=$('#enable_encryption').is(':checked'); OC.AppConfig.setValue('files_encryption','enable_encryption',(checked)?'true':'false'); - }) -}) \ No newline at end of file + }); +}); diff --git a/apps/files_external/js/dropbox.js b/apps/files_external/js/dropbox.js index 92194792f42..dd3a1cb1858 100644 --- a/apps/files_external/js/dropbox.js +++ b/apps/files_external/js/dropbox.js @@ -10,7 +10,7 @@ $(document).ready(function() { var app_secret = $(this).find('.configuration [data-parameter="app_secret"]').val(); var config = $(this).find('.configuration'); if (app_key != '' && app_secret != '') { - var pos = window.location.search.indexOf('oauth_token') + 12 + var pos = window.location.search.indexOf('oauth_token') + 12; var token = $(this).find('.configuration [data-parameter="token"]'); if (pos != -1 && window.location.search.substr(pos, $(token).val().length) == $(token).val()) { var token_secret = $(this).find('.configuration [data-parameter="token_secret"]'); @@ -73,7 +73,7 @@ $(document).ready(function() { } }); } else { - OC.dialogs.alert('Please provide a valid Dropbox app key and secret.', 'Error configuring Dropbox storage') + OC.dialogs.alert('Please provide a valid Dropbox app key and secret.', 'Error configuring Dropbox storage'); } }); diff --git a/apps/files_external/js/settings.js b/apps/files_external/js/settings.js index f3460070901..89f346574e2 100644 --- a/apps/files_external/js/settings.js +++ b/apps/files_external/js/settings.js @@ -66,7 +66,7 @@ OC.MountConfig={ return true; } } -} +}; $(document).ready(function() { $('.chzn-select').chosen(); @@ -179,4 +179,4 @@ $(document).ready(function() { } }); -}); \ No newline at end of file +}); diff --git a/apps/files_versions/js/versions.js b/apps/files_versions/js/versions.js index a9cf6171e45..1c8d083ea42 100644 --- a/apps/files_versions/js/versions.js +++ b/apps/files_versions/js/versions.js @@ -11,7 +11,7 @@ $(document).ready(function() { $(document).ready(function(){ if (typeof FileActions !== 'undefined') { // Add history button to files/index.php - FileActions.register('file','History', OC.PERMISSION_UPDATE, function(){return OC.imagePath('core','actions/history')},function(filename){ + FileActions.register('file','History', OC.PERMISSION_UPDATE, function(){return OC.imagePath('core','actions/history');},function(filename){ if (scanFiles.scanning){return;}//workaround to prevent additional http request block scanning feedback @@ -76,7 +76,7 @@ function createVersionsDropdown(filename, files) { $('#found_versions').change(function(){ var revision=parseInt($(this).val()); revertFile(files,revision); - }) + }); } }); diff --git a/core/js/config.js b/core/js/config.js index 11168f1c483..f7a29276f7d 100644 --- a/core/js/config.js +++ b/core/js/config.js @@ -51,5 +51,5 @@ OC.AppConfig={ deleteApp:function(app){ OC.AppConfig.postCall('deleteApp',{app:app}); }, -} +}; //TODO OC.Preferences diff --git a/core/js/js.js b/core/js/js.js index 8b9ecd38dc2..1bd650bb6b8 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -208,7 +208,7 @@ OC={ popup.prepend('<span class="arrow '+arrowclass+'"></span><h2>'+t('core', 'Settings')+'</h2><a class="close svg"></a>').show(); popup.find('.close').bind('click', function() { popup.remove(); - }) + }); if(typeof props.loadJS !== 'undefined') { var scriptname; if(props.loadJS === true) { diff --git a/core/js/listview.js b/core/js/listview.js index e3e5ebdab8f..3a713a6222c 100644 --- a/core/js/listview.js +++ b/core/js/listview.js @@ -11,15 +11,15 @@ ListView.generateTable=function(collumns){ html+='<thead>'; html+='</head>'; html+='<tbody>'; - html+'<tr class="template">' + html+'<tr class="template">'; $.each(collumns,function(index,collumn){ html+='<th class="'+collumn.toLower()+'"</th>'; }); - html+'</tr>' + html+'</tr>'; html+='</tbody>'; html='</table>'; return $(html); -} +}; ListView.prototype={ rows:{}, @@ -49,7 +49,7 @@ ListView.prototype={ var element=$(html); element.append($('<img src="'+element.icon+'"/>')); element.click(element.callback); - tr.children('td.'+collumn).append(element) + tr.children('td.'+collumn).append(element); }); }); if(this.deleteCallback){ @@ -68,4 +68,4 @@ ListView.prototype={ empty:function(){ this.element.children('tr:not(.template)').remove(); } -} \ No newline at end of file +}; diff --git a/core/js/setup.js b/core/js/setup.js index 23c705a0686..39fcf4a2715 100644 --- a/core/js/setup.js +++ b/core/js/setup.js @@ -1,11 +1,11 @@ -var dbtypes +var dbtypes; $(document).ready(function() { dbtypes={ sqlite:!!$('#hasSQLite').val(), mysql:!!$('#hasMySQL').val(), postgresql:!!$('#hasPostgreSQL').val(), oracle:!!$('#hasOracle').val(), - } + }; $('#selectDbType').buttonset(); $('#datadirContent').hide(250); diff --git a/core/js/share.js b/core/js/share.js index e97302b0d5a..b5e8b0e6613 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -137,7 +137,7 @@ OC.Share={ html += '<input id="linkText" type="text" readonly="readonly" />'; html += '<div id="linkPass">'; html += '<input id="linkPassText" type="password" placeholder="Password" />'; - html += '</div>' + html += '</div>'; html += '</div>'; } html += '</div>'; diff --git a/settings/js/admin.js b/settings/js/admin.js index 23f445b708f..95b7a503c27 100644 --- a/settings/js/admin.js +++ b/settings/js/admin.js @@ -26,8 +26,8 @@ $(document).ready(function(){ var value = 'no'; } } else { - var value = $(this).val() + var value = $(this).val(); } OC.AppConfig.setValue('core', $(this).attr('name'), value); }); -}); \ No newline at end of file +}); diff --git a/settings/js/apps.js b/settings/js/apps.js index f9612482373..bb931232763 100644 --- a/settings/js/apps.js +++ b/settings/js/apps.js @@ -96,7 +96,7 @@ OC.Settings.Apps = OC.Settings.Apps || { } return app; } -} +}; $(document).ready(function(){ $('#leftcontent li').each(function(index,li){ @@ -106,7 +106,7 @@ $(document).ready(function(){ }); $('#leftcontent li').keydown(function(event) { if (event.which == 13 || event.which == 32) { - $(event.target).click() + $(event.target).click(); } return false; }); diff --git a/settings/js/personal.js b/settings/js/personal.js index 77d103c53b6..a866e321ad6 100644 --- a/settings/js/personal.js +++ b/settings/js/personal.js @@ -83,4 +83,4 @@ OC.msg={ $(selector).html( data.data.message ).addClass('error'); } } -} +}; -- cgit v1.2.3 From a8de0af2732020e9f9d60dcf6a4571fe62e242de Mon Sep 17 00:00:00 2001 From: Bart Visscher <bartv@thisnet.nl> Date: Wed, 5 Sep 2012 22:22:04 +0200 Subject: Add 'var' before some global js vars --- core/js/oc-dialogs.js | 2 +- core/js/oc-vcategories.js | 2 +- settings/js/users.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'core') diff --git a/core/js/oc-dialogs.js b/core/js/oc-dialogs.js index 0fa41696a16..4dd3c89c14d 100644 --- a/core/js/oc-dialogs.js +++ b/core/js/oc-dialogs.js @@ -22,7 +22,7 @@ /** * this class to ease the usage of jquery dialogs */ -OCdialogs = { +var OCdialogs = { /** * displays alert dialog * @param text content of dialog diff --git a/core/js/oc-vcategories.js b/core/js/oc-vcategories.js index dfed8223b1b..c7b536a2a7d 100644 --- a/core/js/oc-vcategories.js +++ b/core/js/oc-vcategories.js @@ -1,4 +1,4 @@ -OCCategories={ +var OCCategories={ edit:function(){ if(OCCategories.app == undefined) { OC.dialogs.alert('OCCategories.app is not set!'); diff --git a/settings/js/users.js b/settings/js/users.js index d0a3c1c21ab..20bd94993bc 100644 --- a/settings/js/users.js +++ b/settings/js/users.js @@ -4,7 +4,7 @@ * See the COPYING-README file. */ -UserList={ +var UserList={ useUndo:true, /** -- cgit v1.2.3 From e0db35fac0e1938a0337790162657b64143d87fd Mon Sep 17 00:00:00 2001 From: Bart Visscher <bartv@thisnet.nl> Date: Wed, 5 Sep 2012 22:23:32 +0200 Subject: Fix name for OCCategories --- core/js/oc-vcategories.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core') diff --git a/core/js/oc-vcategories.js b/core/js/oc-vcategories.js index c7b536a2a7d..c99dd51f53a 100644 --- a/core/js/oc-vcategories.js +++ b/core/js/oc-vcategories.js @@ -95,7 +95,7 @@ var OCCategories={ } }).error(function(xhr){ if (xhr.status == 404) { - OC.dialogs.alert('The required file ' + OC.filePath(Categories.app, 'ajax', 'categories/rescan.php') + ' is not installed!', 'Error'); + OC.dialogs.alert('The required file ' + OC.filePath(OCCategories.app, 'ajax', 'categories/rescan.php') + ' is not installed!', 'Error'); } }); }, -- cgit v1.2.3 From daf41885e5481b80b15b4b2987f071608b7ad235 Mon Sep 17 00:00:00 2001 From: Thomas Mueller <thomas.mueller@tmit.eu> Date: Wed, 5 Sep 2012 22:53:48 +0200 Subject: jquery added to ignorelist for l10n --- core/l10n/ignorelist | 1 + 1 file changed, 1 insertion(+) create mode 100644 core/l10n/ignorelist (limited to 'core') diff --git a/core/l10n/ignorelist b/core/l10n/ignorelist new file mode 100644 index 00000000000..a2b225cbe4a --- /dev/null +++ b/core/l10n/ignorelist @@ -0,0 +1 @@ +js/jquery-ui-1.8.16.custom.min.js -- cgit v1.2.3 From af3e7674898251f27cc5ec4fe5337583a1eb2398 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud <thomas.mueller@tmit.eu> Date: Thu, 6 Sep 2012 02:06:37 +0200 Subject: [tx-robot] updated from transifex --- apps/files/l10n/ca.php | 3 +- apps/files/l10n/cs_CZ.php | 58 ++++++++++--------- apps/files/l10n/da.php | 2 +- apps/files/l10n/de.php | 3 +- apps/files/l10n/el.php | 2 +- apps/files/l10n/eo.php | 2 +- apps/files/l10n/es.php | 3 +- apps/files/l10n/et_EE.php | 2 +- apps/files/l10n/eu.php | 2 +- apps/files/l10n/fa.php | 2 +- apps/files/l10n/fi_FI.php | 3 +- apps/files/l10n/fr.php | 3 +- apps/files/l10n/gl.php | 2 +- apps/files/l10n/hr.php | 2 +- apps/files/l10n/hu_HU.php | 2 +- apps/files/l10n/id.php | 2 +- apps/files/l10n/it.php | 3 +- apps/files/l10n/ja_JP.php | 3 +- apps/files/l10n/ko.php | 2 +- apps/files/l10n/lb.php | 2 +- apps/files/l10n/lv.php | 2 +- apps/files/l10n/nb_NO.php | 2 +- apps/files/l10n/nl.php | 4 +- apps/files/l10n/pl.php | 3 +- apps/files/l10n/pt_BR.php | 2 +- apps/files/l10n/pt_PT.php | 2 +- apps/files/l10n/ru.php | 2 +- apps/files/l10n/sl.php | 3 +- apps/files/l10n/sv.php | 3 +- apps/files/l10n/th_TH.php | 3 +- apps/files/l10n/tr.php | 2 +- apps/files/l10n/zh_CN.GB2312.php | 2 +- apps/files/l10n/zh_CN.php | 2 +- apps/files_encryption/l10n/cs_CZ.php | 8 +-- apps/files_encryption/l10n/sk_SK.php | 6 ++ apps/files_external/l10n/cs_CZ.php | 16 ++--- apps/files_external/l10n/fi_FI.php | 2 + apps/files_sharing/l10n/cs_CZ.php | 5 +- apps/files_sharing/l10n/nl.php | 3 +- apps/files_versions/l10n/cs_CZ.php | 4 +- apps/user_ldap/l10n/cs_CZ.php | 46 +++++++-------- apps/user_ldap/l10n/fi_FI.php | 6 ++ core/l10n/ca.php | 1 - core/l10n/cs_CZ.php | 38 ++++++------ core/l10n/da.php | 1 - core/l10n/de.php | 1 - core/l10n/el.php | 1 - core/l10n/eo.php | 1 - core/l10n/es.php | 1 - core/l10n/et_EE.php | 1 - core/l10n/eu.php | 1 - core/l10n/fa.php | 1 - core/l10n/fi_FI.php | 1 - core/l10n/fr.php | 1 - core/l10n/gl.php | 1 - core/l10n/hr.php | 1 - core/l10n/hu_HU.php | 1 - core/l10n/it.php | 1 - core/l10n/ja_JP.php | 1 - core/l10n/ko.php | 1 - core/l10n/lt_LT.php | 1 - core/l10n/mk.php | 1 - core/l10n/ms_MY.php | 1 - core/l10n/nb_NO.php | 1 - core/l10n/nl.php | 2 +- core/l10n/pl.php | 1 - core/l10n/pt_BR.php | 1 - core/l10n/pt_PT.php | 1 - core/l10n/ru.php | 1 - core/l10n/sk_SK.php | 1 - core/l10n/sl.php | 1 - core/l10n/sv.php | 1 - core/l10n/th_TH.php | 1 - core/l10n/tr.php | 1 - core/l10n/vi.php | 1 - core/l10n/zh_CN.GB2312.php | 1 - core/l10n/zh_TW.php | 1 - l10n/af/core.po | 38 ++++++------ l10n/af/files.po | 46 ++++++++------- l10n/ar/core.po | 38 ++++++------ l10n/ar/files.po | 46 ++++++++------- l10n/ar_SA/core.po | 38 ++++++------ l10n/ar_SA/files.po | 46 ++++++++------- l10n/bg_BG/core.po | 38 ++++++------ l10n/bg_BG/files.po | 46 ++++++++------- l10n/ca/core.po | 40 ++++++------- l10n/ca/files.po | 51 ++++++++-------- l10n/ca/settings.po | 13 +++-- l10n/cs_CZ/core.po | 79 ++++++++++++------------- l10n/cs_CZ/files.po | 109 ++++++++++++++++++----------------- l10n/cs_CZ/files_encryption.po | 17 +++--- l10n/cs_CZ/files_external.po | 25 ++++---- l10n/cs_CZ/files_sharing.po | 19 +++--- l10n/cs_CZ/files_versions.po | 15 ++--- l10n/cs_CZ/lib.po | 45 ++++++++------- l10n/cs_CZ/settings.po | 87 ++++++++++++++-------------- l10n/cs_CZ/user_ldap.po | 55 +++++++++--------- l10n/da/core.po | 40 ++++++------- l10n/da/files.po | 48 ++++++++------- l10n/de/core.po | 40 ++++++------- l10n/de/files.po | 50 ++++++++-------- l10n/de/settings.po | 10 ++-- l10n/el/core.po | 38 ++++++------ l10n/el/files.po | 48 ++++++++------- l10n/eo/core.po | 38 ++++++------ l10n/eo/files.po | 48 ++++++++------- l10n/es/core.po | 40 ++++++------- l10n/es/files.po | 50 ++++++++-------- l10n/es/settings.po | 12 ++-- l10n/et_EE/core.po | 38 ++++++------ l10n/et_EE/files.po | 48 ++++++++------- l10n/eu/core.po | 38 ++++++------ l10n/eu/files.po | 48 ++++++++------- l10n/eu_ES/core.po | 38 ++++++------ l10n/eu_ES/files.po | 46 ++++++++------- l10n/fa/core.po | 38 ++++++------ l10n/fa/files.po | 48 ++++++++------- l10n/fi/core.po | 38 ++++++------ l10n/fi/files.po | 46 ++++++++------- l10n/fi_FI/core.po | 38 ++++++------ l10n/fi_FI/files.po | 50 ++++++++-------- l10n/fi_FI/files_external.po | 13 +++-- l10n/fi_FI/settings.po | 12 ++-- l10n/fi_FI/user_ldap.po | 19 +++--- l10n/fr/core.po | 40 ++++++------- l10n/fr/files.po | 51 ++++++++-------- l10n/fr/settings.po | 13 +++-- l10n/gl/core.po | 38 ++++++------ l10n/gl/files.po | 48 ++++++++------- l10n/he/core.po | 38 ++++++------ l10n/he/files.po | 46 ++++++++------- l10n/hi/core.po | 38 ++++++------ l10n/hi/files.po | 46 ++++++++------- l10n/hr/core.po | 38 ++++++------ l10n/hr/files.po | 48 ++++++++------- l10n/hu_HU/core.po | 38 ++++++------ l10n/hu_HU/files.po | 48 ++++++++------- l10n/hy/core.po | 38 ++++++------ l10n/hy/files.po | 46 ++++++++------- l10n/ia/core.po | 38 ++++++------ l10n/ia/files.po | 46 ++++++++------- l10n/id/core.po | 38 ++++++------ l10n/id/files.po | 48 ++++++++------- l10n/id_ID/core.po | 38 ++++++------ l10n/id_ID/files.po | 46 ++++++++------- l10n/it/core.po | 40 ++++++------- l10n/it/files.po | 50 ++++++++-------- l10n/it/settings.po | 12 ++-- l10n/ja_JP/core.po | 40 ++++++------- l10n/ja_JP/files.po | 50 ++++++++-------- l10n/ja_JP/settings.po | 20 +++---- l10n/ko/core.po | 38 ++++++------ l10n/ko/files.po | 48 ++++++++------- l10n/lb/core.po | 38 ++++++------ l10n/lb/files.po | 48 ++++++++------- l10n/lt_LT/core.po | 38 ++++++------ l10n/lt_LT/files.po | 46 ++++++++------- l10n/lv/core.po | 38 ++++++------ l10n/lv/files.po | 48 ++++++++------- l10n/mk/core.po | 38 ++++++------ l10n/mk/files.po | 46 ++++++++------- l10n/ms_MY/core.po | 38 ++++++------ l10n/ms_MY/files.po | 48 ++++++++------- l10n/nb_NO/core.po | 38 ++++++------ l10n/nb_NO/files.po | 48 ++++++++------- l10n/nl/core.po | 43 +++++++------- l10n/nl/files.po | 53 +++++++++-------- l10n/nl/files_sharing.po | 15 ++--- l10n/nl/settings.po | 23 ++++---- l10n/nn_NO/core.po | 38 ++++++------ l10n/nn_NO/files.po | 46 ++++++++------- l10n/pl/core.po | 38 ++++++------ l10n/pl/files.po | 51 ++++++++-------- l10n/pl/settings.po | 25 ++++---- l10n/pl_PL/core.po | 38 ++++++------ l10n/pl_PL/files.po | 46 ++++++++------- l10n/pt_BR/core.po | 38 ++++++------ l10n/pt_BR/files.po | 48 ++++++++------- l10n/pt_PT/core.po | 38 ++++++------ l10n/pt_PT/files.po | 48 ++++++++------- l10n/ro/core.po | 38 ++++++------ l10n/ro/files.po | 46 ++++++++------- l10n/ru/core.po | 38 ++++++------ l10n/ru/files.po | 48 ++++++++------- l10n/ru_RU/core.po | 38 ++++++------ l10n/ru_RU/files.po | 46 ++++++++------- l10n/sk_SK/core.po | 38 ++++++------ l10n/sk_SK/files.po | 46 ++++++++------- l10n/sk_SK/files_encryption.po | 17 +++--- l10n/sl/core.po | 40 ++++++------- l10n/sl/files.po | 50 ++++++++-------- l10n/sl/settings.po | 12 ++-- l10n/so/core.po | 38 ++++++------ l10n/so/files.po | 46 ++++++++------- l10n/sr/core.po | 38 ++++++------ l10n/sr/files.po | 46 ++++++++------- l10n/sr@latin/core.po | 38 ++++++------ l10n/sr@latin/files.po | 46 ++++++++------- l10n/sv/core.po | 40 ++++++------- l10n/sv/files.po | 50 ++++++++-------- l10n/sv/settings.po | 20 +++---- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/th_TH/core.po | 40 ++++++------- l10n/th_TH/files.po | 50 ++++++++-------- l10n/th_TH/settings.po | 20 +++---- l10n/tr/core.po | 40 ++++++------- l10n/tr/files.po | 48 ++++++++------- l10n/uk/core.po | 38 ++++++------ l10n/uk/files.po | 48 ++++++++------- l10n/vi/core.po | 38 ++++++------ l10n/vi/files.po | 46 ++++++++------- l10n/zh_CN.GB2312/core.po | 38 ++++++------ l10n/zh_CN.GB2312/files.po | 48 ++++++++------- l10n/zh_CN/core.po | 38 ++++++------ l10n/zh_CN/files.po | 48 ++++++++------- l10n/zh_TW/core.po | 40 ++++++------- l10n/zh_TW/files.po | 46 ++++++++------- lib/l10n/cs_CZ.php | 15 +++-- settings/l10n/ca.php | 3 + settings/l10n/cs_CZ.php | 60 ++++++++++++------- settings/l10n/de.php | 3 + settings/l10n/es.php | 3 + settings/l10n/fi_FI.php | 3 + settings/l10n/fr.php | 3 + settings/l10n/it.php | 3 + settings/l10n/ja_JP.php | 7 +++ settings/l10n/nl.php | 8 +++ settings/l10n/pl.php | 9 +++ settings/l10n/sl.php | 3 + settings/l10n/sv.php | 7 +++ settings/l10n/th_TH.php | 7 +++ 239 files changed, 3091 insertions(+), 2987 deletions(-) create mode 100644 apps/files_encryption/l10n/sk_SK.php (limited to 'core') diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index d887c8a9521..6d232f217e8 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -12,8 +12,8 @@ "replace" => "substitueix", "cancel" => "cancel·la", "replaced" => "substituït", -"with" => "per", "undo" => "desfés", +"with" => "per", "deleted" => "esborrat", "generating ZIP-file, it may take some time." => "s'estan generant fitxers ZIP, pot trigar una estona.", "Unable to upload your file as it is a directory or has 0 bytes" => "No es pot pujar el fitxer perquè és una carpeta o té 0 bytes", @@ -35,6 +35,7 @@ "Enable ZIP-download" => "Activa la baixada ZIP", "0 is unlimited" => "0 és sense límit", "Maximum input size for ZIP files" => "Mida màxima d'entrada per fitxers ZIP", +"Save" => "Desar", "New" => "Nou", "Text file" => "Fitxer de text", "Folder" => "Carpeta", diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index 4dc4b8b0cb1..228f6a3898e 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -1,51 +1,53 @@ <?php $TRANSLATIONS = array( "There is no error, the file uploaded with success" => "Soubor byl odeslán úspěšně", -"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "Odeslaný soubor přesáhl velikostí parametr upload_max_filesize v php.ini", -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Odeslaný soubor přesáhl velikostí parametr MAX_FILE_SIZE specifikovaný v HTML formuláři", +"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "Odeslaný soubor přesáhl svou velikostí parametr upload_max_filesize v php.ini", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Odeslaný soubor přesáhl svou velikostí parametr MAX_FILE_SIZE specifikovaný v formuláři HTML", "The uploaded file was only partially uploaded" => "Soubor byl odeslán pouze částečně", -"No file was uploaded" => "Soubor nebyl odeslán", -"Missing a temporary folder" => "Chybí adresář pro sočasné soubory", -"Failed to write to disk" => "Zápis na disk se nezdařil", +"No file was uploaded" => "Žádný soubor nebyl odeslán", +"Missing a temporary folder" => "Chybí adresář pro dočasné soubory", +"Failed to write to disk" => "Zápis na disk selhal", "Files" => "Soubory", -"Delete" => "Vymazat", +"Delete" => "Smazat", "already exists" => "již existuje", -"replace" => "zaměnit", -"cancel" => "storno", -"replaced" => "zaměněno", -"with" => "s", +"replace" => "nahradit", +"cancel" => "zrušit", +"replaced" => "nahrazeno", "undo" => "zpět", +"with" => "s", "deleted" => "smazáno", -"generating ZIP-file, it may take some time." => "generuji ZIP soubor, může to chvíli trvat", -"Unable to upload your file as it is a directory or has 0 bytes" => "Nemohu nahrát váš soubor neboť to je adresář a nebo má nulovou délku.", -"Upload Error" => "Chyba při nahrávání", -"Pending" => "Očekává se", -"Upload cancelled." => "Nahrávání zrušeno", -"Invalid name, '/' is not allowed." => "Špatné jméno, znak '/' není povolen", +"generating ZIP-file, it may take some time." => "generuji ZIP soubor, může to nějakou dobu trvat.", +"Unable to upload your file as it is a directory or has 0 bytes" => "Nelze odeslat Váš soubor, protože je to adresář nebo má velikost 0 bajtů", +"Upload Error" => "Chyba odesílání", +"Pending" => "Čekající", +"Upload cancelled." => "Odesílání zrušeno.", +"File upload is in progress. Leaving the page now will cancel the upload." => "Probíhá odesílání souboru. Opuštění stránky vyústí ve zrušení nahrávání.", +"Invalid name, '/' is not allowed." => "Neplatný název, znak '/' není povolen", "Size" => "Velikost", "Modified" => "Změněno", -"folder" => "adresář", -"folders" => "adresáře", +"folder" => "složka", +"folders" => "složky", "file" => "soubor", "files" => "soubory", -"File handling" => "Nastavení chování k souborům", -"Maximum upload size" => "Maximální velikost ukládaných souborů", -"max. possible: " => "největší možná:", -"Needed for multi-file and folder downloads." => "Potřeba pro vícesoborvé stahování a stahování adresářů", +"File handling" => "Zacházení se soubory", +"Maximum upload size" => "Maximální velikost pro odesílání", +"max. possible: " => "největší možná: ", +"Needed for multi-file and folder downloads." => "Potřebné pro více-souborové stahování a stahování složek.", "Enable ZIP-download" => "Povolit ZIP-stahování", "0 is unlimited" => "0 znamená bez omezení", "Maximum input size for ZIP files" => "Maximální velikost vstupu pro ZIP soubory", +"Save" => "Uložit", "New" => "Nový", "Text file" => "Textový soubor", -"Folder" => "Adresář", +"Folder" => "Složka", "From url" => "Z url", -"Upload" => "Uložit", -"Cancel upload" => "Zrušit upload", -"Nothing in here. Upload something!" => "Žádný obsah. Uložte si něco!", +"Upload" => "Odeslat", +"Cancel upload" => "Zrušit odesílání", +"Nothing in here. Upload something!" => "Žádný obsah. Nahrajte něco.", "Name" => "Název", "Share" => "Sdílet", "Download" => "Stáhnout", -"Upload too large" => "Příliš velký soubor", -"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Soubory, které se snažíte uložit, překračují maximální velikosti uploadu na tomto serveru.", +"Upload too large" => "Odeslaný soubor je příliš velký", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Soubory, které se snažíte odeslat, překračují limit velikosti odesílání na tomto serveru.", "Files are being scanned, please wait." => "Soubory se prohledávají, prosím čekejte.", "Current scanning" => "Aktuální prohledávání" ); diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index a842088e7b5..020f6142ec6 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -12,8 +12,8 @@ "replace" => "erstat", "cancel" => "fortryd", "replaced" => "erstattet", -"with" => "med", "undo" => "fortryd", +"with" => "med", "deleted" => "Slettet", "generating ZIP-file, it may take some time." => "genererer ZIP-fil, det kan tage lidt tid.", "Unable to upload your file as it is a directory or has 0 bytes" => "Kunne ikke uploade din fil, da det enten er en mappe eller er tom", diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index 7a3e61f9bec..a267d31009b 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -12,8 +12,8 @@ "replace" => "ersetzen", "cancel" => "abbrechen", "replaced" => "ersetzt", -"with" => "mit", "undo" => "rückgängig machen", +"with" => "mit", "deleted" => "gelöscht", "generating ZIP-file, it may take some time." => "Erstelle ZIP-Datei. Dies kann eine Weile dauern.", "Unable to upload your file as it is a directory or has 0 bytes" => "Ihre Datei kann nicht hochgeladen werden, da sie ein Verzeichnis ist oder 0 Bytes hat.", @@ -35,6 +35,7 @@ "Enable ZIP-download" => "ZIP-Download aktivieren", "0 is unlimited" => "0 bedeutet unbegrenzt", "Maximum input size for ZIP files" => "Maximale Größe für ZIP-Dateien", +"Save" => "Speichern", "New" => "Neu", "Text file" => "Textdatei", "Folder" => "Ordner", diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index 3ab4b120949..9f311c6b28e 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -12,8 +12,8 @@ "replace" => "αντικατέστησε", "cancel" => "ακύρωση", "replaced" => "αντικαταστάθηκε", -"with" => "με", "undo" => "αναίρεση", +"with" => "με", "deleted" => "διαγράφηκε", "generating ZIP-file, it may take some time." => "παραγωγή αρχείου ZIP, ίσως διαρκέσει αρκετά.", "Unable to upload your file as it is a directory or has 0 bytes" => "Αδυναμία στην μεταφόρτωση του αρχείου σας αφού είναι φάκελος ή έχει 0 bytes", diff --git a/apps/files/l10n/eo.php b/apps/files/l10n/eo.php index acaf06e830c..bf17b97244c 100644 --- a/apps/files/l10n/eo.php +++ b/apps/files/l10n/eo.php @@ -12,8 +12,8 @@ "replace" => "anstataŭigi", "cancel" => "nuligi", "replaced" => "anstataŭigita", -"with" => "kun", "undo" => "malfari", +"with" => "kun", "deleted" => "forigita", "generating ZIP-file, it may take some time." => "generanta ZIP-dosiero, ĝi povas daŭri iom da tempo", "Unable to upload your file as it is a directory or has 0 bytes" => "Ne eblis alŝuti vian dosieron ĉar ĝi estas dosierujo aŭ havas 0 duumokojn", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index 8e17b7931b0..c998c8cb57a 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -12,8 +12,8 @@ "replace" => "reemplazar", "cancel" => "cancelar", "replaced" => "reemplazado", -"with" => "con", "undo" => "deshacer", +"with" => "con", "deleted" => "borrado", "generating ZIP-file, it may take some time." => "generando un fichero ZIP, puede llevar un tiempo.", "Unable to upload your file as it is a directory or has 0 bytes" => "No ha sido posible subir tu archivo porque es un directorio o tiene 0 bytes", @@ -35,6 +35,7 @@ "Enable ZIP-download" => "Habilitar descarga en ZIP", "0 is unlimited" => "0 es ilimitado", "Maximum input size for ZIP files" => "Tamaño máximo para archivos ZIP de entrada", +"Save" => "Guardar", "New" => "Nuevo", "Text file" => "Archivo de texto", "Folder" => "Carpeta", diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index 956c5cc9115..0763745788b 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -12,8 +12,8 @@ "replace" => "asenda", "cancel" => "loobu", "replaced" => "asendatud", -"with" => "millega", "undo" => "tagasi", +"with" => "millega", "deleted" => "kustutatud", "generating ZIP-file, it may take some time." => "ZIP-faili loomine, see võib veidi aega võtta.", "Unable to upload your file as it is a directory or has 0 bytes" => "Sinu faili üleslaadimine ebaõnnestus, kuna see on kaust või selle suurus on 0 baiti", diff --git a/apps/files/l10n/eu.php b/apps/files/l10n/eu.php index d9c2689d1cd..3897a5580f3 100644 --- a/apps/files/l10n/eu.php +++ b/apps/files/l10n/eu.php @@ -12,8 +12,8 @@ "replace" => "ordeztu", "cancel" => "ezeztatu", "replaced" => "ordeztua", -"with" => "honekin", "undo" => "desegin", +"with" => "honekin", "deleted" => "ezabatuta", "generating ZIP-file, it may take some time." => "ZIP-fitxategia sortzen ari da, denbora har dezake", "Unable to upload your file as it is a directory or has 0 bytes" => "Ezin da zure fitxategia igo, karpeta bat da edo 0 byt ditu", diff --git a/apps/files/l10n/fa.php b/apps/files/l10n/fa.php index 4dac88fc542..e6ddd50f917 100644 --- a/apps/files/l10n/fa.php +++ b/apps/files/l10n/fa.php @@ -12,8 +12,8 @@ "replace" => "جایگزین", "cancel" => "لغو", "replaced" => "جایگزینشده", -"with" => "همراه", "undo" => "بازگشت", +"with" => "همراه", "deleted" => "حذف شده", "generating ZIP-file, it may take some time." => "در حال ساخت فایل فشرده ممکن است زمان زیادی به طول بیانجامد", "Unable to upload your file as it is a directory or has 0 bytes" => "ناتوان در بارگذاری یا فایل یک پوشه است یا 0بایت دارد", diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index 3ed56de6419..eaed70c6246 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -12,8 +12,8 @@ "replace" => "korvaa", "cancel" => "peru", "replaced" => "korvattu", -"with" => "käyttäen", "undo" => "kumoa", +"with" => "käyttäen", "deleted" => "poistettu", "generating ZIP-file, it may take some time." => "luodaan ZIP-tiedostoa, tämä saattaa kestää hetken.", "Unable to upload your file as it is a directory or has 0 bytes" => "Tiedoston lähetys epäonnistui, koska sen koko on 0 tavua tai kyseessä on kansio", @@ -35,6 +35,7 @@ "Enable ZIP-download" => "Ota ZIP-paketin lataaminen käytöön", "0 is unlimited" => "0 on rajoittamaton", "Maximum input size for ZIP files" => "ZIP-tiedostojen enimmäiskoko", +"Save" => "Tallenna", "New" => "Uusi", "Text file" => "Tekstitiedosto", "Folder" => "Kansio", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index d0a4c020f38..0b7d226de74 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -12,8 +12,8 @@ "replace" => "remplacer", "cancel" => "annuler", "replaced" => "remplacé", -"with" => "avec", "undo" => "annuler", +"with" => "avec", "deleted" => "supprimé", "generating ZIP-file, it may take some time." => "Fichier ZIP en cours d'assemblage ; cela peut prendre du temps.", "Unable to upload your file as it is a directory or has 0 bytes" => "Impossible de charger vos fichiers car il s'agit d'un dossier ou le fichier fait 0 octet.", @@ -35,6 +35,7 @@ "Enable ZIP-download" => "Activer le téléchargement ZIP", "0 is unlimited" => "0 est illimité", "Maximum input size for ZIP files" => "Taille maximale pour les fichiers ZIP", +"Save" => "Sauvegarder", "New" => "Nouveau", "Text file" => "Fichier texte", "Folder" => "Dossier", diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index 3a36a23f0ca..67293de5cb7 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -12,8 +12,8 @@ "replace" => "substituír", "cancel" => "cancelar", "replaced" => "substituído", -"with" => "con", "undo" => "desfacer", +"with" => "con", "deleted" => "eliminado", "generating ZIP-file, it may take some time." => "xerando ficheiro ZIP, pode levar un anaco.", "Unable to upload your file as it is a directory or has 0 bytes" => "Non se puido subir o ficheiro pois ou é un directorio ou ten 0 bytes", diff --git a/apps/files/l10n/hr.php b/apps/files/l10n/hr.php index cb8eb4033cf..b05b7c568b4 100644 --- a/apps/files/l10n/hr.php +++ b/apps/files/l10n/hr.php @@ -12,8 +12,8 @@ "replace" => "zamjeni", "cancel" => "odustani", "replaced" => "zamjenjeno", -"with" => "sa", "undo" => "vrati", +"with" => "sa", "deleted" => "izbrisano", "generating ZIP-file, it may take some time." => "generiranje ZIP datoteke, ovo može potrajati.", "Unable to upload your file as it is a directory or has 0 bytes" => "Nemoguće poslati datoteku jer je prazna ili je direktorij", diff --git a/apps/files/l10n/hu_HU.php b/apps/files/l10n/hu_HU.php index 8d52765e93e..95b3c57ce11 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -12,8 +12,8 @@ "replace" => "cserél", "cancel" => "mégse", "replaced" => "kicserélve", -"with" => "-val/-vel", "undo" => "visszavon", +"with" => "-val/-vel", "deleted" => "törölve", "generating ZIP-file, it may take some time." => "ZIP-fájl generálása, ez eltarthat egy ideig.", "Unable to upload your file as it is a directory or has 0 bytes" => "Nem tölthető fel, mert mappa volt, vagy 0 byte méretű", diff --git a/apps/files/l10n/id.php b/apps/files/l10n/id.php index 399056bf278..351d0641388 100644 --- a/apps/files/l10n/id.php +++ b/apps/files/l10n/id.php @@ -12,8 +12,8 @@ "replace" => "mengganti", "cancel" => "batalkan", "replaced" => "diganti", -"with" => "dengan", "undo" => "batal dikerjakan", +"with" => "dengan", "deleted" => "dihapus", "generating ZIP-file, it may take some time." => "membuat berkas ZIP, ini mungkin memakan waktu.", "Unable to upload your file as it is a directory or has 0 bytes" => "Gagal mengunggah berkas anda karena berupa direktori atau mempunyai ukuran 0 byte", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index 607969746cf..d0deb4f0f07 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -12,8 +12,8 @@ "replace" => "sostituisci", "cancel" => "annulla", "replaced" => "sostituito", -"with" => "con", "undo" => "annulla", +"with" => "con", "deleted" => "eliminati", "generating ZIP-file, it may take some time." => "creazione file ZIP, potrebbe richiedere del tempo.", "Unable to upload your file as it is a directory or has 0 bytes" => "Impossibile inviare il file poiché è una cartella o ha dimensione 0 byte", @@ -35,6 +35,7 @@ "Enable ZIP-download" => "Abilita scaricamento ZIP", "0 is unlimited" => "0 è illimitato", "Maximum input size for ZIP files" => "Dimensione massima per i file ZIP", +"Save" => "Salva", "New" => "Nuovo", "Text file" => "File di testo", "Folder" => "Cartella", diff --git a/apps/files/l10n/ja_JP.php b/apps/files/l10n/ja_JP.php index 6dbdf8215da..2de716fec8a 100644 --- a/apps/files/l10n/ja_JP.php +++ b/apps/files/l10n/ja_JP.php @@ -12,8 +12,8 @@ "replace" => "置き換え", "cancel" => "キャンセル", "replaced" => "置換:", -"with" => "←", "undo" => "元に戻す", +"with" => "←", "deleted" => "削除", "generating ZIP-file, it may take some time." => "ZIPファイルを生成中です、しばらくお待ちください。", "Unable to upload your file as it is a directory or has 0 bytes" => "アップロード使用としているファイルがディレクトリ、もしくはサイズが0バイトのため、アップロードできません。", @@ -35,6 +35,7 @@ "Enable ZIP-download" => "ZIP形式のダウンロードを有効にする", "0 is unlimited" => "0を指定した場合は無制限", "Maximum input size for ZIP files" => "ZIPファイルへの最大入力サイズ", +"Save" => "保存", "New" => "新規", "Text file" => "テキストファイル", "Folder" => "フォルダ", diff --git a/apps/files/l10n/ko.php b/apps/files/l10n/ko.php index dafd8597024..121be7d1abb 100644 --- a/apps/files/l10n/ko.php +++ b/apps/files/l10n/ko.php @@ -12,8 +12,8 @@ "replace" => "대체", "cancel" => "취소", "replaced" => "대체됨", -"with" => "와", "undo" => "복구", +"with" => "와", "deleted" => "삭제", "generating ZIP-file, it may take some time." => "ZIP파일 생성에 시간이 걸릴 수 있습니다.", "Unable to upload your file as it is a directory or has 0 bytes" => "이 파일은 디렉토리이거나 0 바이트이기 때문에 업로드 할 수 없습니다.", diff --git a/apps/files/l10n/lb.php b/apps/files/l10n/lb.php index 7c8244a8747..92acea1d117 100644 --- a/apps/files/l10n/lb.php +++ b/apps/files/l10n/lb.php @@ -12,8 +12,8 @@ "replace" => "ersetzen", "cancel" => "ofbriechen", "replaced" => "ersat", -"with" => "mat", "undo" => "réckgängeg man", +"with" => "mat", "deleted" => "geläscht", "generating ZIP-file, it may take some time." => "Et gëtt eng ZIP-File generéiert, dëst ka bëssen daueren.", "Unable to upload your file as it is a directory or has 0 bytes" => "Kann deng Datei net eroplueden well et en Dossier ass oder 0 byte grouss ass.", diff --git a/apps/files/l10n/lv.php b/apps/files/l10n/lv.php index 2ce800a065e..eedab2546c5 100644 --- a/apps/files/l10n/lv.php +++ b/apps/files/l10n/lv.php @@ -7,8 +7,8 @@ "replace" => "aizvietot", "cancel" => "atcelt", "replaced" => "aizvietots", -"with" => "ar", "undo" => "vienu soli atpakaļ", +"with" => "ar", "deleted" => "izdzests", "generating ZIP-file, it may take some time." => "lai uzģenerētu ZIP failu, kāds brīdis ir jāpagaida", "Unable to upload your file as it is a directory or has 0 bytes" => "Nav iespējams augšuplādēt jūsu failu, jo tāds jau eksistē vai arī failam nav izmēra (0 baiti)", diff --git a/apps/files/l10n/nb_NO.php b/apps/files/l10n/nb_NO.php index 92d0c23bfd2..4a747af2f3a 100644 --- a/apps/files/l10n/nb_NO.php +++ b/apps/files/l10n/nb_NO.php @@ -12,8 +12,8 @@ "replace" => "erstatt", "cancel" => "avbryt", "replaced" => "erstattet", -"with" => "med", "undo" => "angre", +"with" => "med", "deleted" => "slettet", "generating ZIP-file, it may take some time." => "opprettet ZIP-fil, dette kan ta litt tid", "Unable to upload your file as it is a directory or has 0 bytes" => "Kan ikke laste opp filen din siden det er en mappe eller den har 0 bytes", diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index fb7ea34b9b8..7acb15054c5 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -12,14 +12,15 @@ "replace" => "vervang", "cancel" => "annuleren", "replaced" => "vervangen", -"with" => "door", "undo" => "ongedaan maken", +"with" => "door", "deleted" => "verwijderd", "generating ZIP-file, it may take some time." => "aanmaken ZIP-file, dit kan enige tijd duren.", "Unable to upload your file as it is a directory or has 0 bytes" => "uploaden van de file mislukt, het is of een directory of de bestandsgrootte is 0 bytes", "Upload Error" => "Upload Fout", "Pending" => "Wachten", "Upload cancelled." => "Uploaden geannuleerd.", +"File upload is in progress. Leaving the page now will cancel the upload." => "Bestands upload is bezig. Wanneer de pagina nu verlaten wordt, stopt de upload.", "Invalid name, '/' is not allowed." => "Ongeldige naam, '/' is niet toegestaan.", "Size" => "Bestandsgrootte", "Modified" => "Laatst aangepast", @@ -34,6 +35,7 @@ "Enable ZIP-download" => "Zet ZIP-download aan", "0 is unlimited" => "0 is ongelimiteerd", "Maximum input size for ZIP files" => "Maximale grootte voor ZIP bestanden", +"Save" => "Opslaan", "New" => "Nieuw", "Text file" => "Tekstbestand", "Folder" => "Map", diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index a95c995d252..7fd31faefd7 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -12,8 +12,8 @@ "replace" => "zastap", "cancel" => "anuluj", "replaced" => "zastąpione", -"with" => "z", "undo" => "wróć", +"with" => "z", "deleted" => "skasuj", "generating ZIP-file, it may take some time." => "Generowanie pliku ZIP, może potrwać pewien czas.", "Unable to upload your file as it is a directory or has 0 bytes" => "Nie można wczytać pliku jeśli jest katalogiem lub ma 0 bajtów", @@ -35,6 +35,7 @@ "Enable ZIP-download" => "Włącz pobieranie ZIP-paczki", "0 is unlimited" => "0 jest nielimitowane", "Maximum input size for ZIP files" => "Maksymalna wielkość pliku wejściowego ZIP ", +"Save" => "Zapisz", "New" => "Nowy", "Text file" => "Plik tekstowy", "Folder" => "Katalog", diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php index 09c4f2b0267..e9fe7747c13 100644 --- a/apps/files/l10n/pt_BR.php +++ b/apps/files/l10n/pt_BR.php @@ -12,8 +12,8 @@ "replace" => "substituir", "cancel" => "cancelar", "replaced" => "substituido ", -"with" => "com", "undo" => "desfazer", +"with" => "com", "deleted" => "deletado", "generating ZIP-file, it may take some time." => "gerando arquivo ZIP, isso pode levar um tempo.", "Unable to upload your file as it is a directory or has 0 bytes" => "Impossível enviar seus arquivo como diretório ou ele tem 0 bytes.", diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index e413d7cbe74..998c494a695 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -12,8 +12,8 @@ "replace" => "substituir", "cancel" => "cancelar", "replaced" => "substituido", -"with" => "com", "undo" => "desfazer", +"with" => "com", "deleted" => "apagado", "generating ZIP-file, it may take some time." => "a gerar o ficheiro ZIP, poderá demorar algum tempo.", "Unable to upload your file as it is a directory or has 0 bytes" => "Não é possivel fazer o upload do ficheiro devido a ser uma pasta ou ter 0 bytes", diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index 3976baeae38..6a76c254047 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -12,8 +12,8 @@ "replace" => "заменить", "cancel" => "отмена", "replaced" => "заменён", -"with" => "с", "undo" => "отмена", +"with" => "с", "deleted" => "удален", "generating ZIP-file, it may take some time." => "создание ZIP-файла, это может занять некоторое время.", "Unable to upload your file as it is a directory or has 0 bytes" => "Не удается загрузить файл размером 0 байт в каталог", diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index fa506795d9a..85da041629f 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -12,8 +12,8 @@ "replace" => "nadomesti", "cancel" => "ekliči", "replaced" => "nadomeščen", -"with" => "z", "undo" => "razveljavi", +"with" => "z", "deleted" => "izbrisano", "generating ZIP-file, it may take some time." => "Ustvarjam ZIP datoteko. To lahko traja nekaj časa.", "Unable to upload your file as it is a directory or has 0 bytes" => "Nalaganje ni mogoče, saj gre za mapo, ali pa ima datoteka velikost 0 bajtov.", @@ -35,6 +35,7 @@ "Enable ZIP-download" => "Omogoči ZIP-prejemanje", "0 is unlimited" => "0 je neskončno", "Maximum input size for ZIP files" => "Največja vhodna velikost za ZIP datoteke", +"Save" => "Shrani", "New" => "Nova", "Text file" => "Besedilna datoteka", "Folder" => "Mapa", diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index b76914b642e..f63039d9ee7 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -12,8 +12,8 @@ "replace" => "ersätt", "cancel" => "avbryt", "replaced" => "ersatt", -"with" => "med", "undo" => "ångra", +"with" => "med", "deleted" => "raderad", "generating ZIP-file, it may take some time." => "genererar ZIP-fil, det kan ta lite tid.", "Unable to upload your file as it is a directory or has 0 bytes" => "Kunde inte ladda upp dina filer eftersom det antingen är en mapp eller har 0 bytes.", @@ -35,6 +35,7 @@ "Enable ZIP-download" => "Aktivera ZIP-nerladdning", "0 is unlimited" => "0 är oändligt", "Maximum input size for ZIP files" => "Största tillåtna storlek för ZIP-filer", +"Save" => "Spara", "New" => "Ny", "Text file" => "Textfil", "Folder" => "Mapp", diff --git a/apps/files/l10n/th_TH.php b/apps/files/l10n/th_TH.php index d80ec2d877d..689871a11dd 100644 --- a/apps/files/l10n/th_TH.php +++ b/apps/files/l10n/th_TH.php @@ -12,8 +12,8 @@ "replace" => "แทนที่", "cancel" => "ยกเลิก", "replaced" => "แทนที่แล้ว", -"with" => "กับ", "undo" => "เลิกทำ", +"with" => "กับ", "deleted" => "ลบแล้ว", "generating ZIP-file, it may take some time." => "กำลังสร้างไฟล์บีบอัด ZIP อาจใช้เวลาสักครู่", "Unable to upload your file as it is a directory or has 0 bytes" => "ไม่สามารถอัพโหลดไฟล์ของคุณได้ เนื่องจากไฟล์ดังกล่าวเป็นไดเร็กทอรี่หรือมีขนาด 0 ไบต์", @@ -35,6 +35,7 @@ "Enable ZIP-download" => "อนุญาตให้ดาวน์โหลดเป็นไฟล์ ZIP ได้", "0 is unlimited" => "0 หมายถึงไม่จำกัด", "Maximum input size for ZIP files" => "ขนาดไฟล์ ZIP สูงสุด", +"Save" => "บันทึก", "New" => "อัพโหลดไฟล์ใหม่", "Text file" => "ไฟล์ข้อความ", "Folder" => "แฟ้มเอกสาร", diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 630e3563adf..72e0e1427d3 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -12,8 +12,8 @@ "replace" => "değiştir", "cancel" => "iptal", "replaced" => "değiştirildi", -"with" => "ile", "undo" => "geri al", +"with" => "ile", "deleted" => "silindi", "generating ZIP-file, it may take some time." => "ZIP dosyası oluşturuluyor, biraz sürebilir.", "Unable to upload your file as it is a directory or has 0 bytes" => "Dosyanızın boyutu 0 byte olduğundan veya bir dizin olduğundan yüklenemedi", diff --git a/apps/files/l10n/zh_CN.GB2312.php b/apps/files/l10n/zh_CN.GB2312.php index 6703e6f9088..42063712eac 100644 --- a/apps/files/l10n/zh_CN.GB2312.php +++ b/apps/files/l10n/zh_CN.GB2312.php @@ -12,8 +12,8 @@ "replace" => "替换", "cancel" => "取消", "replaced" => "替换过了", -"with" => "随着", "undo" => "撤销", +"with" => "随着", "deleted" => "删除", "generating ZIP-file, it may take some time." => "正在生成ZIP文件,这可能需要点时间", "Unable to upload your file as it is a directory or has 0 bytes" => "不能上传你指定的文件,可能因为它是个文件夹或者大小为0", diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index dc783018848..f24db8f3cb1 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -12,8 +12,8 @@ "replace" => "替换", "cancel" => "取消", "replaced" => "已经替换", -"with" => "随着", "undo" => "撤销", +"with" => "随着", "deleted" => "已经删除", "generating ZIP-file, it may take some time." => "正在生成 ZIP 文件,可能需要一些时间", "Unable to upload your file as it is a directory or has 0 bytes" => "无法上传文件,因为它是一个目录或者大小为 0 字节", diff --git a/apps/files_encryption/l10n/cs_CZ.php b/apps/files_encryption/l10n/cs_CZ.php index 15cf7705709..9be2be98092 100644 --- a/apps/files_encryption/l10n/cs_CZ.php +++ b/apps/files_encryption/l10n/cs_CZ.php @@ -1,6 +1,6 @@ <?php $TRANSLATIONS = array( -"Encryption" => "Kryptování", -"Exclude the following file types from encryption" => "Při kryptování vynechat následující typy souborů", -"None" => "Žádný", -"Enable Encryption" => "Povolit kryptování" +"Encryption" => "Šifrování", +"Exclude the following file types from encryption" => "Při šifrování vynechat následující typy souborů", +"None" => "Žádné", +"Enable Encryption" => "Povolit šifrování" ); diff --git a/apps/files_encryption/l10n/sk_SK.php b/apps/files_encryption/l10n/sk_SK.php new file mode 100644 index 00000000000..598f1294f6e --- /dev/null +++ b/apps/files_encryption/l10n/sk_SK.php @@ -0,0 +1,6 @@ +<?php $TRANSLATIONS = array( +"Encryption" => "Šifrovanie", +"Exclude the following file types from encryption" => "Vynechať nasledujúce súbory pri šifrovaní", +"None" => "Žiadne", +"Enable Encryption" => "Zapnúť šifrovanie" +); diff --git a/apps/files_external/l10n/cs_CZ.php b/apps/files_external/l10n/cs_CZ.php index e8a38d86619..75899603349 100644 --- a/apps/files_external/l10n/cs_CZ.php +++ b/apps/files_external/l10n/cs_CZ.php @@ -1,18 +1,18 @@ <?php $TRANSLATIONS = array( "External Storage" => "Externí úložiště", "Mount point" => "Přípojný bod", -"Backend" => "Končící", -"Configuration" => "Konfigurace", -"Options" => "Nastavení", +"Backend" => "Podpůrná vrstva", +"Configuration" => "Nastavení", +"Options" => "Možnosti", "Applicable" => "Platný", -"Add mount point" => "Přidat přípojný bod", +"Add mount point" => "Přidat bod připojení", "None set" => "Nenastaveno", "All Users" => "Všichni uživatelé", "Groups" => "Skupiny", "Users" => "Uživatelé", "Delete" => "Smazat", -"SSL root certificates" => "Kořenové SSL certifikáty", -"Import Root Certificate" => "Import kořenového certifikátu", -"Enable User External Storage" => "Zapnout uživatelské externí úložiště", -"Allow users to mount their own external storage" => "Povolit uživatelů připojit jejich vlastní externí úložiště" +"SSL root certificates" => "Kořenové certifikáty SSL", +"Import Root Certificate" => "Importovat kořenového certifikátu", +"Enable User External Storage" => "Zapnout externí uživatelské úložiště", +"Allow users to mount their own external storage" => "Povolit uživatelům připojení jejich vlastních externích úložišť" ); diff --git a/apps/files_external/l10n/fi_FI.php b/apps/files_external/l10n/fi_FI.php index 7dca49791e4..cea671368ed 100644 --- a/apps/files_external/l10n/fi_FI.php +++ b/apps/files_external/l10n/fi_FI.php @@ -4,6 +4,7 @@ "Backend" => "Taustaosa", "Configuration" => "Asetukset", "Options" => "Valinnat", +"Applicable" => "Sovellettavissa", "Add mount point" => "Lisää liitospiste", "None set" => "Ei asetettu", "All Users" => "Kaikki käyttäjät", @@ -12,5 +13,6 @@ "Delete" => "Poista", "SSL root certificates" => "SSL-juurivarmenteet", "Import Root Certificate" => "Tuo juurivarmenne", +"Enable User External Storage" => "Ota käyttöön ulkopuoliset tallennuspaikat", "Allow users to mount their own external storage" => "Salli käyttäjien liittää omia erillisiä tallennusvälineitä" ); diff --git a/apps/files_sharing/l10n/cs_CZ.php b/apps/files_sharing/l10n/cs_CZ.php index 4836f151099..e9185e979cd 100644 --- a/apps/files_sharing/l10n/cs_CZ.php +++ b/apps/files_sharing/l10n/cs_CZ.php @@ -1,4 +1,7 @@ <?php $TRANSLATIONS = array( "Password" => "Heslo", -"Submit" => "Potvrdit" +"Submit" => "Odeslat", +"Download" => "Stáhnout", +"No preview available for" => "Náhled není dostupný pro", +"web services under your control" => "služby webu pod Vaší kontrolou" ); diff --git a/apps/files_sharing/l10n/nl.php b/apps/files_sharing/l10n/nl.php index a4da2723cae..2f732ed662f 100644 --- a/apps/files_sharing/l10n/nl.php +++ b/apps/files_sharing/l10n/nl.php @@ -1,5 +1,6 @@ <?php $TRANSLATIONS = array( -"Password" => "Passeerwoord", +"Password" => "Wachtwoord", +"Submit" => "Verzenden", "Download" => "Downloaden", "No preview available for" => "Geen voorbeeldweergave beschikbaar voor", "web services under your control" => "Webdiensten in eigen beheer" diff --git a/apps/files_versions/l10n/cs_CZ.php b/apps/files_versions/l10n/cs_CZ.php index 3297648fa30..4f33c1915f2 100644 --- a/apps/files_versions/l10n/cs_CZ.php +++ b/apps/files_versions/l10n/cs_CZ.php @@ -1,4 +1,6 @@ <?php $TRANSLATIONS = array( -"Expire all versions" => "Vypršení všech verzí", +"Expire all versions" => "Vypršet všechny verze", +"Versions" => "Verze", +"This will delete all existing backup versions of your files" => "Odstraní všechny existující zálohované verze Vašich souborů", "Enable Files Versioning" => "Povolit verzování souborů" ); diff --git a/apps/user_ldap/l10n/cs_CZ.php b/apps/user_ldap/l10n/cs_CZ.php index 31d9d7f0895..c90dc9ed568 100644 --- a/apps/user_ldap/l10n/cs_CZ.php +++ b/apps/user_ldap/l10n/cs_CZ.php @@ -1,37 +1,37 @@ <?php $TRANSLATIONS = array( -"Host" => "Hostitel", -"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Nelze vynechat protokol vyžadující SSL. Začněte s ldaps://", -"Base DN" => "Base DN", -"You can specify Base DN for users and groups in the Advanced tab" => "V Rozšířeném nastavení můžete specifikovat pro své uživatele a skupiny element Base DN", -"User DN" => "DN uživatele", +"Host" => "Počítač", +"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Můžete vynechat protokol, vyjma pokud požadujete SSL. Tehdy začněte s ldaps://", +"Base DN" => "Základní DN", +"You can specify Base DN for users and groups in the Advanced tab" => "V rozšířeném nastavení můžete určit základní DN pro uživatele a skupiny", +"User DN" => "Uživatelské DN", "The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "DN klentského uživatele ke kterému tvoříte vazbu, např. uid=agent,dc=example,dc=com. Pro anonymní přístup ponechte údaje DN and Heslo prázdné.", "Password" => "Heslo", -"For anonymous access, leave DN and Password empty." => "Pro anonymní přístup ponechte údaje DN and Heslo prázdné.", -"User Login Filter" => "Filtr uživatelských loginů", -"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action." => "Definuje filtr, který je aplikován v průběhu logování. %%uid nahrazuje uživatelské jméno během logování.", -"use %%uid placeholder, e.g. \"uid=%%uid\"" => "použijte %%uid pro rezervované místo, např. \"uid=%%uid\"", -"User List Filter" => "Filtr uživateslkých seznamů", -"Defines the filter to apply, when retrieving users." => "Defunije filtr, který je plaikován při návratu uživatelů.", -"without any placeholder, e.g. \"objectClass=person\"." => "bez rezervace místa, např. \"objectClass=person\".", -"Group Filter" => "Filtr skupiny", -"Defines the filter to apply, when retrieving groups." => "Definuje filtr, který je aplikován při návratu skupin", -"without any placeholder, e.g. \"objectClass=posixGroup\"." => "bez rezervace místa, např. \"objectClass=posixGroup\".", +"For anonymous access, leave DN and Password empty." => "Pro anonymní přístup, ponechte údaje DN and heslo prázdné.", +"User Login Filter" => "Filtr přihlášení uživatelů", +"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action." => "Určuje použitý filtr, při pokusu o přihlášení. %%uid nahrazuje uživatelské jméno v činnosti přihlášení.", +"use %%uid placeholder, e.g. \"uid=%%uid\"" => "použijte zástupný vzor %%uid, např. \"uid=%%uid\"", +"User List Filter" => "Filtr uživatelských seznamů", +"Defines the filter to apply, when retrieving users." => "Určuje použitý filtr, pro získávaní uživatelů.", +"without any placeholder, e.g. \"objectClass=person\"." => "bez zástupných znaků, např. \"objectClass=person\".", +"Group Filter" => "Filtr skupin", +"Defines the filter to apply, when retrieving groups." => "Určuje použitý filtr, pro získávaní skupin.", +"without any placeholder, e.g. \"objectClass=posixGroup\"." => "bez zástupných znaků, např. \"objectClass=posixGroup\".", "Port" => "Port", "Base User Tree" => "Základní uživatelský strom", "Base Group Tree" => "Základní skupinový strom", "Group-Member association" => "Asociace člena skupiny", -"Use TLS" => "Použijte TLS", -"Do not use it for SSL connections, it will fail." => "Nepoužívejte pro SSL připojení, připojení selže.", +"Use TLS" => "Použít TLS", +"Do not use it for SSL connections, it will fail." => "Nepoužívejte pro připojení pomocí SSL, připojení selže.", "Case insensitve LDAP server (Windows)" => "LDAP server nerozlišující velikost znaků (Windows)", -"Turn off SSL certificate validation." => "Vypněte ověřování SSL certifikátu", -"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "pokud pracuje připojení pouze pokud je teto volba aktivní, importujte SSL certifikát LDAP serveru do Vašeho serveru ownCloud.", -"Not recommended, use for testing only." => "Není doporučeno, pouze pro účely testování.", +"Turn off SSL certificate validation." => "Vypnout ověřování SSL certifikátu.", +"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Pokud připojení pracuje pouze s touto možností, tak importujte SSL certifikát SSL serveru do Vašeho serveru ownCloud", +"Not recommended, use for testing only." => "Není doporučeno, pouze pro testovací účely.", "User Display Name Field" => "Pole pro zobrazované jméno uživatele", "The LDAP attribute to use to generate the user`s ownCloud name." => "Atribut LDAP použitý k vytvoření jména uživatele ownCloud", "Group Display Name Field" => "Pole pro zobrazení jména skupiny", "The LDAP attribute to use to generate the groups`s ownCloud name." => "Atribut LDAP použitý k vytvoření jména skupiny ownCloud", -"in bytes" => "v bytech", -"in seconds. A change empties the cache." => "ve vteřinách. Změna vyprázdní dočasnou paměť.", -"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Ponechte prázdné pro uživateslké jméno (výchozí). Jinak uveďte LDAP/AD paramerty", +"in bytes" => "v bajtech", +"in seconds. A change empties the cache." => "ve vteřinách. Změna vyprázdní vyrovnávací paměť.", +"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Ponechte prázdné pro uživatelské jméno (výchozí). Jinak uveďte LDAP/AD parametr.", "Help" => "Nápověda" ); diff --git a/apps/user_ldap/l10n/fi_FI.php b/apps/user_ldap/l10n/fi_FI.php index 8bf3a024efb..6d0040868f8 100644 --- a/apps/user_ldap/l10n/fi_FI.php +++ b/apps/user_ldap/l10n/fi_FI.php @@ -8,6 +8,7 @@ "Password" => "Salasana", "For anonymous access, leave DN and Password empty." => "Jos haluat mahdollistaa anonyymin pääsyn, jätä DN ja Salasana tyhjäksi ", "User Login Filter" => "Login suodatus", +"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action." => "Määrittelee käytettävän suodattimen, kun sisäänkirjautumista yritetään. %%uid korvaa sisäänkirjautumisessa käyttäjätunnuksen.", "use %%uid placeholder, e.g. \"uid=%%uid\"" => "käytä %%uid paikanvaraajaa, ts. \"uid=%%uid\"", "User List Filter" => "Käyttäjien suodatus", "Defines the filter to apply, when retrieving users." => "Määrittelee käytettävän suodattimen, kun käyttäjiä haetaan. ", @@ -25,7 +26,12 @@ "Turn off SSL certificate validation." => "Poista käytöstä SSL-varmenteen vahvistus", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Jos yhteys toimii vain tällä valinnalla, siirrä LDAP-palvelimen SSL-varmenne ownCloud-palvelimellesi.", "Not recommended, use for testing only." => "Ei suositella, käytä vain testausta varten.", +"User Display Name Field" => "Käyttäjän näytettävän nimen kenttä", +"The LDAP attribute to use to generate the user`s ownCloud name." => "LDAP attribuutti, jota käytetään käyttäjän ownCloud käyttäjänimenä ", +"Group Display Name Field" => "Ryhmän \"näytettävä nimi\"-kenttä", +"The LDAP attribute to use to generate the groups`s ownCloud name." => "LDAP atribuutti, jota käytetään luomaan ryhmän ownCloud nimi", "in bytes" => "tavuissa", "in seconds. A change empties the cache." => "sekunneissa. Muutos tyhjentää välimuistin.", +"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Jätä tyhjäksi käyttäjänimi (oletusasetus). Muutoin anna LDAP/AD atribuutti.", "Help" => "Ohje" ); diff --git a/core/l10n/ca.php b/core/l10n/ca.php index 52b6d68e47c..6c70c29e6cb 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -2,7 +2,6 @@ "Application name not provided." => "No s'ha facilitat cap nom per l'aplicació.", "No category to add?" => "No voleu afegir cap categoria?", "This category already exists: " => "Aquesta categoria ja existeix:", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Arranjament", "January" => "Gener", "February" => "Febrer", diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index 7daeb52e631..6a4dad08cbd 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -1,8 +1,7 @@ <?php $TRANSLATIONS = array( -"Application name not provided." => "Jméno aplikace nezadáno.", +"Application name not provided." => "Nezadán název aplikace.", "No category to add?" => "Žádná kategorie k přidání?", -"This category already exists: " => "Tato kategorie již existuje:", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", +"This category already exists: " => "Tato kategorie již existuje: ", "Settings" => "Nastavení", "January" => "Leden", "February" => "Únor", @@ -19,14 +18,14 @@ "Cancel" => "Zrušit", "No" => "Ne", "Yes" => "Ano", -"Ok" => "Budiž", +"Ok" => "Ok", "No categories selected for deletion." => "Žádné kategorie nebyly vybrány ke smazání.", "Error" => "Chyba", -"ownCloud password reset" => "Reset hesla pro ownCloud", -"Use the following link to reset your password: {link}" => "Heslo vyresetujete použitím následujícího odkazu: {link}", -"You will receive a link to reset your password via Email." => "Bude Vám zaslán odkaz pro obnovu hesla", +"ownCloud password reset" => "Obnovení hesla pro ownCloud", +"Use the following link to reset your password: {link}" => "Heslo obnovíte použitím následujícího odkazu: {link}", +"You will receive a link to reset your password via Email." => "Bude Vám e-mailem zaslán odkaz pro obnovu hesla.", "Requested" => "Požadováno", -"Login failed!" => "Přihlášení selhalo", +"Login failed!" => "Přihlášení selhalo.", "Username" => "Uživatelské jméno", "Request reset" => "Vyžádat obnovu", "Your password was reset" => "Vaše heslo bylo obnoveno", @@ -36,29 +35,30 @@ "Personal" => "Osobní", "Users" => "Uživatelé", "Apps" => "Aplikace", -"Admin" => "Admin", +"Admin" => "Administrace", "Help" => "Nápověda", -"Access forbidden" => "Přístup odmítnut", +"Access forbidden" => "Přístup zakázán", "Cloud not found" => "Cloud nebyl nalezen", "Edit categories" => "Upravit kategorie", "Add" => "Přidat", "Create an <strong>admin account</strong>" => "Vytvořit <strong>účet správce</strong>", "Password" => "Heslo", -"Advanced" => "Rozšířené volby", -"Data folder" => "Datový adresář", -"Configure the database" => "Konfigurace databáze", +"Advanced" => "Pokročilé", +"Data folder" => "Složka s daty", +"Configure the database" => "Nastavit databázi", "will be used" => "bude použito", "Database user" => "Uživatel databáze", -"Database password" => "Heslo k databázi", +"Database password" => "Heslo databáze", "Database name" => "Název databáze", +"Database tablespace" => "Tabulkový prostor databáze", "Database host" => "Hostitel databáze", -"Finish setup" => "Dokončit instalaci", +"Finish setup" => "Dokončit nastavení", "web services under your control" => "webové služby pod Vaší kontrolou", "Log out" => "Odhlásit se", -"Lost your password?" => "Zapomenuté heslo?", +"Lost your password?" => "Ztratili jste své heslo?", "remember" => "zapamatovat si", -"Log in" => "Login", +"Log in" => "Přihlásit", "You are logged out." => "Jste odhlášeni.", -"prev" => "zpět", -"next" => "vpřed" +"prev" => "předchozí", +"next" => "následující" ); diff --git a/core/l10n/da.php b/core/l10n/da.php index 398ebdb670c..4bb953a4c5d 100644 --- a/core/l10n/da.php +++ b/core/l10n/da.php @@ -2,7 +2,6 @@ "Application name not provided." => "Applikationens navn ikke medsendt", "No category to add?" => "Ingen kategori at tilføje?", "This category already exists: " => "Denne kategori eksisterer allerede: ", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Indstillinger", "January" => "Januar", "February" => "Februar", diff --git a/core/l10n/de.php b/core/l10n/de.php index fdd940ea39e..611c208fe4d 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -2,7 +2,6 @@ "Application name not provided." => "Applikationsname nicht angegeben", "No category to add?" => "Keine Kategorie hinzuzufügen?", "This category already exists: " => "Kategorie existiert bereits:", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Einstellungen", "January" => "Januar", "February" => "Februar", diff --git a/core/l10n/el.php b/core/l10n/el.php index d8f32fb51e0..18a26f892c0 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -2,7 +2,6 @@ "Application name not provided." => "Δε προσδιορίστηκε όνομα εφαρμογής", "No category to add?" => "Δεν έχετε να προστέσθέσεται μια κα", "This category already exists: " => "Αυτή η κατηγορία υπάρχει ήδη", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Ρυθμίσεις", "January" => "Ιανουάριος", "February" => "Φεβρουάριος", diff --git a/core/l10n/eo.php b/core/l10n/eo.php index f5e5ca9d0e1..930b20a30af 100644 --- a/core/l10n/eo.php +++ b/core/l10n/eo.php @@ -2,7 +2,6 @@ "Application name not provided." => "Nomo de aplikaĵo ne proviziiĝis.", "No category to add?" => "Ĉu neniu kategorio estas aldonota?", "This category already exists: " => "Ĉi tiu kategorio jam ekzistas: ", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Agordo", "January" => "Januaro", "February" => "Februaro", diff --git a/core/l10n/es.php b/core/l10n/es.php index 3a7da551b60..21866d2ed67 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -2,7 +2,6 @@ "Application name not provided." => "Nombre de la aplicación no provisto.", "No category to add?" => "¿Ninguna categoría para añadir?", "This category already exists: " => "Esta categoría ya existe: ", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Ajustes", "January" => "Enero", "February" => "Febrero", diff --git a/core/l10n/et_EE.php b/core/l10n/et_EE.php index 734021605ca..871cc25fee0 100644 --- a/core/l10n/et_EE.php +++ b/core/l10n/et_EE.php @@ -2,7 +2,6 @@ "Application name not provided." => "Rakenduse nime pole sisestatud.", "No category to add?" => "Pole kategooriat, mida lisada?", "This category already exists: " => "See kategooria on juba olemas: ", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Seaded", "January" => "Jaanuar", "February" => "Veebruar", diff --git a/core/l10n/eu.php b/core/l10n/eu.php index 2e5a2c00e2a..9e9717dd8d8 100644 --- a/core/l10n/eu.php +++ b/core/l10n/eu.php @@ -2,7 +2,6 @@ "Application name not provided." => "Aplikazioaren izena falta da", "No category to add?" => "Ez dago gehitzeko kategoriarik?", "This category already exists: " => "Kategoria hau dagoeneko existitzen da:", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Ezarpenak", "January" => "Urtarrila", "February" => "Otsaila", diff --git a/core/l10n/fa.php b/core/l10n/fa.php index 5fe98629ba2..7b7af3937b8 100644 --- a/core/l10n/fa.php +++ b/core/l10n/fa.php @@ -2,7 +2,6 @@ "Application name not provided." => "نام برنامه پیدا نشد", "No category to add?" => "آیا گروه دیگری برای افزودن ندارید", "This category already exists: " => "این گروه از قبل اضافه شده", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "تنظیمات", "January" => "ژانویه", "February" => "فبریه", diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php index 34a69b6c643..d253ee9433a 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -2,7 +2,6 @@ "Application name not provided." => "Sovelluksen nimeä ei määritelty.", "No category to add?" => "Ei lisättävää luokkaa?", "This category already exists: " => "Tämä luokka on jo olemassa: ", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Asetukset", "January" => "Tammikuu", "February" => "Helmikuu", diff --git a/core/l10n/fr.php b/core/l10n/fr.php index a5632180840..2904ebf48b2 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -2,7 +2,6 @@ "Application name not provided." => "Nom de l'application non fourni.", "No category to add?" => "Pas de catégorie à ajouter ?", "This category already exists: " => "Cette catégorie existe déjà : ", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Paramètres", "January" => "janvier", "February" => "février", diff --git a/core/l10n/gl.php b/core/l10n/gl.php index eeff78826f8..af849712199 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -2,7 +2,6 @@ "Application name not provided." => "Non se indicou o nome do aplicativo.", "No category to add?" => "Sen categoría que engadir?", "This category already exists: " => "Esta categoría xa existe: ", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Preferencias", "January" => "Xaneiro", "February" => "Febreiro", diff --git a/core/l10n/hr.php b/core/l10n/hr.php index d4e773afc1e..723cceb4d01 100644 --- a/core/l10n/hr.php +++ b/core/l10n/hr.php @@ -2,7 +2,6 @@ "Application name not provided." => "Ime aplikacije nije pribavljeno.", "No category to add?" => "Nemate kategorija koje možete dodati?", "This category already exists: " => "Ova kategorija već postoji: ", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Postavke", "January" => "Siječanj", "February" => "Veljača", diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php index dbfe2781d5f..a97c4cb8861 100644 --- a/core/l10n/hu_HU.php +++ b/core/l10n/hu_HU.php @@ -2,7 +2,6 @@ "Application name not provided." => "Alkalmazásnév hiányzik", "No category to add?" => "Nincs hozzáadandó kategória?", "This category already exists: " => "Ez a kategória már létezik", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Beállítások", "January" => "Január", "February" => "Február", diff --git a/core/l10n/it.php b/core/l10n/it.php index b7f174e57a2..8d9ac21cd43 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -2,7 +2,6 @@ "Application name not provided." => "Nome dell'applicazione non fornito.", "No category to add?" => "Nessuna categoria da aggiungere?", "This category already exists: " => "Questa categoria esiste già: ", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Impostazioni", "January" => "Gennaio", "February" => "Febbraio", diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php index bef84b09d6c..62f5e16f3ca 100644 --- a/core/l10n/ja_JP.php +++ b/core/l10n/ja_JP.php @@ -2,7 +2,6 @@ "Application name not provided." => "アプリケーション名は提供されていません。", "No category to add?" => "追加するカテゴリはありませんか?", "This category already exists: " => "このカテゴリはすでに存在します: ", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "設定", "January" => "1月", "February" => "2月", diff --git a/core/l10n/ko.php b/core/l10n/ko.php index 5a330581ff1..9f82a79c43c 100644 --- a/core/l10n/ko.php +++ b/core/l10n/ko.php @@ -2,7 +2,6 @@ "Application name not provided." => "응용 프로그램의 이름이 규정되어 있지 않습니다. ", "No category to add?" => "추가할 카테고리가 없습니까?", "This category already exists: " => "이 카테고리는 이미 존재합니다:", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "설정", "January" => "1월", "February" => "2월", diff --git a/core/l10n/lt_LT.php b/core/l10n/lt_LT.php index f36f697b67c..0a3320351cf 100644 --- a/core/l10n/lt_LT.php +++ b/core/l10n/lt_LT.php @@ -2,7 +2,6 @@ "Application name not provided." => "Nepateiktas programos pavadinimas.", "No category to add?" => "Nepridėsite jokios kategorijos?", "This category already exists: " => "Tokia kategorija jau yra:", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Nustatymai", "January" => "Sausis", "February" => "Vasaris", diff --git a/core/l10n/mk.php b/core/l10n/mk.php index af49a04f11c..3eea6cd58d1 100644 --- a/core/l10n/mk.php +++ b/core/l10n/mk.php @@ -2,7 +2,6 @@ "Application name not provided." => "Име за апликацијата не е доставено.", "No category to add?" => "Нема категорија да се додаде?", "This category already exists: " => "Оваа категорија веќе постои:", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Поставки", "January" => "Јануари", "February" => "Февруари", diff --git a/core/l10n/ms_MY.php b/core/l10n/ms_MY.php index 25da7cd8622..c99c510be62 100644 --- a/core/l10n/ms_MY.php +++ b/core/l10n/ms_MY.php @@ -2,7 +2,6 @@ "Application name not provided." => "nama applikasi tidak disediakan", "No category to add?" => "Tiada kategori untuk di tambah?", "This category already exists: " => "Kategori ini telah wujud", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Tetapan", "January" => "Januari", "February" => "Februari", diff --git a/core/l10n/nb_NO.php b/core/l10n/nb_NO.php index d30823b59f2..a8bfebb8a55 100644 --- a/core/l10n/nb_NO.php +++ b/core/l10n/nb_NO.php @@ -2,7 +2,6 @@ "Application name not provided." => "Applikasjonsnavn ikke angitt.", "No category to add?" => "Ingen kategorier å legge til?", "This category already exists: " => "Denne kategorien finnes allerede:", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Innstillinger", "January" => "Januar", "February" => "Februar", diff --git a/core/l10n/nl.php b/core/l10n/nl.php index 2c020623d6c..3497381f74c 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -28,7 +28,7 @@ "Login failed!" => "Login mislukt!", "Username" => "Gebruikersnaam", "Request reset" => "Resetaanvraag", -"Your password was reset" => "Je wachtwoord is geweizigd", +"Your password was reset" => "Je wachtwoord is gewijzigd", "To login page" => "Naar de login-pagina", "New password" => "Nieuw wachtwoord", "Reset password" => "Reset wachtwoord", diff --git a/core/l10n/pl.php b/core/l10n/pl.php index 2751b851524..5f8752b69bb 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -2,7 +2,6 @@ "Application name not provided." => "Brak nazwy dla aplikacji", "No category to add?" => "Brak kategorii", "This category already exists: " => "Ta kategoria już istnieje", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Ustawienia", "January" => "Styczeń", "February" => "Luty", diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index 46d601e6ebf..9ad2f3de53f 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -2,7 +2,6 @@ "Application name not provided." => "Nome da aplicação não foi fornecido.", "No category to add?" => "Nenhuma categoria adicionada?", "This category already exists: " => "Essa categoria já existe", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Configurações", "January" => "Janeiro", "February" => "Fevereiro", diff --git a/core/l10n/pt_PT.php b/core/l10n/pt_PT.php index 29135f0d66d..4da513c1aec 100644 --- a/core/l10n/pt_PT.php +++ b/core/l10n/pt_PT.php @@ -2,7 +2,6 @@ "Application name not provided." => "Nome da aplicação não definida.", "No category to add?" => "Nenhuma categoria para adicionar?", "This category already exists: " => "Esta categoria já existe:", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Definições", "January" => "Janeiro", "February" => "Fevereiro", diff --git a/core/l10n/ru.php b/core/l10n/ru.php index edb55577772..81b579aeb0d 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -2,7 +2,6 @@ "Application name not provided." => "Имя приложения не установлено.", "No category to add?" => "Нет категорий для добавления?", "This category already exists: " => "Эта категория уже существует: ", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Настройки", "January" => "Январь", "February" => "Февраль", diff --git a/core/l10n/sk_SK.php b/core/l10n/sk_SK.php index b6bff1e0497..8c3339170d6 100644 --- a/core/l10n/sk_SK.php +++ b/core/l10n/sk_SK.php @@ -2,7 +2,6 @@ "Application name not provided." => "Meno aplikácie nezadané.", "No category to add?" => "Žiadna kategória pre pridanie?", "This category already exists: " => "Táto kategória už existuje:", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Nastavenia", "January" => "Január", "February" => "Február", diff --git a/core/l10n/sl.php b/core/l10n/sl.php index ad412314319..b7850c28619 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -2,7 +2,6 @@ "Application name not provided." => "Ime aplikacije ni bilo določeno.", "No category to add?" => "Ni kategorije za dodajanje?", "This category already exists: " => "Ta kategorija že obstaja:", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Nastavitve", "January" => "januar", "February" => "februar", diff --git a/core/l10n/sv.php b/core/l10n/sv.php index f459272eba0..6b075f0aaf2 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -2,7 +2,6 @@ "Application name not provided." => "Programnamn har inte angetts.", "No category to add?" => "Ingen kategori att lägga till?", "This category already exists: " => "Denna kategori finns redan:", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Inställningar", "January" => "Januari", "February" => "Februari", diff --git a/core/l10n/th_TH.php b/core/l10n/th_TH.php index 4bfdb524fe0..fd25105f150 100644 --- a/core/l10n/th_TH.php +++ b/core/l10n/th_TH.php @@ -2,7 +2,6 @@ "Application name not provided." => "ยังไม่ได้ตั้งชื่อแอพพลิเคชั่น", "No category to add?" => "ไม่มีหมวดหมู่ที่ต้องการเพิ่ม?", "This category already exists: " => "หมวดหมู่นี้มีอยู่แล้ว: ", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "ตั้งค่า", "January" => "มกราคม", "February" => "กุมภาพันธ์", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index a34443e8dd7..7d6d4a33a6d 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -2,7 +2,6 @@ "Application name not provided." => "Uygulama adı verilmedi.", "No category to add?" => "Eklenecek kategori yok?", "This category already exists: " => "Bu kategori zaten mevcut: ", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Ayarlar", "January" => "Ocak", "February" => "Şubat", diff --git a/core/l10n/vi.php b/core/l10n/vi.php index 4a4c97032fd..de4764c3a54 100644 --- a/core/l10n/vi.php +++ b/core/l10n/vi.php @@ -2,7 +2,6 @@ "Application name not provided." => "Tên ứng dụng không tồn tại", "No category to add?" => "Không có danh mục được thêm?", "This category already exists: " => "Danh mục này đã được tạo :", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "Cài đặt", "January" => "Tháng 1", "February" => "Tháng 2", diff --git a/core/l10n/zh_CN.GB2312.php b/core/l10n/zh_CN.GB2312.php index 770d2b6772d..58104df3997 100644 --- a/core/l10n/zh_CN.GB2312.php +++ b/core/l10n/zh_CN.GB2312.php @@ -2,7 +2,6 @@ "Application name not provided." => "应用程序并没有被提供.", "No category to add?" => "没有分类添加了?", "This category already exists: " => "这个分类已经存在了:", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "设置", "January" => "一月", "February" => "二月", diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index 753dde0a99c..57a087fae92 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -2,7 +2,6 @@ "Application name not provided." => "未提供應用程式名稱", "No category to add?" => "無分類添加?", "This category already exists: " => "此分類已經存在:", -"ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" => "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=", "Settings" => "設定", "January" => "一月", "February" => "二月", diff --git a/l10n/af/core.po b/l10n/af/core.po index ea01e99a967..437c1e26953 100644 --- a/l10n/af/core.po +++ b/l10n/af/core.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -29,59 +29,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -113,7 +109,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" diff --git a/l10n/af/files.po b/l10n/af/files.po index f93921f751c..31f2a00b0fa 100644 --- a/l10n/af/files.po +++ b/l10n/af/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: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" @@ -55,31 +55,35 @@ msgstr "" msgid "Delete" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -95,44 +99,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 090905898dc..febb0d7a637 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -30,59 +30,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "تعديلات" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -114,7 +110,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "استخدم هذه الوصلة لاسترجاع كلمة السر: {link}" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index f0fdb23c940..52370a91d08 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/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: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -56,31 +56,35 @@ msgstr "الملفات" msgid "Delete" msgstr "محذوف" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -96,44 +100,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "حجم" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "معدل" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/ar_SA/core.po b/l10n/ar_SA/core.po index c5b0902e925..c251db4e530 100644 --- a/l10n/ar_SA/core.po +++ b/l10n/ar_SA/core.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ar_SA\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -29,59 +29,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -113,7 +109,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" diff --git a/l10n/ar_SA/files.po b/l10n/ar_SA/files.po index 7f04256bac7..f5fadbff02b 100644 --- a/l10n/ar_SA/files.po +++ b/l10n/ar_SA/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: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" "MIME-Version: 1.0\n" @@ -55,31 +55,35 @@ msgstr "" msgid "Delete" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -95,44 +99,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index f4673d7f749..681b5dd14b6 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -11,15 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -33,59 +33,55 @@ msgstr "" msgid "This category already exists: " msgstr "Категорията вече съществува:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Настройки" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Януари" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Февруари" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Март" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Април" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Май" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Юни" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Юли" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Август" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Септември" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Октомври" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Ноември" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Декември" @@ -117,7 +113,7 @@ msgstr "Грешка" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 9eb5ac463a2..c51de878e98 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/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: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -57,31 +57,35 @@ msgstr "Файлове" msgid "Delete" msgstr "Изтриване" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -97,44 +101,44 @@ msgstr "" msgid "Upload Error" msgstr "Грешка при качване" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Качването е отменено." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Неправилно име – \"/\" не е позволено." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Размер" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Променено" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "папка" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "папки" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "файл" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 821e89c924c..6366450bdd3 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 11:29+0000\n" -"Last-Translator: rogerc <rcalvoi@yahoo.com>\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ca\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -31,59 +31,55 @@ msgstr "No voleu afegir cap categoria?" msgid "This category already exists: " msgstr "Aquesta categoria ja existeix:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Arranjament" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Gener" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Febrer" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Març" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Abril" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Maig" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Juny" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Juliol" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Agost" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Setembre" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Octubre" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Novembre" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Desembre" @@ -115,7 +111,7 @@ msgstr "Error" msgid "ownCloud password reset" msgstr "estableix de nou la contrasenya Owncloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Useu l'enllaç següent per restablir la contrasenya: {link}" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 93e8a182607..baaa56b4ebe 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# <bury1000@gmail.com>, 2012. # <joan@montane.cat>, 2012. # <rcalvoi@yahoo.com>, 2011-2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -57,31 +58,35 @@ msgstr "Fitxers" msgid "Delete" msgstr "Suprimeix" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "ja existeix" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "substitueix" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "cancel·la" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "substituït" -#: js/filelist.js:195 -msgid "with" -msgstr "per" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "desfés" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "per" + +#: js/filelist.js:271 msgid "deleted" msgstr "esborrat" @@ -97,44 +102,44 @@ msgstr "No es pot pujar el fitxer perquè és una carpeta o té 0 bytes" msgid "Upload Error" msgstr "Error en la pujada" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Pendents" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "La pujada s'ha cancel·lat." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·larà." -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "El nom no és vàlid, no es permet '/'." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Mida" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Modificat" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "carpeta" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "carpetes" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "fitxer" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "fitxers" @@ -168,7 +173,7 @@ msgstr "Mida màxima d'entrada per fitxers ZIP" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Desar" #: templates/index.php:7 msgid "New" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index baded31fd54..28539a5b19a 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# <bury1000@gmail.com>, 2012. # <joan@montane.cat>, 2012. # <rcalvoi@yahoo.com>, 2011-2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 11:42+0000\n" +"Last-Translator: bury1000 <bury1000@gmail.com>\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -67,12 +68,12 @@ msgstr "S'ha canviat l'idioma" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "No es pot afegir l'usuari al grup %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "No es pot eliminar l'usuari del grup %s" #: js/apps.js:18 msgid "Error" @@ -191,7 +192,7 @@ msgstr "Mireu la pàgina d'aplicacions a apps.owncloud.com" #: templates/apps.php:30 msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" -msgstr "" +msgstr "<span class=\"licence\"></span>-propietat de <span class=\"author\"></span>" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 3db3e84583e..c1d1ba2da07 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -4,25 +4,26 @@ # # Translators: # Jan Krejci <krejca85@gmail.com>, 2011. -# Martin <fireball@atlas.cz>, 2011, 2012. +# Martin <fireball@atlas.cz>, 2011-2012. # Michal Hrušecký <Michal@hrusecky.net>, 2012. +# Tomáš Chvátal <tomas.chvatal@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: cs_CZ\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." -msgstr "Jméno aplikace nezadáno." +msgstr "Nezadán název aplikace." #: ajax/vcategories/add.php:29 msgid "No category to add?" @@ -30,61 +31,57 @@ msgstr "Žádná kategorie k přidání?" #: ajax/vcategories/add.php:36 msgid "This category already exists: " -msgstr "Tato kategorie již existuje:" +msgstr "Tato kategorie již existuje: " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Nastavení" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Leden" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Únor" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Březen" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Duben" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Květen" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Červen" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Červenec" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Srpen" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Září" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Říjen" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Listopad" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Prosinec" @@ -102,7 +99,7 @@ msgstr "Ano" #: js/oc-dialogs.js:177 msgid "Ok" -msgstr "Budiž" +msgstr "Ok" #: js/oc-vcategories.js:68 msgid "No categories selected for deletion." @@ -114,15 +111,15 @@ msgstr "Chyba" #: lostpassword/index.php:26 msgid "ownCloud password reset" -msgstr "Reset hesla pro ownCloud" +msgstr "Obnovení hesla pro ownCloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Heslo vyresetujete použitím následujícího odkazu: {link}" +msgstr "Heslo obnovíte použitím následujícího odkazu: {link}" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Bude Vám zaslán odkaz pro obnovu hesla" +msgstr "Bude Vám e-mailem zaslán odkaz pro obnovu hesla." #: lostpassword/templates/lostpassword.php:5 msgid "Requested" @@ -130,7 +127,7 @@ msgstr "Požadováno" #: lostpassword/templates/lostpassword.php:8 msgid "Login failed!" -msgstr "Přihlášení selhalo" +msgstr "Přihlášení selhalo." #: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 #: templates/login.php:9 @@ -171,7 +168,7 @@ msgstr "Aplikace" #: strings.php:8 msgid "Admin" -msgstr "Admin" +msgstr "Administrace" #: strings.php:9 msgid "Help" @@ -179,7 +176,7 @@ msgstr "Nápověda" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Přístup odmítnut" +msgstr "Přístup zakázán" #: templates/404.php:12 msgid "Cloud not found" @@ -203,15 +200,15 @@ msgstr "Heslo" #: templates/installation.php:36 msgid "Advanced" -msgstr "Rozšířené volby" +msgstr "Pokročilé" #: templates/installation.php:38 msgid "Data folder" -msgstr "Datový adresář" +msgstr "Složka s daty" #: templates/installation.php:45 msgid "Configure the database" -msgstr "Konfigurace databáze" +msgstr "Nastavit databázi" #: templates/installation.php:50 templates/installation.php:61 #: templates/installation.php:71 templates/installation.php:81 @@ -224,7 +221,7 @@ msgstr "Uživatel databáze" #: templates/installation.php:97 msgid "Database password" -msgstr "Heslo k databázi" +msgstr "Heslo databáze" #: templates/installation.php:101 msgid "Database name" @@ -232,7 +229,7 @@ msgstr "Název databáze" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "Tabulkový prostor databáze" #: templates/installation.php:115 msgid "Database host" @@ -240,7 +237,7 @@ msgstr "Hostitel databáze" #: templates/installation.php:120 msgid "Finish setup" -msgstr "Dokončit instalaci" +msgstr "Dokončit nastavení" #: templates/layout.guest.php:42 msgid "web services under your control" @@ -252,7 +249,7 @@ msgstr "Odhlásit se" #: templates/login.php:6 msgid "Lost your password?" -msgstr "Zapomenuté heslo?" +msgstr "Ztratili jste své heslo?" #: templates/login.php:17 msgid "remember" @@ -260,7 +257,7 @@ msgstr "zapamatovat si" #: templates/login.php:18 msgid "Log in" -msgstr "Login" +msgstr "Přihlásit" #: templates/logout.php:1 msgid "You are logged out." @@ -268,8 +265,8 @@ msgstr "Jste odhlášeni." #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "zpět" +msgstr "předchozí" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "vpřed" +msgstr "následující" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 2e9b7e78c13..53a6691385e 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Martin <fireball@atlas.cz>, 2011, 2012. +# Martin <fireball@atlas.cz>, 2011-2012. # Michal Hrušecký <Michal@hrusecky.net>, 2012. +# Tomáš Chvátal <tomas.chvatal@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -25,13 +26,13 @@ msgstr "Soubor byl odeslán úspěšně" #: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "Odeslaný soubor přesáhl velikostí parametr upload_max_filesize v php.ini" +msgstr "Odeslaný soubor přesáhl svou velikostí parametr upload_max_filesize v php.ini" #: ajax/upload.php:22 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Odeslaný soubor přesáhl velikostí parametr MAX_FILE_SIZE specifikovaný v HTML formuláři" +msgstr "Odeslaný soubor přesáhl svou velikostí parametr MAX_FILE_SIZE specifikovaný v formuláři HTML" #: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" @@ -39,15 +40,15 @@ msgstr "Soubor byl odeslán pouze částečně" #: ajax/upload.php:24 msgid "No file was uploaded" -msgstr "Soubor nebyl odeslán" +msgstr "Žádný soubor nebyl odeslán" #: ajax/upload.php:25 msgid "Missing a temporary folder" -msgstr "Chybí adresář pro sočasné soubory" +msgstr "Chybí adresář pro dočasné soubory" #: ajax/upload.php:26 msgid "Failed to write to disk" -msgstr "Zápis na disk se nezdařil" +msgstr "Zápis na disk selhal" #: appinfo/app.php:6 msgid "Files" @@ -55,104 +56,108 @@ msgstr "Soubory" #: js/fileactions.js:106 templates/index.php:56 msgid "Delete" -msgstr "Vymazat" +msgstr "Smazat" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "již existuje" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" -msgstr "zaměnit" +msgstr "nahradit" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" -msgstr "storno" +msgstr "zrušit" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" -msgstr "zaměněno" - -#: js/filelist.js:195 -msgid "with" -msgstr "s" +msgstr "nahrazeno" -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "zpět" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "s" + +#: js/filelist.js:271 msgid "deleted" msgstr "smazáno" #: js/files.js:179 msgid "generating ZIP-file, it may take some time." -msgstr "generuji ZIP soubor, může to chvíli trvat" +msgstr "generuji ZIP soubor, může to nějakou dobu trvat." #: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Nemohu nahrát váš soubor neboť to je adresář a nebo má nulovou délku." +msgstr "Nelze odeslat Váš soubor, protože je to adresář nebo má velikost 0 bajtů" #: js/files.js:208 msgid "Upload Error" -msgstr "Chyba při nahrávání" +msgstr "Chyba odesílání" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" -msgstr "Očekává se" +msgstr "Čekající" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." -msgstr "Nahrávání zrušeno" +msgstr "Odesílání zrušeno." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Probíhá odesílání souboru. Opuštění stránky vyústí ve zrušení nahrávání." -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." -msgstr "Špatné jméno, znak '/' není povolen" +msgstr "Neplatný název, znak '/' není povolen" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Velikost" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Změněno" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" -msgstr "adresář" +msgstr "složka" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" -msgstr "adresáře" +msgstr "složky" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "soubor" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "soubory" #: templates/admin.php:5 msgid "File handling" -msgstr "Nastavení chování k souborům" +msgstr "Zacházení se soubory" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Maximální velikost ukládaných souborů" +msgstr "Maximální velikost pro odesílání" #: templates/admin.php:7 msgid "max. possible: " -msgstr "největší možná:" +msgstr "největší možná: " #: templates/admin.php:9 msgid "Needed for multi-file and folder downloads." -msgstr "Potřeba pro vícesoborvé stahování a stahování adresářů" +msgstr "Potřebné pro více-souborové stahování a stahování složek." #: templates/admin.php:9 msgid "Enable ZIP-download" @@ -168,7 +173,7 @@ msgstr "Maximální velikost vstupu pro ZIP soubory" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Uložit" #: templates/index.php:7 msgid "New" @@ -180,7 +185,7 @@ msgstr "Textový soubor" #: templates/index.php:10 msgid "Folder" -msgstr "Adresář" +msgstr "Složka" #: templates/index.php:11 msgid "From url" @@ -188,15 +193,15 @@ msgstr "Z url" #: templates/index.php:21 msgid "Upload" -msgstr "Uložit" +msgstr "Odeslat" #: templates/index.php:27 msgid "Cancel upload" -msgstr "Zrušit upload" +msgstr "Zrušit odesílání" #: templates/index.php:39 msgid "Nothing in here. Upload something!" -msgstr "Žádný obsah. Uložte si něco!" +msgstr "Žádný obsah. Nahrajte něco." #: templates/index.php:47 msgid "Name" @@ -212,13 +217,13 @@ msgstr "Stáhnout" #: templates/index.php:64 msgid "Upload too large" -msgstr "Příliš velký soubor" +msgstr "Odeslaný soubor je příliš velký" #: templates/index.php:66 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Soubory, které se snažíte uložit, překračují maximální velikosti uploadu na tomto serveru." +msgstr "Soubory, které se snažíte odeslat, překračují limit velikosti odesílání na tomto serveru." #: templates/index.php:71 msgid "Files are being scanned, please wait." diff --git a/l10n/cs_CZ/files_encryption.po b/l10n/cs_CZ/files_encryption.po index 4055cc18fcc..96298cc2205 100644 --- a/l10n/cs_CZ/files_encryption.po +++ b/l10n/cs_CZ/files_encryption.po @@ -4,32 +4,33 @@ # # Translators: # Martin <fireball@atlas.cz>, 2012. +# Tomáš Chvátal <tomas.chvatal@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-16 02:04+0200\n" -"PO-Revision-Date: 2012-08-15 10:33+0000\n" -"Last-Translator: Martin <fireball@atlas.cz>\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 13:37+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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: cs_CZ\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: templates/settings.php:3 msgid "Encryption" -msgstr "Kryptování" +msgstr "Šifrování" #: templates/settings.php:4 msgid "Exclude the following file types from encryption" -msgstr "Při kryptování vynechat následující typy souborů" +msgstr "Při šifrování vynechat následující typy souborů" #: templates/settings.php:5 msgid "None" -msgstr "Žádný" +msgstr "Žádné" #: templates/settings.php:10 msgid "Enable Encryption" -msgstr "Povolit kryptování" +msgstr "Povolit šifrování" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index 8c21e144831..90f40c4ffc7 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.po @@ -6,19 +6,20 @@ # Jan Krejci <krejca85@gmail.com>, 2012. # Martin <fireball@atlas.cz>, 2012. # Michal Hrušecký <Michal@hrusecky.net>, 2012. +# Tomáš Chvátal <tomas.chvatal@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-29 02:01+0200\n" -"PO-Revision-Date: 2012-08-28 19:11+0000\n" -"Last-Translator: Martin <fireball@atlas.cz>\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 13:37+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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: cs_CZ\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: templates/settings.php:3 msgid "External Storage" @@ -30,15 +31,15 @@ msgstr "Přípojný bod" #: templates/settings.php:8 msgid "Backend" -msgstr "Končící" +msgstr "Podpůrná vrstva" #: templates/settings.php:9 msgid "Configuration" -msgstr "Konfigurace" +msgstr "Nastavení" #: templates/settings.php:10 msgid "Options" -msgstr "Nastavení" +msgstr "Možnosti" #: templates/settings.php:11 msgid "Applicable" @@ -46,7 +47,7 @@ msgstr "Platný" #: templates/settings.php:23 msgid "Add mount point" -msgstr "Přidat přípojný bod" +msgstr "Přidat bod připojení" #: templates/settings.php:54 templates/settings.php:62 msgid "None set" @@ -70,16 +71,16 @@ msgstr "Smazat" #: templates/settings.php:88 msgid "SSL root certificates" -msgstr "Kořenové SSL certifikáty" +msgstr "Kořenové certifikáty SSL" #: templates/settings.php:102 msgid "Import Root Certificate" -msgstr "Import kořenového certifikátu" +msgstr "Importovat kořenového certifikátu" #: templates/settings.php:108 msgid "Enable User External Storage" -msgstr "Zapnout uživatelské externí úložiště" +msgstr "Zapnout externí uživatelské úložiště" #: templates/settings.php:109 msgid "Allow users to mount their own external storage" -msgstr "Povolit uživatelů připojit jejich vlastní externí úložiště" +msgstr "Povolit uživatelům připojení jejich vlastních externích úložišť" diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index 1927da6f119..d4c56e76356 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/files_sharing.po @@ -5,19 +5,20 @@ # Translators: # Martin <fireball@atlas.cz>, 2012. # Michal Hrušecký <Michal@hrusecky.net>, 2012. +# Tomáš Chvátal <tomas.chvatal@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 13:37+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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: cs_CZ\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: templates/authenticate.php:4 msgid "Password" @@ -25,16 +26,16 @@ msgstr "Heslo" #: templates/authenticate.php:6 msgid "Submit" -msgstr "Potvrdit" +msgstr "Odeslat" #: templates/public.php:9 templates/public.php:19 msgid "Download" -msgstr "" +msgstr "Stáhnout" #: templates/public.php:18 msgid "No preview available for" -msgstr "" +msgstr "Náhled není dostupný pro" -#: templates/public.php:23 +#: templates/public.php:25 msgid "web services under your control" -msgstr "" +msgstr "služby webu pod Vaší kontrolou" diff --git a/l10n/cs_CZ/files_versions.po b/l10n/cs_CZ/files_versions.po index a75fe502f68..0c6a43324f7 100644 --- a/l10n/cs_CZ/files_versions.po +++ b/l10n/cs_CZ/files_versions.po @@ -4,31 +4,32 @@ # # Translators: # Martin <fireball@atlas.cz>, 2012. +# Tomáš Chvátal <tomas.chvatal@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 13:37+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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: cs_CZ\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" -msgstr "Vypršení všech verzí" +msgstr "Vypršet všechny verze" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "Verze" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "Odstraní všechny existující zálohované verze Vašich souborů" #: templates/settings.php:3 msgid "Enable Files Versioning" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index 35f62dc63c9..eb0f3cb40a7 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -4,19 +4,20 @@ # # Translators: # Martin <fireball@atlas.cz>, 2012. +# Tomáš Chvátal <tomas.chvatal@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 13:37+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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: cs_CZ\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: app.php:288 msgid "Help" @@ -40,7 +41,7 @@ msgstr "Aplikace" #: app.php:314 msgid "Admin" -msgstr "Admin" +msgstr "Administrace" #: files.php:280 msgid "ZIP download is turned off." @@ -48,7 +49,7 @@ msgstr "Stahování ZIPu je vypnuto." #: files.php:281 msgid "Files need to be downloaded one by one." -msgstr "Soubory je nutno stahovat samostatně." +msgstr "Soubory musí být stahovány jednotlivě." #: files.php:281 files.php:306 msgid "Back to Files" @@ -56,7 +57,7 @@ msgstr "Zpět k souborům" #: files.php:305 msgid "Selected files too large to generate zip file." -msgstr "Vybarné soubory jsou pro vytvoření zipu příliš velké." +msgstr "Vybrané soubory jsou příliš velké pro vytvoření zip souboru." #: json.php:28 msgid "Application is not enabled" @@ -64,63 +65,63 @@ msgstr "Aplikace není povolena" #: json.php:39 json.php:63 json.php:75 msgid "Authentication error" -msgstr "Chyba autorizace" +msgstr "Chyba ověření" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "Realce expirovala. Obnovte prosím stranu." +msgstr "Token vypršel. Obnovte prosím stránku." -#: template.php:86 +#: template.php:87 msgid "seconds ago" msgstr "před vteřinami" -#: template.php:87 +#: template.php:88 msgid "1 minute ago" msgstr "před 1 minutou" -#: template.php:88 +#: template.php:89 #, php-format msgid "%d minutes ago" msgstr "před %d minutami" -#: template.php:91 +#: template.php:92 msgid "today" msgstr "dnes" -#: template.php:92 +#: template.php:93 msgid "yesterday" msgstr "včera" -#: template.php:93 +#: template.php:94 #, php-format msgid "%d days ago" msgstr "před %d dny" -#: template.php:94 +#: template.php:95 msgid "last month" msgstr "minulý měsíc" -#: template.php:95 +#: template.php:96 msgid "months ago" msgstr "před měsíci" -#: template.php:96 +#: template.php:97 msgid "last year" msgstr "loni" -#: template.php:97 +#: template.php:98 msgid "years ago" msgstr "před lety" #: updater.php:66 #, php-format msgid "%s is available. Get <a href=\"%s\">more information</a>" -msgstr "" +msgstr "%s je dostupná. Získat <a href=\"%s\">více informací</a>" #: updater.php:68 msgid "up to date" -msgstr "" +msgstr "aktuální" #: updater.php:71 msgid "updates check is disabled" -msgstr "" +msgstr "kontrola aktualizací je vypnuta" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index b83f36882a4..3511d379d65 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -4,17 +4,18 @@ # # Translators: # <icewind1991@gmail.com>, 2012. -# Jan Krejci <krejca85@gmail.com>, 2011, 2012. +# Jan Krejci <krejca85@gmail.com>, 2011-2012. # Martin <fireball@atlas.cz>, 2011-2012. # Michal Hrušecký <Michal@hrusecky.net>, 2012. # <Michal@hrusecky.net>, 2012. +# Tomáš Chvátal <tomas.chvatal@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 13:36+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,20 +25,20 @@ msgstr "" #: ajax/apps/ocs.php:23 msgid "Unable to load list from App Store" -msgstr "Nepodařílo se stáhnout seznam z App Store" +msgstr "Nelze načíst seznam z App Store" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 #: ajax/togglegroups.php:15 msgid "Authentication error" -msgstr "Chyba autorizace" +msgstr "Chyba ověření" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "Skupina již existuje" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "Nelze přidat skupinu" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -49,19 +50,19 @@ msgstr "Neplatný e-mail" #: ajax/openid.php:16 msgid "OpenID Changed" -msgstr "OpenID změněn" +msgstr "OpenID změněno" #: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" -msgstr "Chybný dotaz" +msgstr "Neplatný požadavek" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "Nelze smazat skupinu" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "Nelze smazat uživatele" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -70,12 +71,12 @@ msgstr "Jazyk byl změněn" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Nelze přidat uživatele do skupiny %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Nelze odstranit uživatele ze skupiny %s" #: js/apps.js:18 msgid "Error" @@ -83,11 +84,11 @@ msgstr "Chyba" #: js/apps.js:39 js/apps.js:73 msgid "Disable" -msgstr "Vypnout" +msgstr "Zakázat" #: js/apps.js:39 js/apps.js:62 msgid "Enable" -msgstr "Zapnout" +msgstr "Povolit" #: js/personal.js:69 msgid "Saving..." @@ -99,7 +100,7 @@ msgstr "Česky" #: templates/admin.php:14 msgid "Security Warning" -msgstr "Bezpečnostní upozornění" +msgstr "Bezpečnostní varování" #: templates/admin.php:17 msgid "" @@ -108,7 +109,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "Váš adresář dat a soubory jsou pravděpodobně přístupné z internetu. Soubor .htacces, který ownCloud poskytuje nefunguje. Doporučujeme Vám abyste nastavili Váš webový server tak, aby nebylo možno přistupovat do adresáře s daty, nebo přesunuli adresář dat mimo kořenovou složku dokumentů webového serveru." #: templates/admin.php:31 msgid "Cron" @@ -116,7 +117,7 @@ msgstr "Cron" #: templates/admin.php:33 msgid "execute one task with each page loaded" -msgstr "spustit jednu úlohu s každou nataženou stranou" +msgstr "spustit jednu úlohu s každou načtenou stránkou" #: templates/admin.php:35 msgid "cron.php is registered at a webcron service" @@ -124,47 +125,47 @@ msgstr "cron.php je registrován jako služba webcron" #: templates/admin.php:37 msgid "use systems cron service" -msgstr "použijte systémovou službu cron" +msgstr "použít systémovou službu cron" #: templates/admin.php:41 msgid "Share API" -msgstr "" +msgstr "API sdílení" #: templates/admin.php:46 msgid "Enable Share API" -msgstr "" +msgstr "Povolit API sdílení" #: templates/admin.php:47 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Povolit aplikacím používat API sdílení" #: templates/admin.php:51 msgid "Allow links" -msgstr "" +msgstr "Povolit odkazy" #: templates/admin.php:52 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Povolit uživatelům sdílet položky s veřejností pomocí odkazů" #: templates/admin.php:56 msgid "Allow resharing" -msgstr "" +msgstr "Povolit znovu-sdílení" #: templates/admin.php:57 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "Povolit uživatelům znovu sdílet položky, které jsou pro ně sdíleny" #: templates/admin.php:60 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Povolit uživatelům sdílet s kýmkoliv" #: templates/admin.php:62 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Povolit uživatelům sdílet pouze s uživateli v jejich skupinách" #: templates/admin.php:69 msgid "Log" -msgstr "Log" +msgstr "Záznam" #: templates/admin.php:97 msgid "More" @@ -178,11 +179,11 @@ msgid "" "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>." -msgstr "" +msgstr "Vyvinuto <a href=\"http://ownCloud.org/contact\" target=\"_blank\">komunitou ownCloud</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">zdrojový kód</a> je licencován pod <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." #: templates/apps.php:10 msgid "Add your App" -msgstr "Přidat vaší aplikaci" +msgstr "Přidat Vaší aplikaci" #: templates/apps.php:26 msgid "Select an App" @@ -194,7 +195,7 @@ msgstr "Více na stránce s aplikacemi na apps.owncloud.com" #: templates/apps.php:30 msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" -msgstr "" +msgstr "<span class=\"licence\"></span>-licencováno <span class=\"author\"></span>" #: templates/help.php:9 msgid "Documentation" @@ -202,7 +203,7 @@ msgstr "Dokumentace" #: templates/help.php:10 msgid "Managing Big Files" -msgstr "Spravování velkých souborů" +msgstr "Správa velkých souborů" #: templates/help.php:11 msgid "Ask a question" @@ -242,11 +243,11 @@ msgstr "Vaše heslo bylo změněno" #: templates/personal.php:20 msgid "Unable to change your password" -msgstr "Vaše heslo se nepodařilo změnit" +msgstr "Vaše heslo nelze změnit" #: templates/personal.php:21 msgid "Current password" -msgstr "Aktuální heslo" +msgstr "Současné heslo" #: templates/personal.php:22 msgid "New password" @@ -262,15 +263,15 @@ msgstr "Změnit heslo" #: templates/personal.php:30 msgid "Email" -msgstr "Email" +msgstr "E-mail" #: templates/personal.php:31 msgid "Your email address" -msgstr "Vaše emailová adresa" +msgstr "Vaše e-mailová adresa" #: templates/personal.php:32 msgid "Fill in an email address to enable password recovery" -msgstr "Pro povolení změny hesla vyplňte email adresu" +msgstr "Pro povolení změny hesla vyplňte adresu e-mailu" #: templates/personal.php:38 templates/personal.php:39 msgid "Language" @@ -278,7 +279,7 @@ msgstr "Jazyk" #: templates/personal.php:44 msgid "Help translate" -msgstr "Pomoci překládat" +msgstr "Pomoci s překladem" #: templates/personal.php:51 msgid "use this address to connect to your ownCloud in your file manager" @@ -306,11 +307,11 @@ msgstr "Výchozí kvóta" #: templates/users.php:55 templates/users.php:138 msgid "Other" -msgstr "Jiné" +msgstr "Jiná" #: templates/users.php:80 templates/users.php:112 msgid "Group Admin" -msgstr "Administrace skupiny" +msgstr "Správa skupiny" #: templates/users.php:82 msgid "Quota" @@ -318,4 +319,4 @@ msgstr "Kvóta" #: templates/users.php:146 msgid "Delete" -msgstr "Vymazat" +msgstr "Smazat" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 57bcba3d707..808367304a8 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -4,40 +4,41 @@ # # Translators: # Martin <fireball@atlas.cz>, 2012. +# Tomáš Chvátal <tomas.chvatal@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-29 13:53+0000\n" -"Last-Translator: Martin <fireball@atlas.cz>\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 13:37+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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: cs_CZ\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: templates/settings.php:8 msgid "Host" -msgstr "Hostitel" +msgstr "Počítač" #: templates/settings.php:8 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "Nelze vynechat protokol vyžadující SSL. Začněte s ldaps://" +msgstr "Můžete vynechat protokol, vyjma pokud požadujete SSL. Tehdy začněte s ldaps://" #: templates/settings.php:9 msgid "Base DN" -msgstr "Base DN" +msgstr "Základní DN" #: templates/settings.php:9 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "V Rozšířeném nastavení můžete specifikovat pro své uživatele a skupiny element Base DN" +msgstr "V rozšířeném nastavení můžete určit základní DN pro uživatele a skupiny" #: templates/settings.php:10 msgid "User DN" -msgstr "DN uživatele" +msgstr "Uživatelské DN" #: templates/settings.php:10 msgid "" @@ -52,47 +53,47 @@ msgstr "Heslo" #: templates/settings.php:11 msgid "For anonymous access, leave DN and Password empty." -msgstr "Pro anonymní přístup ponechte údaje DN and Heslo prázdné." +msgstr "Pro anonymní přístup, ponechte údaje DN and heslo prázdné." #: templates/settings.php:12 msgid "User Login Filter" -msgstr "Filtr uživatelských loginů" +msgstr "Filtr přihlášení uživatelů" #: templates/settings.php:12 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "Definuje filtr, který je aplikován v průběhu logování. %%uid nahrazuje uživatelské jméno během logování." +msgstr "Určuje použitý filtr, při pokusu o přihlášení. %%uid nahrazuje uživatelské jméno v činnosti přihlášení." #: templates/settings.php:12 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "použijte %%uid pro rezervované místo, např. \"uid=%%uid\"" +msgstr "použijte zástupný vzor %%uid, např. \"uid=%%uid\"" #: templates/settings.php:13 msgid "User List Filter" -msgstr "Filtr uživateslkých seznamů" +msgstr "Filtr uživatelských seznamů" #: templates/settings.php:13 msgid "Defines the filter to apply, when retrieving users." -msgstr "Defunije filtr, který je plaikován při návratu uživatelů." +msgstr "Určuje použitý filtr, pro získávaní uživatelů." #: templates/settings.php:13 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "bez rezervace místa, např. \"objectClass=person\"." +msgstr "bez zástupných znaků, např. \"objectClass=person\"." #: templates/settings.php:14 msgid "Group Filter" -msgstr "Filtr skupiny" +msgstr "Filtr skupin" #: templates/settings.php:14 msgid "Defines the filter to apply, when retrieving groups." -msgstr "Definuje filtr, který je aplikován při návratu skupin" +msgstr "Určuje použitý filtr, pro získávaní skupin." #: templates/settings.php:14 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "bez rezervace místa, např. \"objectClass=posixGroup\"." +msgstr "bez zástupných znaků, např. \"objectClass=posixGroup\"." #: templates/settings.php:17 msgid "Port" @@ -112,11 +113,11 @@ msgstr "Asociace člena skupiny" #: templates/settings.php:21 msgid "Use TLS" -msgstr "Použijte TLS" +msgstr "Použít TLS" #: templates/settings.php:21 msgid "Do not use it for SSL connections, it will fail." -msgstr "Nepoužívejte pro SSL připojení, připojení selže." +msgstr "Nepoužívejte pro připojení pomocí SSL, připojení selže." #: templates/settings.php:22 msgid "Case insensitve LDAP server (Windows)" @@ -124,17 +125,17 @@ msgstr "LDAP server nerozlišující velikost znaků (Windows)" #: templates/settings.php:23 msgid "Turn off SSL certificate validation." -msgstr "Vypněte ověřování SSL certifikátu" +msgstr "Vypnout ověřování SSL certifikátu." #: templates/settings.php:23 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "pokud pracuje připojení pouze pokud je teto volba aktivní, importujte SSL certifikát LDAP serveru do Vašeho serveru ownCloud." +msgstr "Pokud připojení pracuje pouze s touto možností, tak importujte SSL certifikát SSL serveru do Vašeho serveru ownCloud" #: templates/settings.php:23 msgid "Not recommended, use for testing only." -msgstr "Není doporučeno, pouze pro účely testování." +msgstr "Není doporučeno, pouze pro testovací účely." #: templates/settings.php:24 msgid "User Display Name Field" @@ -154,17 +155,17 @@ msgstr "Atribut LDAP použitý k vytvoření jména skupiny ownCloud" #: templates/settings.php:27 msgid "in bytes" -msgstr "v bytech" +msgstr "v bajtech" #: templates/settings.php:29 msgid "in seconds. A change empties the cache." -msgstr "ve vteřinách. Změna vyprázdní dočasnou paměť." +msgstr "ve vteřinách. Změna vyprázdní vyrovnávací paměť." #: templates/settings.php:30 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "Ponechte prázdné pro uživateslké jméno (výchozí). Jinak uveďte LDAP/AD paramerty" +msgstr "Ponechte prázdné pro uživatelské jméno (výchozí). Jinak uveďte LDAP/AD parametr." #: templates/settings.php:32 msgid "Help" diff --git a/l10n/da/core.po b/l10n/da/core.po index 542e8425faf..bbb688dca57 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -13,15 +13,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-03 02:04+0200\n" -"PO-Revision-Date: 2012-09-02 14:21+0000\n" -"Last-Translator: muunsim <simon@rosmi.dk>\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -35,59 +35,55 @@ msgstr "Ingen kategori at tilføje?" msgid "This category already exists: " msgstr "Denne kategori eksisterer allerede: " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Indstillinger" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Januar" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Februar" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Marts" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "April" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Maj" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Juni" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Juli" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "August" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "September" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Oktober" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "November" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "December" @@ -119,7 +115,7 @@ msgstr "Fejl" msgid "ownCloud password reset" msgstr "Nulstil ownCloud kodeord" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Anvend følgende link til at nulstille din adgangskode: {link}" diff --git a/l10n/da/files.po b/l10n/da/files.po index 5c3233a2810..ef7718c6d05 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -60,31 +60,35 @@ msgstr "Filer" msgid "Delete" msgstr "Slet" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "findes allerede" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "erstat" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "fortryd" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "erstattet" -#: js/filelist.js:195 -msgid "with" -msgstr "med" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "fortryd" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "med" + +#: js/filelist.js:271 msgid "deleted" msgstr "Slettet" @@ -100,44 +104,44 @@ msgstr "Kunne ikke uploade din fil, da det enten er en mappe eller er tom" msgid "Upload Error" msgstr "Fejl ved upload" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Afventer" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Upload afbrudt." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret." -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Ugyldigt navn, '/' er ikke tilladt." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Størrelse" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Ændret" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "mappe" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "mapper" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "fil" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "filer" diff --git a/l10n/de/core.po b/l10n/de/core.po index 9f06a2c9f42..d2dca57566e 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -18,15 +18,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 09:48+0000\n" -"Last-Translator: traductor <transifex.3.mensaje@spamgourmet.com>\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -40,59 +40,55 @@ msgstr "Keine Kategorie hinzuzufügen?" msgid "This category already exists: " msgstr "Kategorie existiert bereits:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Januar" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Februar" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "März" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "April" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Mai" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Juni" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Juli" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "August" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "September" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Oktober" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "November" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Dezember" @@ -124,7 +120,7 @@ msgstr "Fehler" msgid "ownCloud password reset" msgstr "ownCloud-Passwort zurücksetzen" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Nutzen Sie den nachfolgenden Link, um Ihr Passwort zurückzusetzen: {link}" diff --git a/l10n/de/files.po b/l10n/de/files.po index 63ae8dc7c87..186ed35ccdd 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -66,31 +66,35 @@ msgstr "Dateien" msgid "Delete" msgstr "Löschen" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "ist bereits vorhanden" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "ersetzen" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "abbrechen" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "ersetzt" -#: js/filelist.js:195 -msgid "with" -msgstr "mit" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "rückgängig machen" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "mit" + +#: js/filelist.js:271 msgid "deleted" msgstr "gelöscht" @@ -106,44 +110,44 @@ msgstr "Ihre Datei kann nicht hochgeladen werden, da sie ein Verzeichnis ist ode msgid "Upload Error" msgstr "Fehler beim Hochladen" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Ausstehend" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Hochladen abgebrochen." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen." -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Ungültiger Name: \"/\" ist nicht erlaubt." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Größe" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Bearbeitet" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "Ordner" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "Ordner" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "Datei" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "Dateien" @@ -177,7 +181,7 @@ msgstr "Maximale Größe für ZIP-Dateien" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Speichern" #: templates/index.php:7 msgid "New" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 795cd88fa26..e0d81804f6a 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 07:52+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -75,12 +75,12 @@ msgstr "Sprache geändert" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Der Benutzer konnte nicht zur Gruppe %s hinzugefügt werden" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Der Benutzer konnte nicht aus der Gruppe %s entfernt werden" #: js/apps.js:18 msgid "Error" @@ -199,7 +199,7 @@ msgstr "Weitere Anwendungen finden Sie auf apps.owncloud.com" #: templates/apps.php:30 msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" -msgstr "" +msgstr "<span class=\"licence\"></span>-lizenziert von <span class=\"author\"></span>" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/el/core.po b/l10n/el/core.po index 57cba80d051..0a9a6e0388f 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -11,15 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -33,59 +33,55 @@ msgstr "Δεν έχετε να προστέσθέσεται μια κα" msgid "This category already exists: " msgstr "Αυτή η κατηγορία υπάρχει ήδη" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Ρυθμίσεις" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Ιανουάριος" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Φεβρουάριος" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Μάρτιος" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Απρίλιος" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Μάϊος" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Ιούνιος" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Ιούλιος" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Αύγουστος" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Σεπτέμβριος" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Οκτώβριος" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Νοέμβριος" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Δεκέμβριος" @@ -117,7 +113,7 @@ msgstr "Σφάλμα" msgid "ownCloud password reset" msgstr "Επαναφορά κωδικού ownCloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Χρησιμοποιήστε τον ακόλουθο σύνδεσμο για να επανεκδόσετε τον κωδικό: {link}" diff --git a/l10n/el/files.po b/l10n/el/files.po index ee2a70ac7cf..8ddd036c716 100644 --- a/l10n/el/files.po +++ b/l10n/el/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: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -58,31 +58,35 @@ msgstr "Αρχεία" msgid "Delete" msgstr "Διαγραφή" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "υπάρχει ήδη" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "αντικατέστησε" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "ακύρωση" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "αντικαταστάθηκε" -#: js/filelist.js:195 -msgid "with" -msgstr "με" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "αναίρεση" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "με" + +#: js/filelist.js:271 msgid "deleted" msgstr "διαγράφηκε" @@ -98,44 +102,44 @@ msgstr "Αδυναμία στην μεταφόρτωση του αρχείου msgid "Upload Error" msgstr "Σφάλμα Μεταφόρτωσης" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Εν αναμονή" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Η μεταφόρτωση ακυρώθηκε." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Μη έγκυρο όνομα, το '/' δεν επιτρέπεται." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Μέγεθος" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Τροποποιήθηκε" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "φάκελος" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "φάκελοι" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "αρχείο" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "αρχεία" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index ccfd988fd2e..416d3dd21f8 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -32,59 +32,55 @@ msgstr "Ĉu neniu kategorio estas aldonota?" msgid "This category already exists: " msgstr "Ĉi tiu kategorio jam ekzistas: " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Agordo" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Januaro" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Februaro" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Marto" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Aprilo" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Majo" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Junio" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Julio" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Aŭgusto" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Septembro" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Oktobro" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Novembro" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Decembro" @@ -116,7 +112,7 @@ msgstr "Eraro" msgid "ownCloud password reset" msgstr "La pasvorto de ownCloud restariĝis." -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Uzu la jenan ligilon por restarigi vian pasvorton: {link}" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index d771ee745f5..d0b82a0e4fd 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/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: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -57,31 +57,35 @@ msgstr "Dosieroj" msgid "Delete" msgstr "Forigi" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "jam ekzistas" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "anstataŭigi" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "nuligi" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "anstataŭigita" -#: js/filelist.js:195 -msgid "with" -msgstr "kun" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "malfari" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "kun" + +#: js/filelist.js:271 msgid "deleted" msgstr "forigita" @@ -97,44 +101,44 @@ msgstr "Ne eblis alŝuti vian dosieron ĉar ĝi estas dosierujo aŭ havas 0 duum msgid "Upload Error" msgstr "Alŝuta eraro" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Traktotaj" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "La alŝuto nuliĝis." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Nevalida nomo, “/” ne estas permesata." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Grando" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Modifita" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "dosierujo" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "dosierujoj" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "dosiero" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "dosieroj" diff --git a/l10n/es/core.po b/l10n/es/core.po index fd0e4112ab5..efe18cd7f0a 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -15,15 +15,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 22:41+0000\n" -"Last-Translator: Rubén Trujillo <rubentrf@gmail.com>\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.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" "Content-Transfer-Encoding: 8bit\n" "Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -37,59 +37,55 @@ msgstr "¿Ninguna categoría para añadir?" msgid "This category already exists: " msgstr "Esta categoría ya existe: " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Ajustes" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Enero" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Febrero" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Marzo" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Abril" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Mayo" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Junio" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Julio" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Agosto" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Septiembre" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Octubre" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Noviembre" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Diciembre" @@ -121,7 +117,7 @@ msgstr "Fallo" msgid "ownCloud password reset" msgstr "Reiniciar contraseña de ownCloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Utiliza el siguiente enlace para restablecer tu contraseña: {link}" diff --git a/l10n/es/files.po b/l10n/es/files.po index 28809d589c5..feda2631833 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -59,31 +59,35 @@ msgstr "Archivos" msgid "Delete" msgstr "Eliminado" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "ya existe" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "reemplazar" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "reemplazado" -#: js/filelist.js:195 -msgid "with" -msgstr "con" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "deshacer" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "con" + +#: js/filelist.js:271 msgid "deleted" msgstr "borrado" @@ -99,44 +103,44 @@ msgstr "No ha sido posible subir tu archivo porque es un directorio o tiene 0 by msgid "Upload Error" msgstr "Error al subir el archivo" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Pendiente" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Subida cancelada." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "La subida del archivo está en proceso. Salir de la página ahora cancelará la subida." -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Nombre no válido, '/' no está permitido." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Tamaño" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Modificado" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "carpeta" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "carpetas" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "archivo" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "archivos" @@ -170,7 +174,7 @@ msgstr "Tamaño máximo para archivos ZIP de entrada" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Guardar" #: templates/index.php:7 msgid "New" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 2d38de5f755..8d1da62428c 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 15:29+0000\n" +"Last-Translator: juanman <juanma@kde.org.ar>\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" @@ -74,12 +74,12 @@ msgstr "Idioma cambiado" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Imposible añadir el usuario al grupo %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Imposible eliminar al usuario del grupo %s" #: js/apps.js:18 msgid "Error" @@ -198,7 +198,7 @@ msgstr "Echa un vistazo a la web de aplicaciones apps.owncloud.com" #: templates/apps.php:30 msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" -msgstr "" +msgstr "<span class=\"licence\"></span>-licenciado por <span class=\"author\"></span>" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 0767a4e42fa..f8d3d186521 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: et_EE\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -30,59 +30,55 @@ msgstr "Pole kategooriat, mida lisada?" msgid "This category already exists: " msgstr "See kategooria on juba olemas: " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Seaded" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Jaanuar" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Veebruar" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Märts" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Aprill" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Mai" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Juuni" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Juuli" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "August" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "September" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Oktoober" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "November" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Detsember" @@ -114,7 +110,7 @@ msgstr "Viga" msgid "ownCloud password reset" msgstr "ownCloud parooli taastamine" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Kasuta järgnevat linki oma parooli taastamiseks: {link}" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 7b09da2e4f5..fac2c5dc01b 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/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: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -56,31 +56,35 @@ msgstr "Failid" msgid "Delete" msgstr "Kustuta" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "on juba olemas" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "asenda" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "loobu" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "asendatud" -#: js/filelist.js:195 -msgid "with" -msgstr "millega" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "tagasi" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "millega" + +#: js/filelist.js:271 msgid "deleted" msgstr "kustutatud" @@ -96,44 +100,44 @@ msgstr "Sinu faili üleslaadimine ebaõnnestus, kuna see on kaust või selle suu msgid "Upload Error" msgstr "Üleslaadimise viga" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Ootel" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Üleslaadimine tühistati." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Vigane nimi, '/' pole lubatud." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Suurus" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Muudetud" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "kaust" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "kausta" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "fail" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "faili" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 63b63ad545a..476fbcd0a11 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.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" "Content-Transfer-Encoding: 8bit\n" "Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -31,59 +31,55 @@ msgstr "Ez dago gehitzeko kategoriarik?" msgid "This category already exists: " msgstr "Kategoria hau dagoeneko existitzen da:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Ezarpenak" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Urtarrila" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Otsaila" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Martxoa" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Apirila" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Maiatza" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Ekaina" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Uztaila" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Abuztua" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Iraila" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Urria" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Azaroa" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Abendua" @@ -115,7 +111,7 @@ msgstr "Errorea" msgid "ownCloud password reset" msgstr "ownCloud-en pasahitza berrezarri" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Eribili hurrengo lotura zure pasahitza berrezartzeko: {link}" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 19d4a2e58c1..810a5ae18c5 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/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: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -57,31 +57,35 @@ msgstr "Fitxategiak" msgid "Delete" msgstr "Ezabatu" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "dagoeneko existitzen da" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "ordeztu" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "ezeztatu" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "ordeztua" -#: js/filelist.js:195 -msgid "with" -msgstr "honekin" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "desegin" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "honekin" + +#: js/filelist.js:271 msgid "deleted" msgstr "ezabatuta" @@ -97,44 +101,44 @@ msgstr "Ezin da zure fitxategia igo, karpeta bat da edo 0 byt ditu" msgid "Upload Error" msgstr "Igotzean errore bat suertatu da" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Zain" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Igoera ezeztatuta" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Baliogabeko izena, '/' ezin da erabili. " -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Tamaina" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Aldatuta" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "karpeta" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "Karpetak" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "fitxategia" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "fitxategiak" diff --git a/l10n/eu_ES/core.po b/l10n/eu_ES/core.po index a6da3a496e9..b3baf2cb39f 100644 --- a/l10n/eu_ES/core.po +++ b/l10n/eu_ES/core.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: eu_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -29,59 +29,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -113,7 +109,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" diff --git a/l10n/eu_ES/files.po b/l10n/eu_ES/files.po index 5a8745c0316..0ed5582c4ff 100644 --- a/l10n/eu_ES/files.po +++ b/l10n/eu_ES/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: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -55,31 +55,35 @@ msgstr "" msgid "Delete" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -95,44 +99,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 6099da454e0..df531775248 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fa\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -30,59 +30,55 @@ msgstr "آیا گروه دیگری برای افزودن ندارید" msgid "This category already exists: " msgstr "این گروه از قبل اضافه شده" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "تنظیمات" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "ژانویه" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "فبریه" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "مارس" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "آوریل" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "می" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "ژوئن" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "جولای" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "آگوست" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "سپتامبر" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "اکتبر" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "نوامبر" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "دسامبر" @@ -114,7 +110,7 @@ msgstr "خطا" msgid "ownCloud password reset" msgstr "پسورد ابرهای شما تغییرکرد" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "از لینک زیر جهت دوباره سازی پسورد استفاده کنید :\n{link}" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index a1981830b70..2e1f1645041 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/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: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -58,31 +58,35 @@ msgstr "فایل ها" msgid "Delete" msgstr "پاک کردن" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "وجود دارد" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "جایگزین" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "لغو" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "جایگزینشده" -#: js/filelist.js:195 -msgid "with" -msgstr "همراه" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "بازگشت" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "همراه" + +#: js/filelist.js:271 msgid "deleted" msgstr "حذف شده" @@ -98,44 +102,44 @@ msgstr "ناتوان در بارگذاری یا فایل یک پوشه است ی msgid "Upload Error" msgstr "خطا در بار گذاری" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "در انتظار" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "بار گذاری لغو شد" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "نام نامناسب '/' غیرفعال است" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "اندازه" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "تغییر یافته" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "پوشه" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "پوشه ها" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "پرونده" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "پرونده ها" diff --git a/l10n/fi/core.po b/l10n/fi/core.po index 9471fc3066c..6b84b560723 100644 --- a/l10n/fi/core.po +++ b/l10n/fi/core.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -29,59 +29,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -113,7 +109,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" diff --git a/l10n/fi/files.po b/l10n/fi/files.po index a46618c5029..0a9580f3467 100644 --- a/l10n/fi/files.po +++ b/l10n/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: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" "MIME-Version: 1.0\n" @@ -55,31 +55,35 @@ msgstr "" msgid "Delete" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -95,44 +99,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 7506e66bc4e..cbce7313693 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 02:01+0200\n" -"PO-Revision-Date: 2012-09-03 16:24+0000\n" -"Last-Translator: teho <tehoratopato@gmail.com>\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,59 +35,55 @@ msgstr "Ei lisättävää luokkaa?" msgid "This category already exists: " msgstr "Tämä luokka on jo olemassa: " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Asetukset" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Tammikuu" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Helmikuu" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Maaliskuu" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Huhtikuu" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Toukokuu" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Kesäkuu" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Heinäkuu" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Elokuu" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Syyskuu" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Lokakuu" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Marraskuu" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Joulukuu" @@ -119,7 +115,7 @@ msgstr "Virhe" msgid "ownCloud password reset" msgstr "ownCloud-salasanan nollaus" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Voit palauttaa salasanasi seuraavassa osoitteessa: {link}" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 7b28a31a632..f82b204f60e 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -60,31 +60,35 @@ msgstr "Tiedostot" msgid "Delete" msgstr "Poista" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "on jo olemassa" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "korvaa" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "peru" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "korvattu" -#: js/filelist.js:195 -msgid "with" -msgstr "käyttäen" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "kumoa" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "käyttäen" + +#: js/filelist.js:271 msgid "deleted" msgstr "poistettu" @@ -100,44 +104,44 @@ msgstr "Tiedoston lähetys epäonnistui, koska sen koko on 0 tavua tai kyseessä msgid "Upload Error" msgstr "Lähetysvirhe." -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Odottaa" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Lähetys peruttu." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedoston lähetyksen." -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Virheellinen nimi, merkki '/' ei ole sallittu." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Koko" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Muutettu" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "kansio" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "kansiota" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "tiedosto" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "tiedostoa" @@ -171,7 +175,7 @@ msgstr "ZIP-tiedostojen enimmäiskoko" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Tallenna" #: templates/index.php:7 msgid "New" diff --git a/l10n/fi_FI/files_external.po b/l10n/fi_FI/files_external.po index 2cee464ea24..404c33a0143 100644 --- a/l10n/fi_FI/files_external.po +++ b/l10n/fi_FI/files_external.po @@ -4,19 +4,20 @@ # # Translators: # Jiri Grönroos <jiri.gronroos@iki.fi>, 2012. +# <tehoratopato@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-17 00:44+0200\n" -"PO-Revision-Date: 2012-08-16 11:04+0000\n" -"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 16:30+0000\n" +"Last-Translator: teho <tehoratopato@gmail.com>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:3 msgid "External Storage" @@ -40,7 +41,7 @@ msgstr "Valinnat" #: templates/settings.php:11 msgid "Applicable" -msgstr "" +msgstr "Sovellettavissa" #: templates/settings.php:23 msgid "Add mount point" @@ -76,7 +77,7 @@ msgstr "Tuo juurivarmenne" #: templates/settings.php:108 msgid "Enable User External Storage" -msgstr "" +msgstr "Ota käyttöön ulkopuoliset tallennuspaikat" #: templates/settings.php:109 msgid "Allow users to mount their own external storage" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index e540a68630f..2f9cfc602d5 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 16:14+0000\n" +"Last-Translator: teho <tehoratopato@gmail.com>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -68,12 +68,12 @@ msgstr "Kieli on vaihdettu" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Käyttäjän tai ryhmän %s lisääminen ei onnistu" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Käyttäjän poistaminen ryhmästä %s ei onnistu" #: js/apps.js:18 msgid "Error" @@ -192,7 +192,7 @@ msgstr "Katso sovellussivu osoitteessa apps.owncloud.com" #: templates/apps.php:30 msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" -msgstr "" +msgstr "<span class=\"licence\"></span>-lisensoija <span class=\"author\"></span>" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index e1e890a1617..62a31960b0c 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -5,13 +5,14 @@ # Translators: # <jarkko.moilanen@want3d.fi>, 2012. # Jiri Grönroos <jiri.gronroos@iki.fi>, 2012. +# <tehoratopato@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-04 14:29+0000\n" -"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 16:49+0000\n" +"Last-Translator: teho <tehoratopato@gmail.com>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -64,7 +65,7 @@ msgstr "Login suodatus" msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "" +msgstr "Määrittelee käytettävän suodattimen, kun sisäänkirjautumista yritetään. %%uid korvaa sisäänkirjautumisessa käyttäjätunnuksen." #: templates/settings.php:12 #, php-format @@ -139,19 +140,19 @@ msgstr "Ei suositella, käytä vain testausta varten." #: templates/settings.php:24 msgid "User Display Name Field" -msgstr "" +msgstr "Käyttäjän näytettävän nimen kenttä" #: templates/settings.php:24 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "" +msgstr "LDAP attribuutti, jota käytetään käyttäjän ownCloud käyttäjänimenä " #: templates/settings.php:25 msgid "Group Display Name Field" -msgstr "" +msgstr "Ryhmän \"näytettävä nimi\"-kenttä" #: templates/settings.php:25 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "" +msgstr "LDAP atribuutti, jota käytetään luomaan ryhmän ownCloud nimi" #: templates/settings.php:27 msgid "in bytes" @@ -165,7 +166,7 @@ msgstr "sekunneissa. Muutos tyhjentää välimuistin." msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "" +msgstr "Jätä tyhjäksi käyttäjänimi (oletusasetus). Muutoin anna LDAP/AD atribuutti." #: templates/settings.php:32 msgid "Help" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 9d16fe11ba3..c6fd6a40412 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -13,15 +13,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 19:09+0000\n" -"Last-Translator: Florentin Le Moal <florentin.lemoal@gmail.com>\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\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" "Content-Transfer-Encoding: 8bit\n" "Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -35,59 +35,55 @@ msgstr "Pas de catégorie à ajouter ?" msgid "This category already exists: " msgstr "Cette catégorie existe déjà : " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Paramètres" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "janvier" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "février" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "mars" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "avril" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "mai" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "juin" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "juillet" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "août" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "septembre" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "octobre" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "novembre" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "décembre" @@ -119,7 +115,7 @@ msgstr "Erreur" msgid "ownCloud password reset" msgstr "Réinitialisation de votre mot de passe Owncloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Utilisez le lien suivant pour réinitialiser votre mot de passe : {link}" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 6467b476975..222dbece715 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -8,6 +8,7 @@ # <gp4004@arghh.org>, 2012. # <guiguidu31300@gmail.com>, 2012. # Guillaume Paumier <guillom.pom@gmail.com>, 2012. +# <life_0n_mars@live.fr>, 2012. # Nahir Mohamed <nahirmoha@gmail.com>, 2012. # <rom1dep@gmail.com>, 2011. # Romain DEP. <rom1dep@gmail.com>, 2012. @@ -15,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -63,31 +64,35 @@ msgstr "Fichiers" msgid "Delete" msgstr "Supprimer" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "existe déjà" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "remplacer" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "annuler" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "remplacé" -#: js/filelist.js:195 -msgid "with" -msgstr "avec" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "annuler" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "avec" + +#: js/filelist.js:271 msgid "deleted" msgstr "supprimé" @@ -103,44 +108,44 @@ msgstr "Impossible de charger vos fichiers car il s'agit d'un dossier ou le fich msgid "Upload Error" msgstr "Erreur de chargement" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "En cours" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Chargement annulé." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "L'envoi du fichier est en cours. Quitter cette page maintenant annulera l'envoi du fichier." -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Nom invalide, '/' n'est pas autorisé." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Taille" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Modifié" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "dossier" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "dossiers" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "fichier" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "fichiers" @@ -174,7 +179,7 @@ msgstr "Taille maximale pour les fichiers ZIP" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Sauvegarder" #: templates/index.php:7 msgid "New" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 0fd897ba24f..bdf3e67d242 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -9,6 +9,7 @@ # <gp4004@arghh.org>, 2012. # <guiguidu31300@gmail.com>, 2012. # Jan-Christoph Borchardt <JanCBorchardt@fsfe.org>, 2011. +# <life_0n_mars@live.fr>, 2012. # Nahir Mohamed <nahirmoha@gmail.com>, 2012. # <pierreamiel.giraud@gmail.com>, 2012. # <rom1dep@gmail.com>, 2011, 2012. @@ -17,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 13:18+0000\n" +"Last-Translator: Romain DEP. <rom1dep@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" @@ -75,12 +76,12 @@ msgstr "Langue changée" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Impossible d'ajouter l'utilisateur au groupe %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Impossible de supprimer l'utilisateur du groupe %s" #: js/apps.js:18 msgid "Error" @@ -199,7 +200,7 @@ msgstr "Voir la page des applications à l'url apps.owncloud.com" #: templates/apps.php:30 msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" -msgstr "" +msgstr "<span class=\"licence\"></span>-sous licence, par <span class=\"author\"></span>" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 4dd5e3d6f22..98c21db78b2 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -31,59 +31,55 @@ msgstr "Sen categoría que engadir?" msgid "This category already exists: " msgstr "Esta categoría xa existe: " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Preferencias" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Xaneiro" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Febreiro" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Marzo" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Abril" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Maio" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Xuño" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Xullo" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Agosto" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Setembro" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Outubro" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Novembro" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Nadal" @@ -115,7 +111,7 @@ msgstr "Erro" msgid "ownCloud password reset" msgstr "Restablecer contrasinal de ownCloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Use a seguinte ligazón para restablecer o contrasinal: {link}" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 9413551a21a..0de0ff2a7df 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/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: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -57,31 +57,35 @@ msgstr "Ficheiros" msgid "Delete" msgstr "Eliminar" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "xa existe" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "substituír" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "substituído" -#: js/filelist.js:195 -msgid "with" -msgstr "con" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "desfacer" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "con" + +#: js/filelist.js:271 msgid "deleted" msgstr "eliminado" @@ -97,44 +101,44 @@ msgstr "Non se puido subir o ficheiro pois ou é un directorio ou ten 0 bytes" msgid "Upload Error" msgstr "Erro na subida" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Pendentes" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Subida cancelada." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Nome non válido, '/' non está permitido." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Tamaño" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Modificado" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "cartafol" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "cartafoles" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "ficheiro" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "ficheiros" diff --git a/l10n/he/core.po b/l10n/he/core.po index e061910f3cf..babf202fb32 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: he\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -32,59 +32,55 @@ msgstr "אין קטגוריה להוספה?" msgid "This category already exists: " msgstr "קטגוריה זאת כבר קיימת: " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "הגדרות" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "ינואר" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "פברואר" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "מרץ" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "אפריל" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "מאי" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "יוני" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "יולי" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "אוגוסט" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "ספטמבר" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "אוקטובר" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "נובמבר" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "דצמבר" @@ -116,7 +112,7 @@ msgstr "שגיאה" msgid "ownCloud password reset" msgstr "איפוס הססמה של ownCloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "יש להשתמש בקישור הבא כדי לאפס את הססמה שלך: {link}" diff --git a/l10n/he/files.po b/l10n/he/files.po index 51db52ac274..808345fa8f7 100644 --- a/l10n/he/files.po +++ b/l10n/he/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: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -58,31 +58,35 @@ msgstr "קבצים" msgid "Delete" msgstr "מחיקה" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -98,44 +102,44 @@ msgstr "לא יכול להעלות את הקובץ מכיוון שזו תקיה msgid "Upload Error" msgstr "שגיאת העלאה" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "ממתין" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "ההעלאה בוטלה." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "שם לא חוקי, '/' אסור לשימוש." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "גודל" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "זמן שינוי" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "תקיה" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "תקיות" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "קובץ" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "קבצים" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index ab39ae01902..67cd5aa9ff7 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -30,59 +30,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -114,7 +110,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 58546409d54..b4b909333c0 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: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -55,31 +55,35 @@ msgstr "" msgid "Delete" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -95,44 +99,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 6e8a4982438..3c0fc971861 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: hr\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -32,59 +32,55 @@ msgstr "Nemate kategorija koje možete dodati?" msgid "This category already exists: " msgstr "Ova kategorija već postoji: " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Postavke" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Siječanj" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Veljača" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Ožujak" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Travanj" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Svibanj" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Lipanj" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Srpanj" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Kolovoz" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Rujan" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Listopad" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Studeni" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Prosinac" @@ -116,7 +112,7 @@ msgstr "Pogreška" msgid "ownCloud password reset" msgstr "ownCloud resetiranje lozinke" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Koristite ovaj link da biste poništili lozinku: {link}" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index c0d12a58c89..6163c004ba4 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/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: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -58,31 +58,35 @@ msgstr "Datoteke" msgid "Delete" msgstr "Briši" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "već postoji" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "zamjeni" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "odustani" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "zamjenjeno" -#: js/filelist.js:195 -msgid "with" -msgstr "sa" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "vrati" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "sa" + +#: js/filelist.js:271 msgid "deleted" msgstr "izbrisano" @@ -98,44 +102,44 @@ msgstr "Nemoguće poslati datoteku jer je prazna ili je direktorij" msgid "Upload Error" msgstr "Pogreška pri slanju" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "U tijeku" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Slanje poništeno." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Neispravan naziv, znak '/' nije dozvoljen." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Veličina" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Zadnja promjena" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "mapa" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "mape" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "datoteka" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "datoteke" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 3e89b7e6afe..6d1680b032c 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: hu_HU\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -32,59 +32,55 @@ msgstr "Nincs hozzáadandó kategória?" msgid "This category already exists: " msgstr "Ez a kategória már létezik" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Beállítások" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Január" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Február" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Március" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Április" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Május" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Június" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Július" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Augusztus" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Szeptember" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Október" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "November" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "December" @@ -116,7 +112,7 @@ msgstr "Hiba" msgid "ownCloud password reset" msgstr "ownCloud jelszó-visszaállítás" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Használja az alábbi linket a jelszó-visszaállításhoz: {link}" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index a2baaea8442..ca00f037928 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/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: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -58,31 +58,35 @@ msgstr "Fájlok" msgid "Delete" msgstr "Törlés" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "már létezik" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "cserél" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "mégse" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "kicserélve" -#: js/filelist.js:195 -msgid "with" -msgstr "-val/-vel" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "visszavon" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "-val/-vel" + +#: js/filelist.js:271 msgid "deleted" msgstr "törölve" @@ -98,44 +102,44 @@ msgstr "Nem tölthető fel, mert mappa volt, vagy 0 byte méretű" msgid "Upload Error" msgstr "Feltöltési hiba" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Folyamatban" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Feltöltés megszakítva" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Érvénytelen név, a '/' nem megengedett" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Méret" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Módosítva" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "mappa" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "mappák" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "fájl" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "fájlok" diff --git a/l10n/hy/core.po b/l10n/hy/core.po index 046e483eccb..bd1b74571d7 100644 --- a/l10n/hy/core.po +++ b/l10n/hy/core.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -29,59 +29,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -113,7 +109,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index fdc067d3262..e94b8536495 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: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -55,31 +55,35 @@ msgstr "" msgid "Delete" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -95,44 +99,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index cc9ee26ccc5..100482b0244 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ia\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -30,59 +30,55 @@ msgstr "" msgid "This category already exists: " msgstr "Iste categoria jam existe:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Configurationes" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -114,7 +110,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "Reinitialisation del contrasigno de ownCLoud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index b2010914e28..0324e32bd0b 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/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: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -57,31 +57,35 @@ msgstr "Files" msgid "Delete" msgstr "Deler" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -97,44 +101,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Dimension" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Modificate" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/id/core.po b/l10n/id/core.po index 1b1676d042b..9cb0f7651e1 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: id\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -32,59 +32,55 @@ msgstr "Tidak ada kategori yang akan ditambahkan?" msgid "This category already exists: " msgstr "Kategori ini sudah ada:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Setelan" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Januari" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Februari" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Maret" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "April" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Mei" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Juni" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Juli" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Agustus" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "September" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Oktober" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Nopember" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Desember" @@ -116,7 +112,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "reset password ownCloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Gunakan tautan berikut untuk mereset password anda: {link}" diff --git a/l10n/id/files.po b/l10n/id/files.po index 806ae3250e2..5e1a38df08a 100644 --- a/l10n/id/files.po +++ b/l10n/id/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: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -58,31 +58,35 @@ msgstr "Berkas" msgid "Delete" msgstr "Hapus" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "sudah ada" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "mengganti" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "batalkan" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "diganti" -#: js/filelist.js:195 -msgid "with" -msgstr "dengan" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "batal dikerjakan" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "dengan" + +#: js/filelist.js:271 msgid "deleted" msgstr "dihapus" @@ -98,44 +102,44 @@ msgstr "Gagal mengunggah berkas anda karena berupa direktori atau mempunyai ukur msgid "Upload Error" msgstr "Terjadi Galat Pengunggahan" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Menunggu" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Pengunggahan dibatalkan." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Kesalahan nama, '/' tidak diijinkan." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Ukuran" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "folder" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "folder-folder" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "berkas" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "berkas-berkas" diff --git a/l10n/id_ID/core.po b/l10n/id_ID/core.po index 7227d27665c..a7ada9179b8 100644 --- a/l10n/id_ID/core.po +++ b/l10n/id_ID/core.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -29,59 +29,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -113,7 +109,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" diff --git a/l10n/id_ID/files.po b/l10n/id_ID/files.po index a138ce1d22c..3ef54242d32 100644 --- a/l10n/id_ID/files.po +++ b/l10n/id_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: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" "MIME-Version: 1.0\n" @@ -55,31 +55,35 @@ msgstr "" msgid "Delete" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -95,44 +99,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/it/core.po b/l10n/it/core.po index 281cd036adb..39884ebdc9d 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -12,15 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 05:26+0000\n" -"Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -34,59 +34,55 @@ msgstr "Nessuna categoria da aggiungere?" msgid "This category already exists: " msgstr "Questa categoria esiste già: " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Impostazioni" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Gennaio" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Febbraio" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Marzo" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Aprile" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Maggio" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Giugno" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Luglio" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Agosto" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Settembre" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Ottobre" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Novembre" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Dicembre" @@ -118,7 +114,7 @@ msgstr "Errore" msgid "ownCloud password reset" msgstr "Ripristino password di ownCloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Usa il collegamento seguente per ripristinare la password: {link}" diff --git a/l10n/it/files.po b/l10n/it/files.po index 29c50647d14..daa29074e68 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -59,31 +59,35 @@ msgstr "File" msgid "Delete" msgstr "Elimina" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "esiste già" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "sostituisci" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "annulla" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "sostituito" -#: js/filelist.js:195 -msgid "with" -msgstr "con" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "annulla" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "con" + +#: js/filelist.js:271 msgid "deleted" msgstr "eliminati" @@ -99,44 +103,44 @@ msgstr "Impossibile inviare il file poiché è una cartella o ha dimensione 0 by msgid "Upload Error" msgstr "Errore di invio" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "In corso" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Invio annullato" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Caricamento del file in corso. La chiusura della pagina annullerà il caricamento." -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Nome non valido" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Dimensione" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Modificato" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "cartella" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "cartelle" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "file" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "file" @@ -170,7 +174,7 @@ msgstr "Dimensione massima per i file ZIP" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Salva" #: templates/index.php:7 msgid "New" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 7a1601c8818..1ec0daf688c 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 05:39+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -72,12 +72,12 @@ msgstr "Lingua modificata" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Impossibile aggiungere l'utente al gruppo %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Impossibile rimuovere l'utente dal gruppo %s" #: js/apps.js:18 msgid "Error" @@ -196,7 +196,7 @@ msgstr "Vedere la pagina dell'applicazione su apps.owncloud.com" #: templates/apps.php:30 msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" -msgstr "" +msgstr "<span class=\"licence\"></span>-licenziato da <span class=\"author\"></span>" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index d0d6924197f..139012d619a 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 07:44+0000\n" -"Last-Translator: ttyn <tetuyano+transi@gmail.com>\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -31,59 +31,55 @@ msgstr "追加するカテゴリはありませんか?" msgid "This category already exists: " msgstr "このカテゴリはすでに存在します: " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "設定" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "1月" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "2月" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "3月" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "4月" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "5月" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "6月" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "7月" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "8月" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "9月" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "10月" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "11月" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "12月" @@ -115,7 +111,7 @@ msgstr "エラー" msgid "ownCloud password reset" msgstr "ownCloudのパスワードをリセットします" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "パスワードをリセットするには次のリンクをクリックして下さい: {link}" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 74741422170..c73d204ecbc 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/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: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -57,31 +57,35 @@ msgstr "ファイル" msgid "Delete" msgstr "削除" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "既に存在します" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "置き換え" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "キャンセル" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "置換:" -#: js/filelist.js:195 -msgid "with" -msgstr "←" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "元に戻す" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "←" + +#: js/filelist.js:271 msgid "deleted" msgstr "削除" @@ -97,44 +101,44 @@ msgstr "アップロード使用としているファイルがディレクトリ msgid "Upload Error" msgstr "アップロードエラー" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "保留" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "アップロードはキャンセルされました。" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "無効な名前、'/' は使用できません。" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "サイズ" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "更新日時" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "フォルダ" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "フォルダ" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "ファイル" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "ファイル" @@ -168,7 +172,7 @@ msgstr "ZIPファイルへの最大入力サイズ" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "保存" #: templates/index.php:7 msgid "New" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index b98da01025a..9652d0d9757 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/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: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 02:09+0000\n" +"Last-Translator: Daisuke Deguchi <ddeguchi@is.nagoya-u.ac.jp>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,11 +30,11 @@ msgstr "認証エラー" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "グループは既に存在しています" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "グループを追加できません" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -54,11 +54,11 @@ msgstr "無効なリクエストです" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "グループを削除できません" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "ユーザを削除できません" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -67,12 +67,12 @@ msgstr "言語が変更されました" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "ユーザをグループ %s に追加できません" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "ユーザをグループ %s から削除できません" #: js/apps.js:18 msgid "Error" @@ -191,7 +191,7 @@ msgstr "apps.owncloud.com でアプリケーションのページを見てくだ #: templates/apps.php:30 msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" -msgstr "" +msgstr "<span class=\"licence\"></span>-ライセンス: <span class=\"author\"></span>" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index d414be77531..4d2f0561de8 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ko\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -31,59 +31,55 @@ msgstr "추가할 카테고리가 없습니까?" msgid "This category already exists: " msgstr "이 카테고리는 이미 존재합니다:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "설정" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "1월" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "2월" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "3월" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "4월" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "5월" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "6월" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "7월" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "8월" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "9월" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "10월" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "11월" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "12월" @@ -115,7 +111,7 @@ msgstr "에러" msgid "ownCloud password reset" msgstr "ownCloud 비밀번호 재설정" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "다음 링크를 사용하여 암호를 초기화할 수 있습니다: {link}" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 05dda7be5a3..2abe6f9ed62 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: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -57,31 +57,35 @@ msgstr "파일" msgid "Delete" msgstr "삭제" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "이미 존재 합니다" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "대체" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "취소" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "대체됨" -#: js/filelist.js:195 -msgid "with" -msgstr "와" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "복구" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "와" + +#: js/filelist.js:271 msgid "deleted" msgstr "삭제" @@ -97,44 +101,44 @@ msgstr "이 파일은 디렉토리이거나 0 바이트이기 때문에 업로 msgid "Upload Error" msgstr "업로드 에러" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "보류 중" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "업로드 취소." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "잘못된 이름, '/' 은 허용이 되지 않습니다." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "크기" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "수정됨" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "폴더" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "폴더" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "파일" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "파일" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index a9de0752461..6c3da7e6b59 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 02:01+0200\n" -"PO-Revision-Date: 2012-09-03 21:47+0000\n" -"Last-Translator: sim0n <sim0n@trypill.org>\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,59 +30,55 @@ msgstr "Keng Kategorie fir bäizesetzen?" msgid "This category already exists: " msgstr "Des Kategorie existéiert schonn:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Astellungen" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Januar" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Februar" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Mäerz" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Abrëll" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Mee" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Juni" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Juli" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "August" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "September" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Oktober" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "November" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Dezember" @@ -114,7 +110,7 @@ msgstr "Fehler" msgid "ownCloud password reset" msgstr "ownCloud Passwuert reset" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Benotz folgende Link fir däi Passwuert ze reseten: {link}" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index bda384f1ce1..bdce420aa1c 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/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: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -56,31 +56,35 @@ msgstr "Dateien" msgid "Delete" msgstr "Läschen" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "existéiert schonn" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "ersetzen" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "ofbriechen" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "ersat" -#: js/filelist.js:195 -msgid "with" -msgstr "mat" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "réckgängeg man" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "mat" + +#: js/filelist.js:271 msgid "deleted" msgstr "geläscht" @@ -96,44 +100,44 @@ msgstr "Kann deng Datei net eroplueden well et en Dossier ass oder 0 byte grouss msgid "Upload Error" msgstr "Fehler beim eroplueden" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Upload ofgebrach." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "File Upload am gaang. Wann's de des Säit verléiss gëtt den Upload ofgebrach." -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Ongültege Numm, '/' net erlaabt." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Gréisst" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Geännert" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "Dossier" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "Dossieren" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "Datei" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "Dateien" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index d2e08de4377..1e9dd8d63af 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: lt_LT\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -30,59 +30,55 @@ msgstr "Nepridėsite jokios kategorijos?" msgid "This category already exists: " msgstr "Tokia kategorija jau yra:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Nustatymai" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Sausis" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Vasaris" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Kovas" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Balandis" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Gegužė" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Birželis" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Liepa" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Rugpjūtis" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Rugsėjis" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Spalis" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Lapkritis" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Gruodis" @@ -114,7 +110,7 @@ msgstr "Klaida" msgid "ownCloud password reset" msgstr "ownCloud slaptažodžio atkūrimas" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Slaptažodio atkūrimui naudokite šią nuorodą: {link}" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 1aff17e92e2..058124ee7fa 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/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: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -57,31 +57,35 @@ msgstr "Failai" msgid "Delete" msgstr "Ištrinti" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "atšaukti" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -97,44 +101,44 @@ msgstr "Neįmanoma įkelti failo - jo dydis gali būti 0 bitų arba tai kataloga msgid "Upload Error" msgstr "Įkėlimo klaida" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Laukiantis" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Įkėlimas atšauktas." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Pavadinime negali būti naudojamas ženklas \"/\"." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Dydis" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Pakeista" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "katalogas" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "katalogai" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "failas" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "failai" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 35b9d2e8087..3716a06f25b 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -30,59 +30,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Iestatījumi" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -114,7 +110,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Izmantojiet šo linku lai mainītu paroli" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index b6fb8d8d076..5b5c7464b7d 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/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: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -56,31 +56,35 @@ msgstr "Faili" msgid "Delete" msgstr "Izdzēst" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "tāds fails jau eksistē" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "aizvietot" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "atcelt" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "aizvietots" -#: js/filelist.js:195 -msgid "with" -msgstr "ar" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "vienu soli atpakaļ" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "ar" + +#: js/filelist.js:271 msgid "deleted" msgstr "izdzests" @@ -96,44 +100,44 @@ msgstr "Nav iespējams augšuplādēt jūsu failu, jo tāds jau eksistē vai ar msgid "Upload Error" msgstr "Augšuplādēšanas laikā radās kļūda" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Gaida savu kārtu" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Augšuplāde ir atcelta" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Šis simbols '/', nav atļauts." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Izmērs" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Izmainīts" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "mape" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "mapes" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "fails" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "faili" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index b8fbb8b2a1d..f818b6bad6c 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: mk\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -32,59 +32,55 @@ msgstr "Нема категорија да се додаде?" msgid "This category already exists: " msgstr "Оваа категорија веќе постои:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Поставки" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Јануари" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Февруари" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Март" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Април" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Мај" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Јуни" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Јули" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Август" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Септември" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Октомври" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Ноември" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Декември" @@ -116,7 +112,7 @@ msgstr "Грешка" msgid "ownCloud password reset" msgstr "ресетирање на лозинка за ownCloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Користете ја следната врска да ја ресетирате Вашата лозинка: {link}" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 2ddfad5b8ce..7b01b543419 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/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: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -58,31 +58,35 @@ msgstr "Датотеки" msgid "Delete" msgstr "Избриши" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -98,44 +102,44 @@ msgstr "Не може да се преземе вашата датотека б msgid "Upload Error" msgstr "Грешка при преземање" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Чека" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Преземањето е прекинато." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "неисправно име, '/' не е дозволено." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Големина" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Променето" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "фолдер" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "фолдери" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "датотека" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "датотеки" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 76453523a6c..9902f55e846 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ms_MY\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -32,59 +32,55 @@ msgstr "Tiada kategori untuk di tambah?" msgid "This category already exists: " msgstr "Kategori ini telah wujud" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Tetapan" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Januari" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Februari" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Mac" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "April" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Mei" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Jun" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Julai" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Ogos" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "September" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Oktober" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "November" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Disember" @@ -116,7 +112,7 @@ msgstr "Ralat" msgid "ownCloud password reset" msgstr "Set semula kata lalaun ownCloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Guna pautan berikut untuk menetapkan semula kata laluan anda: {link}" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 9ba3bb1e22b..8c80a09dc7c 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -59,31 +59,35 @@ msgstr "fail" msgid "Delete" msgstr "Padam" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "Sudah wujud" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "ganti" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "Batal" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "diganti" -#: js/filelist.js:195 -msgid "with" -msgstr "dengan" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "dengan" + +#: js/filelist.js:271 msgid "deleted" msgstr "dihapus" @@ -99,44 +103,44 @@ msgstr "Tidak boleh memuatnaik fail anda kerana mungkin ianya direktori atau sai msgid "Upload Error" msgstr "Muat naik ralat" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Dalam proses" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Muatnaik dibatalkan." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "penggunaa nama tidak sah, '/' tidak dibenarkan." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Saiz" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "direktori" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "direktori" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "fail" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "fail" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 7f1fc5fdb4e..edb38d95e59 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -12,15 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -34,59 +34,55 @@ msgstr "Ingen kategorier å legge til?" msgid "This category already exists: " msgstr "Denne kategorien finnes allerede:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Innstillinger" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Januar" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Februar" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Mars" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "April" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Mai" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Juni" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Juli" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "August" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "September" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Oktober" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "November" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Desember" @@ -118,7 +114,7 @@ msgstr "Feil" msgid "ownCloud password reset" msgstr "Tilbakestill ownCloud passord" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Bruk følgende lenke for å tilbakestille passordet ditt: {link}" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index a65a66c9649..c39e87c9823 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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" @@ -60,31 +60,35 @@ msgstr "Filer" msgid "Delete" msgstr "Slett" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "eksisterer allerede" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "erstatt" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "avbryt" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "erstattet" -#: js/filelist.js:195 -msgid "with" -msgstr "med" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "angre" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "med" + +#: js/filelist.js:271 msgid "deleted" msgstr "slettet" @@ -100,44 +104,44 @@ msgstr "Kan ikke laste opp filen din siden det er en mappe eller den har 0 bytes msgid "Upload Error" msgstr "Opplasting feilet" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Ventende" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Opplasting avbrutt." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Ugyldig navn, '/' er ikke tillatt. " -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Størrelse" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Endret" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "mappe" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "mapper" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "fil" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "filer" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 2a40cf05712..03a847800eb 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -4,6 +4,7 @@ # # Translators: # <bart.formosus@gmail.com>, 2011. +# <didi.debian@cknow.org>, 2012. # Erik Bent <hj.bent.60@gmail.com>, 2012. # <icewind1991@gmail.com>, 2011. # <jos@gelauff.net>, 2012. @@ -14,15 +15,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-02 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 20:13+0000\n" -"Last-Translator: Richard Bos <radoeka@gmail.com>\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -36,59 +37,55 @@ msgstr "Geen categorie toevoegen?" msgid "This category already exists: " msgstr "De categorie bestaat al." -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Instellingen" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Januari" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Februari" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Maart" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "April" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Mei" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Juni" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Juli" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Augustus" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "September" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Oktober" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "November" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "December" @@ -120,7 +117,7 @@ msgstr "Fout" msgid "ownCloud password reset" msgstr "ownCloud wachtwoord herstellen" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Gebruik de volgende link om je wachtwoord te resetten: {link}" @@ -147,7 +144,7 @@ msgstr "Resetaanvraag" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Je wachtwoord is geweizigd" +msgstr "Je wachtwoord is gewijzigd" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 96f7a87e84e..b710bae7f68 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -5,6 +5,7 @@ # Translators: # <bart.formosus@gmail.com>, 2011. # <bartv@thisnet.nl>, 2011. +# <didi.debian@cknow.org>, 2012. # Erik Bent <hj.bent.60@gmail.com>, 2012. # <icewind1991@gmail.com>, 2011. # <jos@gelauff.net>, 2012. @@ -15,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -63,31 +64,35 @@ msgstr "Bestanden" msgid "Delete" msgstr "Verwijder" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "bestaat al" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "vervang" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "annuleren" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "vervangen" -#: js/filelist.js:195 -msgid "with" -msgstr "door" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "ongedaan maken" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "door" + +#: js/filelist.js:271 msgid "deleted" msgstr "verwijderd" @@ -103,44 +108,44 @@ msgstr "uploaden van de file mislukt, het is of een directory of de bestandsgroo msgid "Upload Error" msgstr "Upload Fout" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Wachten" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Uploaden geannuleerd." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Bestands upload is bezig. Wanneer de pagina nu verlaten wordt, stopt de upload." -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Ongeldige naam, '/' is niet toegestaan." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Bestandsgrootte" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Laatst aangepast" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "map" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "mappen" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "bestand" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "bestanden" @@ -174,7 +179,7 @@ msgstr "Maximale grootte voor ZIP bestanden" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Opslaan" #: templates/index.php:7 msgid "New" diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index 48b5c0641ae..7027b587198 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -3,28 +3,29 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# <didi.debian@cknow.org>, 2012. # Richard Bos <radoeka@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 08:29+0000\n" -"Last-Translator: Richard Bos <radoeka@gmail.com>\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 11:13+0000\n" +"Last-Translator: diederikdehaas <didi.debian@cknow.org>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 msgid "Password" -msgstr "Passeerwoord" +msgstr "Wachtwoord" #: templates/authenticate.php:6 msgid "Submit" -msgstr "" +msgstr "Verzenden" #: templates/public.php:9 templates/public.php:19 msgid "Download" @@ -34,6 +35,6 @@ msgstr "Downloaden" msgid "No preview available for" msgstr "Geen voorbeeldweergave beschikbaar voor" -#: templates/public.php:23 +#: templates/public.php:25 msgid "web services under your control" msgstr "Webdiensten in eigen beheer" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 3c52376d35c..207f04819e1 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -4,6 +4,7 @@ # # Translators: # <bart.formosus@gmail.com>, 2011. +# <didi.debian@cknow.org>, 2012. # Erik Bent <hj.bent.60@gmail.com>, 2012. # <icewind1991@gmail.com>, 2011, 2012. # <jos@gelauff.net>, 2012. @@ -14,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 11:28+0000\n" +"Last-Translator: diederikdehaas <didi.debian@cknow.org>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,11 +36,11 @@ msgstr "Authenticatie fout" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "Groep bestaat al" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "Niet in staat om groep toe te voegen" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -59,11 +60,11 @@ msgstr "Ongeldig verzoek" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "Niet in staat om groep te verwijderen" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "Niet in staat om gebruiker te verwijderen" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -72,12 +73,12 @@ msgstr "Taal aangepast" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Niet in staat om gebruiker toe te voegen aan groep %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Niet in staat om gebruiker te verwijderen uit groep %s" #: js/apps.js:18 msgid "Error" @@ -180,7 +181,7 @@ msgid "" "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>." -msgstr "" +msgstr "Ontwikkeld door de <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud gemeenschap</a>, de <a href=\"https://github.com/owncloud\" target=\"_blank\">bron code</a> is gelicenseerd onder de <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." #: templates/apps.php:10 msgid "Add your App" @@ -196,7 +197,7 @@ msgstr "Zie de applicatiepagina op apps.owncloud.com" #: templates/apps.php:30 msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" -msgstr "" +msgstr "<span class=\"licence\"></span>-Gelicenseerd door <span class=\"author\"></span>" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index aa0a9a4c8be..ea34767b84e 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: nn_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -31,59 +31,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Innstillingar" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -115,7 +111,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Bruk føljane link til å tilbakestille passordet ditt: {link}" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 9bf43656e8a..fc058e3f3ea 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: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -57,31 +57,35 @@ msgstr "Filer" msgid "Delete" msgstr "Slett" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -97,44 +101,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Storleik" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Endra" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 3889b13622d..0cd447bf8ed 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 02:01+0200\n" -"PO-Revision-Date: 2012-09-03 06:40+0000\n" -"Last-Translator: Cyryl Sochacki <>\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,59 +35,55 @@ msgstr "Brak kategorii" msgid "This category already exists: " msgstr "Ta kategoria już istnieje" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Ustawienia" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Styczeń" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Luty" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Marzec" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Kwiecień" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Maj" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Czerwiec" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Lipiec" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Sierpień" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Wrzesień" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Październik" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Listopad" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Grudzień" @@ -119,7 +115,7 @@ msgstr "Błąd" msgid "ownCloud password reset" msgstr "restart hasła" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Proszę użyć tego odnośnika do zresetowania hasła: {link}" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index cce7204605e..2512f6db596 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -6,13 +6,14 @@ # Cyryl Sochacki <>, 2012. # Marcin Małecki <gerber@tkdami.net>, 2011, 2012. # <mosslar@gmail.com>, 2011. +# <mplichta@gmail.com>, 2012. # Piotr Sokół <psokol@jabster.pl>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -59,31 +60,35 @@ msgstr "Pliki" msgid "Delete" msgstr "Usuwa element" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "Już istnieje" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "zastap" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "anuluj" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "zastąpione" -#: js/filelist.js:195 -msgid "with" -msgstr "z" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "wróć" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "z" + +#: js/filelist.js:271 msgid "deleted" msgstr "skasuj" @@ -99,44 +104,44 @@ msgstr "Nie można wczytać pliku jeśli jest katalogiem lub ma 0 bajtów" msgid "Upload Error" msgstr "Błąd wczytywania" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Oczekujące" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Wczytywanie anulowane." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Wysyłanie pliku jest w toku. Teraz opuszczając stronę wysyłanie zostanie anulowane." -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Nieprawidłowa nazwa '/' jest niedozwolone." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Rozmiar" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Czas modyfikacji" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "folder" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "foldery" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "plik" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "pliki" @@ -170,7 +175,7 @@ msgstr "Maksymalna wielkość pliku wejściowego ZIP " #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Zapisz" #: templates/index.php:7 msgid "New" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index d6fef0cea3e..adfbe39053c 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -9,14 +9,15 @@ # Marcin Małecki <gerber@tkdami.net>, 2011, 2012. # Marcin Małecki <mosslar@gmail.com>, 2011. # <mosslar@gmail.com>, 2011. +# <mplichta@gmail.com>, 2012. # Piotr Sokół <psokol@jabster.pl>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 12:06+0000\n" +"Last-Translator: emc <mplichta@gmail.com>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -72,12 +73,12 @@ msgstr "Język zmieniony" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Nie można dodać użytkownika do grupy %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Nie można usunąć użytkownika z grupy %s" #: js/apps.js:18 msgid "Error" @@ -110,7 +111,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "Twój katalog danych i pliki są prawdopodobnie dostępne z Internetu. Plik .htaccess, który dostarcza ownCloud nie działa. Sugerujemy, aby skonfigurować serwer WWW w taki sposób, aby katalog danych nie był dostępny lub przenieść katalog danych poza główny katalog serwera WWW." #: templates/admin.php:31 msgid "Cron" @@ -146,7 +147,7 @@ msgstr "Zezwalaj na łącza" #: templates/admin.php:52 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Zezwalaj użytkownikom na puliczne współdzielenie elementów za pomocą linków" #: templates/admin.php:56 msgid "Allow resharing" @@ -154,15 +155,15 @@ msgstr "Zezwól na ponowne udostępnianie" #: templates/admin.php:57 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "Zezwalaj użytkownikom na ponowne współdzielenie elementów już z nimi współdzilonych" #: templates/admin.php:60 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Zezwalaj użytkownikom na współdzielenie z kimkolwiek" #: templates/admin.php:62 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Zezwalaj użytkownikom współdzielić z użytkownikami ze swoich grup" #: templates/admin.php:69 msgid "Log" @@ -180,7 +181,7 @@ msgid "" "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>." -msgstr "" +msgstr "Stwirzone przez <a href=\"http://ownCloud.org/contact\" target=\"_blank\"> społeczność ownCloud</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">kod źródłowy</a> na licencji <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." #: templates/apps.php:10 msgid "Add your App" @@ -196,7 +197,7 @@ msgstr "Zobacz stronę aplikacji na apps.owncloud.com" #: templates/apps.php:30 msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" -msgstr "" +msgstr "<span class=\"licence\"></span>-licencjonowane przez <span class=\"author\"></span>" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/pl_PL/core.po b/l10n/pl_PL/core.po index f7b7d5a38de..55486564fd2 100644 --- a/l10n/pl_PL/core.po +++ b/l10n/pl_PL/core.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pl_PL\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -29,59 +29,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -113,7 +109,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" diff --git a/l10n/pl_PL/files.po b/l10n/pl_PL/files.po index c47ae7e8223..227d04a1ecb 100644 --- a/l10n/pl_PL/files.po +++ b/l10n/pl_PL/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: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -55,31 +55,35 @@ msgstr "" msgid "Delete" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -95,44 +99,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index be5dc9aeb66..6e1c9fdcd9c 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -12,15 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -34,59 +34,55 @@ msgstr "Nenhuma categoria adicionada?" msgid "This category already exists: " msgstr "Essa categoria já existe" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Configurações" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Janeiro" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Fevereiro" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Março" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Abril" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Maio" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Junho" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Julho" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Agosto" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Setembro" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Outubro" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Novembro" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Dezembro" @@ -118,7 +114,7 @@ msgstr "Erro" msgid "ownCloud password reset" msgstr "Redefinir senha ownCloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Use o seguinte link para redefinir sua senha: {link}" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 82a5a58bd6e..6e29f6321bf 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -60,31 +60,35 @@ msgstr "Arquivos" msgid "Delete" msgstr "Excluir" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "já existe" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "substituir" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "substituido " -#: js/filelist.js:195 -msgid "with" -msgstr "com" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "desfazer" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "com" + +#: js/filelist.js:271 msgid "deleted" msgstr "deletado" @@ -100,44 +104,44 @@ msgstr "Impossível enviar seus arquivo como diretório ou ele tem 0 bytes." msgid "Upload Error" msgstr "Erro de envio" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Pendente" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Envio cancelado." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Nome inválido, '/' não é permitido." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Tamanho" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Modificado" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "pasta" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "pastas" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "arquivo" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "arquivos" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 159432daa93..ef75d8f6bdf 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt_PT\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -32,59 +32,55 @@ msgstr "Nenhuma categoria para adicionar?" msgid "This category already exists: " msgstr "Esta categoria já existe:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Definições" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Janeiro" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Fevereiro" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Março" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Abril" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Maio" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Junho" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Julho" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Agosto" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Setembro" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Outubro" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Novembro" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Dezembro" @@ -116,7 +112,7 @@ msgstr "Erro" msgid "ownCloud password reset" msgstr "Reposição da password ownCloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Use o seguinte endereço para repor a sua password: {link}" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 80b71ab553e..c0ba21ecbc6 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/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: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -58,31 +58,35 @@ msgstr "Ficheiros" msgid "Delete" msgstr "Apagar" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "Já existe" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "substituir" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "substituido" -#: js/filelist.js:195 -msgid "with" -msgstr "com" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "desfazer" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "com" + +#: js/filelist.js:271 msgid "deleted" msgstr "apagado" @@ -98,44 +102,44 @@ msgstr "Não é possivel fazer o upload do ficheiro devido a ser uma pasta ou te msgid "Upload Error" msgstr "Erro no upload" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Pendente" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "O upload foi cancelado." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "nome inválido, '/' não permitido." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Tamanho" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Modificado" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "pasta" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "pastas" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "ficheiro" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "ficheiros" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 40d7fc389f3..42e779595e1 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1))\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -32,59 +32,55 @@ msgstr "Nici o categorie de adăugat?" msgid "This category already exists: " msgstr "Această categorie deja există:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Configurări" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -116,7 +112,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "Resetarea parolei ownCloud " -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Folosește următorul link pentru a reseta parola: {link}" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index c9ff62753cc..84051830b49 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -58,31 +58,35 @@ msgstr "Fișiere" msgid "Delete" msgstr "Șterge" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -98,44 +102,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Dimensiune" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Modificat" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index cd7648d5b90..fa6451a38b3 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -11,15 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ru\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -33,59 +33,55 @@ msgstr "Нет категорий для добавления?" msgid "This category already exists: " msgstr "Эта категория уже существует: " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Настройки" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Январь" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Февраль" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Март" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Апрель" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Май" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Июнь" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Июль" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Август" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Сентябрь" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Октябрь" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Ноябрь" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Декабрь" @@ -117,7 +113,7 @@ msgstr "Ошибка" msgid "ownCloud password reset" msgstr "Сброс пароля " -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Используйте следующую ссылку чтобы сбросить пароль: {link}" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index e558e9777a9..250d6badf4e 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -61,31 +61,35 @@ msgstr "Файлы" msgid "Delete" msgstr "Удалить" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "уже существует" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "заменить" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "отмена" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "заменён" -#: js/filelist.js:195 -msgid "with" -msgstr "с" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "отмена" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "с" + +#: js/filelist.js:271 msgid "deleted" msgstr "удален" @@ -101,44 +105,44 @@ msgstr "Не удается загрузить файл размером 0 ба msgid "Upload Error" msgstr "Ошибка загрузки" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Ожидание" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Загрузка отменена." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Файл в процессе загрузки. Покинув страницу вы прервёте загрузку." -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Неверное имя, '/' не допускается." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Размер" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Изменён" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "папка" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "папки" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "файл" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "файлы" diff --git a/l10n/ru_RU/core.po b/l10n/ru_RU/core.po index 61648a74b24..6c4aeee5d54 100644 --- a/l10n/ru_RU/core.po +++ b/l10n/ru_RU/core.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ru_RU\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -29,59 +29,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -113,7 +109,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" diff --git a/l10n/ru_RU/files.po b/l10n/ru_RU/files.po index 2ea2165835d..3d22b6c9367 100644 --- a/l10n/ru_RU/files.po +++ b/l10n/ru_RU/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: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -55,31 +55,35 @@ msgstr "" msgid "Delete" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -95,44 +99,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index e0a133b9ed1..bcdf41a7d2e 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: sk_SK\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -31,59 +31,55 @@ msgstr "Žiadna kategória pre pridanie?" msgid "This category already exists: " msgstr "Táto kategória už existuje:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Nastavenia" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Január" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Február" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Marec" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Apríl" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Máj" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Jún" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Júl" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "August" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "September" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Október" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "November" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "December" @@ -115,7 +111,7 @@ msgstr "Chyba" msgid "ownCloud password reset" msgstr "Obnovenie hesla pre ownCloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Použite nasledujúci odkaz pre obnovenie vášho hesla: {link}" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 5d83420becd..e47f0b00883 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/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: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -57,31 +57,35 @@ msgstr "Súbory" msgid "Delete" msgstr "Odstrániť" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -97,44 +101,44 @@ msgstr "Nemôžem nahrať súbor lebo je to priečinok alebo má 0 bajtov." msgid "Upload Error" msgstr "Chyba nahrávania" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Čaká sa" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Nahrávanie zrušené" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Chybný názov, \"/\" nie je povolené" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Veľkosť" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Upravené" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "priečinok" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "priečinky" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "súbor" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "súbory" diff --git a/l10n/sk_SK/files_encryption.po b/l10n/sk_SK/files_encryption.po index c7ae40ae63c..a698624cb5d 100644 --- a/l10n/sk_SK/files_encryption.po +++ b/l10n/sk_SK/files_encryption.po @@ -3,32 +3,33 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# <intense.feel@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 17:32+0000\n" +"Last-Translator: intense <intense.feel@gmail.com>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: sk_SK\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: templates/settings.php:3 msgid "Encryption" -msgstr "" +msgstr "Šifrovanie" #: templates/settings.php:4 msgid "Exclude the following file types from encryption" -msgstr "" +msgstr "Vynechať nasledujúce súbory pri šifrovaní" #: templates/settings.php:5 msgid "None" -msgstr "" +msgstr "Žiadne" #: templates/settings.php:10 msgid "Enable Encryption" -msgstr "" +msgstr "Zapnúť šifrovanie" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 5039ad2eacd..66b5310397f 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 14:09+0000\n" -"Last-Translator: Peter Peroša <peter.perosa@gmail.com>\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\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" "Content-Transfer-Encoding: 8bit\n" "Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3)\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -32,59 +32,55 @@ msgstr "Ni kategorije za dodajanje?" msgid "This category already exists: " msgstr "Ta kategorija že obstaja:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Nastavitve" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "januar" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "februar" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "marec" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "april" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "maj" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "junij" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "julij" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "avgust" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "september" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "oktober" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "november" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "december" @@ -116,7 +112,7 @@ msgstr "Napaka" msgid "ownCloud password reset" msgstr "Ponastavitev gesla ownCloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Uporabite sledečo povezavo za ponastavitev gesla: {link}" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index f905c7b48cb..73d23c25795 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/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: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -58,31 +58,35 @@ msgstr "Datoteke" msgid "Delete" msgstr "Izbriši" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "že obstaja" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "nadomesti" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "ekliči" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "nadomeščen" -#: js/filelist.js:195 -msgid "with" -msgstr "z" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "razveljavi" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "z" + +#: js/filelist.js:271 msgid "deleted" msgstr "izbrisano" @@ -98,44 +102,44 @@ msgstr "Nalaganje ni mogoče, saj gre za mapo, ali pa ima datoteka velikost 0 ba msgid "Upload Error" msgstr "Napaka pri nalaganju" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Na čakanju" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Nalaganje je bilo preklicano." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Nalaganje datoteke je v teku. Če zapustite to stran zdaj, boste nalaganje preklicali." -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Neveljavno ime. Znak '/' ni dovoljen." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Velikost" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Spremenjeno" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "mapa" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "mape" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "datoteka" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "datoteke" @@ -169,7 +173,7 @@ msgstr "Največja vhodna velikost za ZIP datoteke" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Shrani" #: templates/index.php:7 msgid "New" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 870976e9060..bd1e022b7d6 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 06:02+0000\n" +"Last-Translator: Peter Peroša <peter.perosa@gmail.com>\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" @@ -68,12 +68,12 @@ msgstr "Jezik je bil spremenjen" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Uporabnika ni mogoče dodati k skupini %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Uporabnika ni mogoče odstraniti iz skupine %s" #: js/apps.js:18 msgid "Error" @@ -192,7 +192,7 @@ msgstr "Obiščite spletno stran aplikacije na apps.owncloud.com" #: templates/apps.php:30 msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" -msgstr "" +msgstr "<span class=\"licence\"></span>-licencirana s strani <span class=\"author\"></span>" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/so/core.po b/l10n/so/core.po index 4ace6abe5b2..f34edceab57 100644 --- a/l10n/so/core.po +++ b/l10n/so/core.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: so\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -29,59 +29,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -113,7 +109,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" diff --git a/l10n/so/files.po b/l10n/so/files.po index c9c8fbd1ca1..a00a9a156cb 100644 --- a/l10n/so/files.po +++ b/l10n/so/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: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" "MIME-Version: 1.0\n" @@ -55,31 +55,35 @@ msgstr "" msgid "Delete" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -95,44 +99,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index a26d7b75298..2e4f99fe345 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: sr\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -30,59 +30,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Подешавања" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -114,7 +110,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Овом везом ресетујте своју лозинку: {link}" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 49d3090e681..8dac0a42647 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/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: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -56,31 +56,35 @@ msgstr "Фајлови" msgid "Delete" msgstr "Обриши" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -96,44 +100,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Величина" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Задња измена" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index 57abf6fe74e..c3541b058aa 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: sr@latin\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -30,59 +30,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Podešavanja" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -114,7 +110,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index fd9e18816f3..e52820431ed 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/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: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -56,31 +56,35 @@ msgstr "Fajlovi" msgid "Delete" msgstr "Obriši" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -96,44 +100,44 @@ msgstr "" msgid "Upload Error" msgstr "" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Veličina" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Zadnja izmena" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 870dffe8a99..57ad5c15e41 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -13,15 +13,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 08:10+0000\n" -"Last-Translator: Magnus Höglund <magnus@linux.com>\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -35,59 +35,55 @@ msgstr "Ingen kategori att lägga till?" msgid "This category already exists: " msgstr "Denna kategori finns redan:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Inställningar" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Januari" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Februari" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Mars" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "April" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Maj" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Juni" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Juli" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Augusti" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "September" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Oktober" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "November" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "December" @@ -119,7 +115,7 @@ msgstr "Fel" msgid "ownCloud password reset" msgstr "ownCloud lösenordsåterställning" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Använd följande länk för att återställa lösenordet: {link}" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 38e7c5af596..847a38a3958 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -61,31 +61,35 @@ msgstr "Filer" msgid "Delete" msgstr "Radera" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "finns redan" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "ersätt" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "avbryt" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "ersatt" -#: js/filelist.js:195 -msgid "with" -msgstr "med" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "ångra" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "med" + +#: js/filelist.js:271 msgid "deleted" msgstr "raderad" @@ -101,44 +105,44 @@ msgstr "Kunde inte ladda upp dina filer eftersom det antingen är en mapp eller msgid "Upload Error" msgstr "Uppladdningsfel" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Väntar" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Uppladdning avbruten." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen." -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Ogiltigt namn, '/' är inte tillåten." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Storlek" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Ändrad" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "mapp" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "mappar" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "fil" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "filer" @@ -172,7 +176,7 @@ msgstr "Största tillåtna storlek för ZIP-filer" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Spara" #: templates/index.php:7 msgid "New" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 77788a1797d..f93b1f0f3c7 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 06:05+0000\n" +"Last-Translator: Magnus Höglund <magnus@linux.com>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,11 +35,11 @@ msgstr "Autentiseringsfel" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "Gruppen finns redan" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "Kan inte lägga till grupp" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -59,11 +59,11 @@ msgstr "Ogiltig begäran" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "Kan inte radera grupp" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "Kan inte radera användare" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -72,12 +72,12 @@ msgstr "Språk ändrades" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Kan inte lägga till användare i gruppen %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Kan inte radera användare från gruppen %s" #: js/apps.js:18 msgid "Error" @@ -196,7 +196,7 @@ msgstr "Se programsida på apps.owncloud.com" #: templates/apps.php:30 msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" -msgstr "" +msgstr "<span class=\"licence\"></span>-licensierad av <span class=\"author\"></span>" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index d59cc85eb81..9112352a3a0 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-05 22:51+0200\n" +"POT-Creation-Date: 2012-09-06 02:02+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.pot b/l10n/templates/files.pot index 44a43dfd40b..74ab3230866 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-05 22:50+0200\n" +"POT-Creation-Date: 2012-09-06 02:01+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 99b6ae69c3b..0590a198801 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-05 22:50+0200\n" +"POT-Creation-Date: 2012-09-06 02:01+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 adca26e6ea3..76fafddc1b2 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-05 22:50+0200\n" +"POT-Creation-Date: 2012-09-06 02:01+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 160cb143db5..b0c45867827 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-05 22:50+0200\n" +"POT-Creation-Date: 2012-09-06 02:01+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 be0aedd0b89..b17eb3894d1 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-05 22:50+0200\n" +"POT-Creation-Date: 2012-09-06 02:02+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 cfbef6875d2..5a86298e890 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-05 22:51+0200\n" +"POT-Creation-Date: 2012-09-06 02:02+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 f506265f120..42965d3e0bd 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-05 22:51+0200\n" +"POT-Creation-Date: 2012-09-06 02:02+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 403d1173b37..82b19373c1d 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-05 22:50+0200\n" +"POT-Creation-Date: 2012-09-06 02:02+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 80fbd9a5ac9..57ee6a0d229 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 17:01+0000\n" -"Last-Translator: AriesAnywhere Anywhere <ariesanywhere@gmail.com>\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: th_TH\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -31,59 +31,55 @@ msgstr "ไม่มีหมวดหมู่ที่ต้องการเ msgid "This category already exists: " msgstr "หมวดหมู่นี้มีอยู่แล้ว: " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "ตั้งค่า" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "มกราคม" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "กุมภาพันธ์" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "มีนาคม" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "เมษายน" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "พฤษภาคม" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "มิถุนายน" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "กรกฏาคม" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "สิงหาคม" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "กันยายน" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "ตุลาคม" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "พฤศจิกายน" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "ธันวาคม" @@ -115,7 +111,7 @@ msgstr "พบข้อผิดพลาด" msgid "ownCloud password reset" msgstr "รีเซ็ตรหัสผ่าน ownCloud" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "ใช้ลิงค์ต่อไปนี้เพื่อเปลี่ยนรหัสผ่านของคุณใหม่: {link}" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 93ca73a3d10..b6ff21b3829 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/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: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -57,31 +57,35 @@ msgstr "ไฟล์" msgid "Delete" msgstr "ลบ" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "มีอยู่แล้ว" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "แทนที่" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "ยกเลิก" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "แทนที่แล้ว" -#: js/filelist.js:195 -msgid "with" -msgstr "กับ" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "เลิกทำ" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "กับ" + +#: js/filelist.js:271 msgid "deleted" msgstr "ลบแล้ว" @@ -97,44 +101,44 @@ msgstr "ไม่สามารถอัพโหลดไฟล์ของค msgid "Upload Error" msgstr "เกิดข้อผิดพลาดในการอัพโหลด" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "อยู่ระหว่างดำเนินการ" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "การอัพโหลดถูกยกเลิก" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "การอัพโหลดไฟล์กำลังอยู่ในระหว่างดำเนินการ การออกจากหน้าเว็บนี้จะทำให้การอัพโหลดถูกยกเลิก" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "ชื่อที่ใช้ไม่ถูกต้อง '/' ไม่อนุญาตให้ใช้งาน" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "ขนาด" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "ปรับปรุงล่าสุด" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "โฟลเดอร์" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "โฟลเดอร์" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "ไฟล์" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "ไฟล์" @@ -168,7 +172,7 @@ msgstr "ขนาดไฟล์ ZIP สูงสุด" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "บันทึก" #: templates/index.php:7 msgid "New" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 4de68241556..1919a13b9ef 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-05 00:31+0000\n" +"Last-Translator: AriesAnywhere Anywhere <ariesanywhere@gmail.com>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,11 +31,11 @@ msgstr "เกิดข้อผิดพลาดเกี่ยวกับส #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "มีกลุ่มดังกล่าวอยู่ในระบบอยู่แล้ว" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "ไม่สามารถเพิ่มกลุ่มได้" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -55,11 +55,11 @@ msgstr "คำร้องขอไม่ถูกต้อง" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "ไม่สามารถลบกลุ่มได้" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "ไม่สามารถลบผู้ใช้งานได้" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -68,12 +68,12 @@ msgstr "เปลี่ยนภาษาเรียบร้อยแล้ว #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "ไม่สามารถเพิ่มผู้ใช้งานเข้าไปที่กลุ่ม %s ได้" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "ไม่สามารถลบผู้ใช้งานออกจากกลุ่ม %s ได้" #: js/apps.js:18 msgid "Error" @@ -192,7 +192,7 @@ msgstr "ดูหน้าแอพพลิเคชั่นที่ apps.own #: templates/apps.php:30 msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" -msgstr "" +msgstr "<span class=\"licence\"></span>-ลิขสิทธิ์การใช้งานโดย <span class=\"author\"></span>" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 8644c4df375..a715d982b63 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 21:48+0000\n" -"Last-Translator: Caner Başaran <basaran.caner@gmail.com>\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: tr\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -32,59 +32,55 @@ msgstr "Eklenecek kategori yok?" msgid "This category already exists: " msgstr "Bu kategori zaten mevcut: " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Ayarlar" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Ocak" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Şubat" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Mart" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Nisan" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Mayıs" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Haziran" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Temmuz" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Ağustos" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Eylül" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Ekim" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Kasım" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Aralık" @@ -116,7 +112,7 @@ msgstr "Hata" msgid "ownCloud password reset" msgstr "ownCloud parola sıfırlama" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Bu bağlantıyı kullanarak parolanızı sıfırlayın: {link}" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 865f2bc6d66..01675ca064c 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -59,31 +59,35 @@ msgstr "Dosyalar" msgid "Delete" msgstr "Sil" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "zaten mevcut" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "değiştir" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "iptal" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "değiştirildi" -#: js/filelist.js:195 -msgid "with" -msgstr "ile" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "geri al" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "ile" + +#: js/filelist.js:271 msgid "deleted" msgstr "silindi" @@ -99,44 +103,44 @@ msgstr "Dosyanızın boyutu 0 byte olduğundan veya bir dizin olduğundan yükle msgid "Upload Error" msgstr "Yükleme hatası" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Bekliyor" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Yükleme iptal edildi." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dosya yükleme işlemi sürüyor. Şimdi sayfadan ayrılırsanız işleminiz iptal olur." -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Geçersiz isim, '/' işaretine izin verilmiyor." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Boyut" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Değiştirilme" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "dizin" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "dizinler" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "dosya" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "dosyalar" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index f68db85912c..532bd0a5474 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: uk\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -31,59 +31,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Налаштування" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "" @@ -115,7 +111,7 @@ msgstr "" msgid "ownCloud password reset" msgstr "" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index ebdc5f8b9c0..558899c1a20 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/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: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -57,31 +57,35 @@ msgstr "Файли" msgid "Delete" msgstr "Видалити" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 -msgid "cancel" +#: js/filelist.js:186 +msgid "suggest name" msgstr "" -#: js/filelist.js:195 -msgid "replaced" +#: js/filelist.js:186 js/filelist.js:188 +msgid "cancel" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 +msgid "replaced" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "відмінити" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "" + +#: js/filelist.js:271 msgid "deleted" msgstr "видалені" @@ -97,44 +101,44 @@ msgstr "Неможливо завантажити ваш файл тому, що msgid "Upload Error" msgstr "Помилка завантаження" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Очікування" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Завантаження перервано." -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Некоректне ім'я, '/' не дозволено." -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Розмір" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Змінено" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "тека" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "теки" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "файл" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "файли" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 16e671b63c2..4030732e1e4 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: vi\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -30,59 +30,55 @@ msgstr "Không có danh mục được thêm?" msgid "This category already exists: " msgstr "Danh mục này đã được tạo :" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "Cài đặt" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "Tháng 1" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "Tháng 2" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "Tháng 3" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "Tháng 4" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "Tháng 5" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "Tháng 6" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "Tháng 7" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "Tháng 8" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "Tháng 9" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "Tháng 10" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "Tháng 11" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "Tháng 12" @@ -114,7 +110,7 @@ msgstr "Lỗi" msgid "ownCloud password reset" msgstr "Khôi phục mật khẩu Owncloud " -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Dùng đường dẫn sau để khôi phục lại mật khẩu : {link}" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 6e2d43a3496..fb95389e333 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: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -56,31 +56,35 @@ msgstr "Tập tin" msgid "Delete" msgstr "Xóa" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -96,44 +100,44 @@ msgstr "" msgid "Upload Error" msgstr "Tải lên lỗi" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Chờ" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "Hủy tải lên" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Tên không hợp lệ ,không được phép dùng '/'" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "Kích cỡ" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "Thay đổi" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "folder" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "folders" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "file" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "files" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index 428eaa941b3..1993d8aed9a 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -30,59 +30,55 @@ msgstr "没有分类添加了?" msgid "This category already exists: " msgstr "这个分类已经存在了:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "设置" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "一月" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "二月" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "三月" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "四月" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "五月" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "六月" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "七月" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "八月" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "九月" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "十月" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "十一月" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "十二月" @@ -114,7 +110,7 @@ msgstr "错误" msgid "ownCloud password reset" msgstr "私有云密码重置" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "使用下面的链接来重置你的密码:{link}" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index 00bdb62e96f..3224b4b01df 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/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: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@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" @@ -56,31 +56,35 @@ msgstr "文件" msgid "Delete" msgstr "删除" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "已经存在了" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "替换" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "取消" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "替换过了" -#: js/filelist.js:195 -msgid "with" -msgstr "随着" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "撤销" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "随着" + +#: js/filelist.js:271 msgid "deleted" msgstr "删除" @@ -96,44 +100,44 @@ msgstr "不能上传你指定的文件,可能因为它是个文件夹或者大 msgid "Upload Error" msgstr "上传错误" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "Pending" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "上传取消了" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "非法文件名,\"/\"是不被许可的" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "大小" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "修改日期" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "文件夹" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "文件夹" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "文件" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "文件" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 83cd931d856..57d881dcff1 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -31,59 +31,55 @@ msgstr "没有可添加分类?" msgid "This category already exists: " msgstr "此分类已存在: " -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "设置" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "一月" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "二月" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "三月" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "四月" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "五月" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "六月" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "七月" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "八月" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "九月" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "十月" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "十一月" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "十二月" @@ -115,7 +111,7 @@ msgstr "错误" msgid "ownCloud password reset" msgstr "重置 ownCloud 密码" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "使用以下链接重置您的密码:{link}" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 4e2d600c1e5..3b55dd63418 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -58,31 +58,35 @@ msgstr "文件" msgid "Delete" msgstr "删除" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "已经存在" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "替换" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "取消" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "已经替换" -#: js/filelist.js:195 -msgid "with" -msgstr "随着" - -#: js/filelist.js:195 js/filelist.js:246 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 msgid "undo" msgstr "撤销" -#: js/filelist.js:246 +#: js/filelist.js:237 +msgid "with" +msgstr "随着" + +#: js/filelist.js:271 msgid "deleted" msgstr "已经删除" @@ -98,44 +102,44 @@ msgstr "无法上传文件,因为它是一个目录或者大小为 0 字节" msgid "Upload Error" msgstr "上传错误" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "操作等待中" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "上传已取消" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "非法的名称,不允许使用‘/’。" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "大小" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "修改日期" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "文件夹" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "文件夹" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "文件" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "文件" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 7af51044d5f..72df7a953cc 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-08-31 07:35+0000\n" -"Last-Translator: Ming Yi Wu <mingi.wu@gmail.com>\n" +"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." @@ -31,59 +31,55 @@ msgstr "無分類添加?" msgid "This category already exists: " msgstr "此分類已經存在:" -#: js/jquery-ui-1.8.16.custom.min.js:511 -msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" -msgstr "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" - -#: js/js.js:206 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "設定" -#: js/js.js:591 +#: js/js.js:593 msgid "January" msgstr "一月" -#: js/js.js:591 +#: js/js.js:593 msgid "February" msgstr "二月" -#: js/js.js:591 +#: js/js.js:593 msgid "March" msgstr "三月" -#: js/js.js:591 +#: js/js.js:593 msgid "April" msgstr "四月" -#: js/js.js:591 +#: js/js.js:593 msgid "May" msgstr "五月" -#: js/js.js:591 +#: js/js.js:593 msgid "June" msgstr "六月" -#: js/js.js:592 +#: js/js.js:594 msgid "July" msgstr "七月" -#: js/js.js:592 +#: js/js.js:594 msgid "August" msgstr "八月" -#: js/js.js:592 +#: js/js.js:594 msgid "September" msgstr "九月" -#: js/js.js:592 +#: js/js.js:594 msgid "October" msgstr "十月" -#: js/js.js:592 +#: js/js.js:594 msgid "November" msgstr "十一月" -#: js/js.js:592 +#: js/js.js:594 msgid "December" msgstr "十二月" @@ -115,7 +111,7 @@ msgstr "錯誤" msgid "ownCloud password reset" msgstr "ownCloud 密碼重設" -#: lostpassword/templates/email.php:1 +#: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "請循以下聯結重設你的密碼: (聯結) " diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 3c6aad93fce..ac4a772abdb 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/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: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"PO-Revision-Date: 2012-09-06 00:03+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -58,31 +58,35 @@ msgstr "檔案" msgid "Delete" msgstr "刪除" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "already exists" msgstr "已經存在" -#: js/filelist.js:141 +#: js/filelist.js:186 js/filelist.js:188 msgid "replace" msgstr "取代" -#: js/filelist.js:141 +#: js/filelist.js:186 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:186 js/filelist.js:188 msgid "cancel" msgstr "取消" -#: js/filelist.js:195 +#: js/filelist.js:235 js/filelist.js:237 msgid "replaced" msgstr "" -#: js/filelist.js:195 -msgid "with" +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +msgid "undo" msgstr "" -#: js/filelist.js:195 js/filelist.js:246 -msgid "undo" +#: js/filelist.js:237 +msgid "with" msgstr "" -#: js/filelist.js:246 +#: js/filelist.js:271 msgid "deleted" msgstr "" @@ -98,44 +102,44 @@ msgstr "無法上傳您的檔案因為它可能是一個目錄或檔案大小為 msgid "Upload Error" msgstr "上傳發生錯誤" -#: js/files.js:236 js/files.js:327 js/files.js:356 +#: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" msgstr "" -#: js/files.js:341 +#: js/files.js:355 msgid "Upload cancelled." msgstr "上傳取消" -#: js/files.js:409 +#: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "檔案上傳中. 離開此頁面將會取消上傳." -#: js/files.js:480 +#: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "無效的名稱, '/'是不被允許的" -#: js/files.js:726 templates/index.php:55 +#: js/files.js:746 templates/index.php:55 msgid "Size" msgstr "大小" -#: js/files.js:727 templates/index.php:56 +#: js/files.js:747 templates/index.php:56 msgid "Modified" msgstr "修改" -#: js/files.js:754 +#: js/files.js:774 msgid "folder" msgstr "" -#: js/files.js:756 +#: js/files.js:776 msgid "folders" msgstr "" -#: js/files.js:764 +#: js/files.js:784 msgid "file" msgstr "" -#: js/files.js:766 +#: js/files.js:786 msgid "files" msgstr "" diff --git a/lib/l10n/cs_CZ.php b/lib/l10n/cs_CZ.php index 933dbe541f5..00815f97533 100644 --- a/lib/l10n/cs_CZ.php +++ b/lib/l10n/cs_CZ.php @@ -4,14 +4,14 @@ "Settings" => "Nastavení", "Users" => "Uživatelé", "Apps" => "Aplikace", -"Admin" => "Admin", +"Admin" => "Administrace", "ZIP download is turned off." => "Stahování ZIPu je vypnuto.", -"Files need to be downloaded one by one." => "Soubory je nutno stahovat samostatně.", +"Files need to be downloaded one by one." => "Soubory musí být stahovány jednotlivě.", "Back to Files" => "Zpět k souborům", -"Selected files too large to generate zip file." => "Vybarné soubory jsou pro vytvoření zipu příliš velké.", +"Selected files too large to generate zip file." => "Vybrané soubory jsou příliš velké pro vytvoření zip souboru.", "Application is not enabled" => "Aplikace není povolena", -"Authentication error" => "Chyba autorizace", -"Token expired. Please reload page." => "Realce expirovala. Obnovte prosím stranu.", +"Authentication error" => "Chyba ověření", +"Token expired. Please reload page." => "Token vypršel. Obnovte prosím stránku.", "seconds ago" => "před vteřinami", "1 minute ago" => "před 1 minutou", "%d minutes ago" => "před %d minutami", @@ -21,5 +21,8 @@ "last month" => "minulý měsíc", "months ago" => "před měsíci", "last year" => "loni", -"years ago" => "před lety" +"years ago" => "před lety", +"%s is available. Get <a href=\"%s\">more information</a>" => "%s je dostupná. Získat <a href=\"%s\">více informací</a>", +"up to date" => "aktuální", +"updates check is disabled" => "kontrola aktualizací je vypnuta" ); diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 76fb2fd7fe5..524d6c79257 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -10,6 +10,8 @@ "Unable to delete group" => "No es pot eliminar el grup", "Unable to delete user" => "No es pot eliminar l'usuari", "Language changed" => "S'ha canviat l'idioma", +"Unable to add user to group %s" => "No es pot afegir l'usuari al grup %s", +"Unable to remove user from group %s" => "No es pot eliminar l'usuari del grup %s", "Error" => "Error", "Disable" => "Desactiva", "Enable" => "Activa", @@ -36,6 +38,7 @@ "Add your App" => "Afegiu la vostra aplicació", "Select an App" => "Seleccioneu una aplicació", "See application page at apps.owncloud.com" => "Mireu la pàgina d'aplicacions a apps.owncloud.com", +"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-propietat de <span class=\"author\"></span>", "Documentation" => "Documentació", "Managing Big Files" => "Gestió de fitxers grans", "Ask a question" => "Feu una pregunta", diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index e0be2117b84..a68f10269f5 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -1,28 +1,46 @@ <?php $TRANSLATIONS = array( -"Unable to load list from App Store" => "Nepodařílo se stáhnout seznam z App Store", -"Authentication error" => "Chyba autorizace", +"Unable to load list from App Store" => "Nelze načíst seznam z App Store", +"Authentication error" => "Chyba ověření", +"Group already exists" => "Skupina již existuje", +"Unable to add group" => "Nelze přidat skupinu", "Email saved" => "E-mail uložen", "Invalid email" => "Neplatný e-mail", -"OpenID Changed" => "OpenID změněn", -"Invalid request" => "Chybný dotaz", +"OpenID Changed" => "OpenID změněno", +"Invalid request" => "Neplatný požadavek", +"Unable to delete group" => "Nelze smazat skupinu", +"Unable to delete user" => "Nelze smazat uživatele", "Language changed" => "Jazyk byl změněn", +"Unable to add user to group %s" => "Nelze přidat uživatele do skupiny %s", +"Unable to remove user from group %s" => "Nelze odstranit uživatele ze skupiny %s", "Error" => "Chyba", -"Disable" => "Vypnout", -"Enable" => "Zapnout", +"Disable" => "Zakázat", +"Enable" => "Povolit", "Saving..." => "Ukládám...", "__language_name__" => "Česky", -"Security Warning" => "Bezpečnostní upozornění", +"Security Warning" => "Bezpečnostní varování", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Váš adresář dat a soubory jsou pravděpodobně přístupné z internetu. Soubor .htacces, který ownCloud poskytuje nefunguje. Doporučujeme Vám abyste nastavili Váš webový server tak, aby nebylo možno přistupovat do adresáře s daty, nebo přesunuli adresář dat mimo kořenovou složku dokumentů webového serveru.", "Cron" => "Cron", -"execute one task with each page loaded" => "spustit jednu úlohu s každou nataženou stranou", +"execute one task with each page loaded" => "spustit jednu úlohu s každou načtenou stránkou", "cron.php is registered at a webcron service" => "cron.php je registrován jako služba webcron", -"use systems cron service" => "použijte systémovou službu cron", -"Log" => "Log", +"use systems cron service" => "použít systémovou službu cron", +"Share API" => "API sdílení", +"Enable Share API" => "Povolit API sdílení", +"Allow apps to use the Share API" => "Povolit aplikacím používat API sdílení", +"Allow links" => "Povolit odkazy", +"Allow users to share items to the public with links" => "Povolit uživatelům sdílet položky s veřejností pomocí odkazů", +"Allow resharing" => "Povolit znovu-sdílení", +"Allow users to share items shared with them again" => "Povolit uživatelům znovu sdílet položky, které jsou pro ně sdíleny", +"Allow users to share with anyone" => "Povolit uživatelům sdílet s kýmkoliv", +"Allow users to only share with users in their groups" => "Povolit uživatelům sdílet pouze s uživateli v jejich skupinách", +"Log" => "Záznam", "More" => "Více", -"Add your App" => "Přidat vaší aplikaci", +"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>." => "Vyvinuto <a href=\"http://ownCloud.org/contact\" target=\"_blank\">komunitou ownCloud</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">zdrojový kód</a> je licencován pod <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" => "Přidat Vaší aplikaci", "Select an App" => "Vyberte aplikaci", "See application page at apps.owncloud.com" => "Více na stránce s aplikacemi na apps.owncloud.com", +"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-licencováno <span class=\"author\"></span>", "Documentation" => "Dokumentace", -"Managing Big Files" => "Spravování velkých souborů", +"Managing Big Files" => "Správa velkých souborů", "Ask a question" => "Zeptat se", "Problems connecting to help database." => "Problémy s připojením k databázi s nápovědou.", "Go there manually." => "Přejít ručně.", @@ -32,24 +50,24 @@ "Desktop and Mobile Syncing Clients" => "Klienti pro synchronizaci", "Download" => "Stáhnout", "Your password got changed" => "Vaše heslo bylo změněno", -"Unable to change your password" => "Vaše heslo se nepodařilo změnit", -"Current password" => "Aktuální heslo", +"Unable to change your password" => "Vaše heslo nelze změnit", +"Current password" => "Současné heslo", "New password" => "Nové heslo", "show" => "zobrazit", "Change password" => "Změnit heslo", -"Email" => "Email", -"Your email address" => "Vaše emailová adresa", -"Fill in an email address to enable password recovery" => "Pro povolení změny hesla vyplňte email adresu", +"Email" => "E-mail", +"Your email address" => "Vaše e-mailová adresa", +"Fill in an email address to enable password recovery" => "Pro povolení změny hesla vyplňte adresu e-mailu", "Language" => "Jazyk", -"Help translate" => "Pomoci překládat", +"Help translate" => "Pomoci s překladem", "use this address to connect to your ownCloud in your file manager" => "tuto adresu použijte pro připojení k ownCloud ve Vašem správci souborů", "Name" => "Jméno", "Password" => "Heslo", "Groups" => "Skupiny", "Create" => "Vytvořit", "Default Quota" => "Výchozí kvóta", -"Other" => "Jiné", -"Group Admin" => "Administrace skupiny", +"Other" => "Jiná", +"Group Admin" => "Správa skupiny", "Quota" => "Kvóta", -"Delete" => "Vymazat" +"Delete" => "Smazat" ); diff --git a/settings/l10n/de.php b/settings/l10n/de.php index d955b75d0c3..4f3a12934e8 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -10,6 +10,8 @@ "Unable to delete group" => "Gruppe konnte nicht gelöscht werden", "Unable to delete user" => "Benutzer konnte nicht gelöscht werden", "Language changed" => "Sprache geändert", +"Unable to add user to group %s" => "Der Benutzer konnte nicht zur Gruppe %s hinzugefügt werden", +"Unable to remove user from group %s" => "Der Benutzer konnte nicht aus der Gruppe %s entfernt werden", "Error" => "Fehler", "Disable" => "Deaktivieren", "Enable" => "Aktivieren", @@ -36,6 +38,7 @@ "Add your App" => "Fügen Sie Ihre App hinzu", "Select an App" => "Wählen Sie eine Anwendung aus", "See application page at apps.owncloud.com" => "Weitere Anwendungen finden Sie auf apps.owncloud.com", +"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-lizenziert von <span class=\"author\"></span>", "Documentation" => "Dokumentation", "Managing Big Files" => "Große Dateien verwalten", "Ask a question" => "Stellen Sie eine Frage", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index 3ab7cb32ba8..2f2a06ce058 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -10,6 +10,8 @@ "Unable to delete group" => "No se pudo eliminar el grupo", "Unable to delete user" => "No se pudo eliminar el usuario", "Language changed" => "Idioma cambiado", +"Unable to add user to group %s" => "Imposible añadir el usuario al grupo %s", +"Unable to remove user from group %s" => "Imposible eliminar al usuario del grupo %s", "Error" => "Error", "Disable" => "Desactivar", "Enable" => "Activar", @@ -36,6 +38,7 @@ "Add your App" => "Añade tu aplicación", "Select an App" => "Seleccionar una aplicación", "See application page at apps.owncloud.com" => "Echa un vistazo a la web de aplicaciones apps.owncloud.com", +"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-licenciado por <span class=\"author\"></span>", "Documentation" => "Documentación", "Managing Big Files" => "Administra archivos grandes", "Ask a question" => "Hacer una pregunta", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index 37a80aaeea1..54647c29616 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -10,6 +10,8 @@ "Unable to delete group" => "Ryhmän poisto epäonnistui", "Unable to delete user" => "Käyttäjän poisto epäonnistui", "Language changed" => "Kieli on vaihdettu", +"Unable to add user to group %s" => "Käyttäjän tai ryhmän %s lisääminen ei onnistu", +"Unable to remove user from group %s" => "Käyttäjän poistaminen ryhmästä %s ei onnistu", "Error" => "Virhe", "Disable" => "Poista käytöstä", "Enable" => "Käytä", @@ -36,6 +38,7 @@ "Add your App" => "Lisää ohjelmasi", "Select an App" => "Valitse ohjelma", "See application page at apps.owncloud.com" => "Katso sovellussivu osoitteessa apps.owncloud.com", +"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-lisensoija <span class=\"author\"></span>", "Documentation" => "Dokumentaatio", "Managing Big Files" => "Suurten tiedostojen hallinta", "Ask a question" => "Kysy jotain", diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index 890d1e39f10..7baa923bfcb 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -10,6 +10,8 @@ "Unable to delete group" => "Impossible de supprimer le groupe", "Unable to delete user" => "Impossible de supprimer l'utilisateur", "Language changed" => "Langue changée", +"Unable to add user to group %s" => "Impossible d'ajouter l'utilisateur au groupe %s", +"Unable to remove user from group %s" => "Impossible de supprimer l'utilisateur du groupe %s", "Error" => "Erreur", "Disable" => "Désactiver", "Enable" => "Activer", @@ -36,6 +38,7 @@ "Add your App" => "Ajoutez votre application", "Select an App" => "Sélectionner une Application", "See application page at apps.owncloud.com" => "Voir la page des applications à l'url apps.owncloud.com", +"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-sous licence, par <span class=\"author\"></span>", "Documentation" => "Documentation", "Managing Big Files" => "Gérer les gros fichiers", "Ask a question" => "Poser une question", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index 8c8ec63f4c4..695ed31eeef 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -10,6 +10,8 @@ "Unable to delete group" => "Impossibile eliminare il gruppo", "Unable to delete user" => "Impossibile eliminare l'utente", "Language changed" => "Lingua modificata", +"Unable to add user to group %s" => "Impossibile aggiungere l'utente al gruppo %s", +"Unable to remove user from group %s" => "Impossibile rimuovere l'utente dal gruppo %s", "Error" => "Errore", "Disable" => "Disabilita", "Enable" => "Abilita", @@ -36,6 +38,7 @@ "Add your App" => "Aggiungi la tua applicazione", "Select an App" => "Seleziona un'applicazione", "See application page at apps.owncloud.com" => "Vedere la pagina dell'applicazione su apps.owncloud.com", +"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-licenziato da <span class=\"author\"></span>", "Documentation" => "Documentazione", "Managing Big Files" => "Gestione file grandi", "Ask a question" => "Fai una domanda", diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index dcf0568cbaa..fe1eed19806 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -1,11 +1,17 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "アプリストアからリストをロードできません", "Authentication error" => "認証エラー", +"Group already exists" => "グループは既に存在しています", +"Unable to add group" => "グループを追加できません", "Email saved" => "メールアドレスを保存しました", "Invalid email" => "無効なメールアドレス", "OpenID Changed" => "OpenIDが変更されました", "Invalid request" => "無効なリクエストです", +"Unable to delete group" => "グループを削除できません", +"Unable to delete user" => "ユーザを削除できません", "Language changed" => "言語が変更されました", +"Unable to add user to group %s" => "ユーザをグループ %s に追加できません", +"Unable to remove user from group %s" => "ユーザをグループ %s から削除できません", "Error" => "エラー", "Disable" => "無効", "Enable" => "有効", @@ -32,6 +38,7 @@ "Add your App" => "アプリを追加", "Select an App" => "アプリを選択してください", "See application page at apps.owncloud.com" => "apps.owncloud.com でアプリケーションのページを見てください", +"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-ライセンス: <span class=\"author\"></span>", "Documentation" => "ドキュメント", "Managing Big Files" => "大きなファイルを扱うには", "Ask a question" => "質問してください", diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index ffa00dabaa1..5957f6282f1 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -1,11 +1,17 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Kan de lijst niet van de App store laden", "Authentication error" => "Authenticatie fout", +"Group already exists" => "Groep bestaat al", +"Unable to add group" => "Niet in staat om groep toe te voegen", "Email saved" => "E-mail bewaard", "Invalid email" => "Ongeldige e-mail", "OpenID Changed" => "OpenID is aangepast", "Invalid request" => "Ongeldig verzoek", +"Unable to delete group" => "Niet in staat om groep te verwijderen", +"Unable to delete user" => "Niet in staat om gebruiker te verwijderen", "Language changed" => "Taal aangepast", +"Unable to add user to group %s" => "Niet in staat om gebruiker toe te voegen aan groep %s", +"Unable to remove user from group %s" => "Niet in staat om gebruiker te verwijderen uit groep %s", "Error" => "Fout", "Disable" => "Uitschakelen", "Enable" => "Inschakelen", @@ -27,9 +33,11 @@ "Allow users to only share with users in their groups" => "Sta gebruikers toe om alleen met gebruikers in hun groepen te delen", "Log" => "Log", "More" => "Meer", +"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>." => "Ontwikkeld door de <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud gemeenschap</a>, de <a href=\"https://github.com/owncloud\" target=\"_blank\">bron code</a> is gelicenseerd onder de <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" => "Voeg je App toe", "Select an App" => "Selecteer een app", "See application page at apps.owncloud.com" => "Zie de applicatiepagina op apps.owncloud.com", +"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-Gelicenseerd door <span class=\"author\"></span>", "Documentation" => "Documentatie", "Managing Big Files" => "Onderhoud van grote bestanden", "Ask a question" => "Stel een vraag", diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index ee50d0fffa7..851099ef6b7 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -10,12 +10,15 @@ "Unable to delete group" => "Nie można usunąć grupy", "Unable to delete user" => "Nie można usunąć użytkownika", "Language changed" => "Język zmieniony", +"Unable to add user to group %s" => "Nie można dodać użytkownika do grupy %s", +"Unable to remove user from group %s" => "Nie można usunąć użytkownika z grupy %s", "Error" => "Błąd", "Disable" => "Wyłączone", "Enable" => "Włączone", "Saving..." => "Zapisywanie...", "__language_name__" => "Polski", "Security Warning" => "Ostrzeżenia bezpieczeństwa", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Twój katalog danych i pliki są prawdopodobnie dostępne z Internetu. Plik .htaccess, który dostarcza ownCloud nie działa. Sugerujemy, aby skonfigurować serwer WWW w taki sposób, aby katalog danych nie był dostępny lub przenieść katalog danych poza główny katalog serwera WWW.", "Cron" => "Cron", "execute one task with each page loaded" => "wykonanie jednego zadania z każdej załadowanej strony", "cron.php is registered at a webcron service" => "cron.php jest zarejestrowany w usłudze webcron", @@ -24,12 +27,18 @@ "Enable Share API" => "Włącz udostępniane API", "Allow apps to use the Share API" => "Zezwalaj aplikacjom na używanie API", "Allow links" => "Zezwalaj na łącza", +"Allow users to share items to the public with links" => "Zezwalaj użytkownikom na puliczne współdzielenie elementów za pomocą linków", "Allow resharing" => "Zezwól na ponowne udostępnianie", +"Allow users to share items shared with them again" => "Zezwalaj użytkownikom na ponowne współdzielenie elementów już z nimi współdzilonych", +"Allow users to share with anyone" => "Zezwalaj użytkownikom na współdzielenie z kimkolwiek", +"Allow users to only share with users in their groups" => "Zezwalaj użytkownikom współdzielić z użytkownikami ze swoich grup", "Log" => "Log", "More" => "Więcej", +"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>." => "Stwirzone przez <a href=\"http://ownCloud.org/contact\" target=\"_blank\"> społeczność ownCloud</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">kod źródłowy</a> na licencji <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" => "Dodaj aplikacje", "Select an App" => "Zaznacz aplikacje", "See application page at apps.owncloud.com" => "Zobacz stronę aplikacji na apps.owncloud.com", +"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-licencjonowane przez <span class=\"author\"></span>", "Documentation" => "Dokumentacja", "Managing Big Files" => "Zarządzanie dużymi plikami", "Ask a question" => "Zadaj pytanie", diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index fc49d940b47..7b5c6bee3cb 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -10,6 +10,8 @@ "Unable to delete group" => "Ni mogoče izbrisati skupine", "Unable to delete user" => "Ni mogoče izbrisati uporabnika", "Language changed" => "Jezik je bil spremenjen", +"Unable to add user to group %s" => "Uporabnika ni mogoče dodati k skupini %s", +"Unable to remove user from group %s" => "Uporabnika ni mogoče odstraniti iz skupine %s", "Error" => "Napaka", "Disable" => "Onemogoči", "Enable" => "Omogoči", @@ -36,6 +38,7 @@ "Add your App" => "Dodajte vašo aplikacijo", "Select an App" => "Izberite aplikacijo", "See application page at apps.owncloud.com" => "Obiščite spletno stran aplikacije na apps.owncloud.com", +"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-licencirana s strani <span class=\"author\"></span>", "Documentation" => "Dokumentacija", "Managing Big Files" => "Upravljanje velikih datotek", "Ask a question" => "Postavi vprašanje", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index 9beb500194d..1a18e9670de 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -1,11 +1,17 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Kan inte ladda listan från App Store", "Authentication error" => "Autentiseringsfel", +"Group already exists" => "Gruppen finns redan", +"Unable to add group" => "Kan inte lägga till grupp", "Email saved" => "E-post sparad", "Invalid email" => "Ogiltig e-post", "OpenID Changed" => "OpenID ändrat", "Invalid request" => "Ogiltig begäran", +"Unable to delete group" => "Kan inte radera grupp", +"Unable to delete user" => "Kan inte radera användare", "Language changed" => "Språk ändrades", +"Unable to add user to group %s" => "Kan inte lägga till användare i gruppen %s", +"Unable to remove user from group %s" => "Kan inte radera användare från gruppen %s", "Error" => "Fel", "Disable" => "Deaktivera", "Enable" => "Aktivera", @@ -32,6 +38,7 @@ "Add your App" => "Lägg till din applikation", "Select an App" => "Välj en App", "See application page at apps.owncloud.com" => "Se programsida på apps.owncloud.com", +"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-licensierad av <span class=\"author\"></span>", "Documentation" => "Dokumentation", "Managing Big Files" => "Hantering av stora filer", "Ask a question" => "Ställ en fråga", diff --git a/settings/l10n/th_TH.php b/settings/l10n/th_TH.php index 7166c26a1ce..d775af76713 100644 --- a/settings/l10n/th_TH.php +++ b/settings/l10n/th_TH.php @@ -1,11 +1,17 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "ไม่สามารถโหลดรายการจาก App Store ได้", "Authentication error" => "เกิดข้อผิดพลาดเกี่ยวกับสิทธิ์การเข้าใช้งาน", +"Group already exists" => "มีกลุ่มดังกล่าวอยู่ในระบบอยู่แล้ว", +"Unable to add group" => "ไม่สามารถเพิ่มกลุ่มได้", "Email saved" => "อีเมลถูกบันทึกแล้ว", "Invalid email" => "อีเมลไม่ถูกต้อง", "OpenID Changed" => "เปลี่ยนชื่อบัญชี OpenID แล้ว", "Invalid request" => "คำร้องขอไม่ถูกต้อง", +"Unable to delete group" => "ไม่สามารถลบกลุ่มได้", +"Unable to delete user" => "ไม่สามารถลบผู้ใช้งานได้", "Language changed" => "เปลี่ยนภาษาเรียบร้อยแล้ว", +"Unable to add user to group %s" => "ไม่สามารถเพิ่มผู้ใช้งานเข้าไปที่กลุ่ม %s ได้", +"Unable to remove user from group %s" => "ไม่สามารถลบผู้ใช้งานออกจากกลุ่ม %s ได้", "Error" => "ข้อผิดพลาด", "Disable" => "ปิดใช้งาน", "Enable" => "เปิดใช้งาน", @@ -32,6 +38,7 @@ "Add your App" => "เพิ่มแอปของคุณ", "Select an App" => "เลือก App", "See application page at apps.owncloud.com" => "ดูหน้าแอพพลิเคชั่นที่ apps.owncloud.com", +"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-ลิขสิทธิ์การใช้งานโดย <span class=\"author\"></span>", "Documentation" => "เอกสารคู่มือการใช้งาน", "Managing Big Files" => "การจัดการไฟล์ขนาดใหญ่", "Ask a question" => "สอบถามข้อมูล", -- cgit v1.2.3 From 90462b2dcffd2ced85fb5c00557edef5ebcb3d4b Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt <hey@jancborchardt.net> Date: Tue, 4 Sep 2012 19:24:40 -0700 Subject: make icons look good on bright and dark backgrounds --- core/img/icon-error.png | Bin 1344 -> 1571 bytes core/img/icon-error.svg | 24 ++++++++++++------------ core/img/icon-sync.png | Bin 1271 -> 1544 bytes core/img/icon-sync.svg | 20 ++++++++++---------- core/img/icon.png | Bin 1109 -> 1305 bytes core/img/icon.svg | 22 +++++++++++----------- 6 files changed, 33 insertions(+), 33 deletions(-) (limited to 'core') diff --git a/core/img/icon-error.png b/core/img/icon-error.png index 1ce0be0fb2e..edeaceb1698 100644 Binary files a/core/img/icon-error.png and b/core/img/icon-error.png differ diff --git a/core/img/icon-error.svg b/core/img/icon-error.svg index 6392d819ad8..bba639bfd7e 100644 --- a/core/img/icon-error.svg +++ b/core/img/icon-error.svg @@ -19,9 +19,9 @@ viewBox="0 0 32 31.999997" enable-background="new 0 0 595.275 311.111" xml:space="preserve" - inkscape:version="0.48.2 r9819" - sodipodi:docname="icon-error.svg" - inkscape:export-filename="/home/user/owncloud/core/img/icon-error.png" + inkscape:version="0.48.3.1 r9886" + sodipodi:docname="icon-error-light.svg" + inkscape:export-filename="/home/user/owncloud/core/img/icon-error-light.png" inkscape:export-xdpi="89.826416" inkscape:export-ydpi="89.826416"><metadata id="metadata327"><rdf:RDF><cc:Work @@ -245,11 +245,11 @@ id="SVGID_9_"> <stop id="stop317" - style="stop-color:#BED5E1" + style="stop-color:#b23636;stop-opacity:1;" offset="0" /> <stop id="stop319" - style="stop-color:#567B8F" + style="stop-color:#b20000;stop-opacity:1;" offset="1" /> </linearGradient> @@ -289,7 +289,7 @@ x2="-2.4040222" y2="18.967093" /><linearGradient inkscape:collect="always" - xlink:href="#linearGradient3587-6-5-26" + xlink:href="#SVGID_9_" id="linearGradient3956" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.25,0,0,0.25,0,0.500024)" @@ -306,14 +306,14 @@ inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1280" - inkscape:window-height="774" + inkscape:window-height="800" id="namedview323" showgrid="true" - inkscape:zoom="2.8284271" - inkscape:cx="-37.832842" - inkscape:cy="0.28559212" + inkscape:zoom="5.6568542" + inkscape:cx="20.718961" + inkscape:cy="-0.99657908" inkscape:window-x="0" - inkscape:window-y="26" + inkscape:window-y="-31" inkscape:window-maximized="1" inkscape:current-layer="Layer_1" units="px" @@ -796,7 +796,7 @@ d="M 14.5 7.6875 C 12.118202 7.6875 10.1875 9.6181999 10.1875 12 C 10.1875 12.98178 10.511318 13.90142 11.0625 14.625 C 12.258208 13.24105 14.029595 12.34375 16 12.34375 C 16.964013 12.34375 17.863805 12.56114 18.6875 12.9375 C 18.75419 12.6359 18.78125 12.32193 18.78125 12 C 18.78125 9.6181999 16.8818 7.6875 14.5 7.6875 z M 8.875 9.6875 C 7.634625 9.6875 6.625 10.69712 6.625 11.9375 C 6.625 12.3391 6.72279 12.70624 6.90625 13.03125 C 7.65474 12.60902 8.5183475 12.375 9.4375 12.375 C 9.526205 12.375 9.63115 12.371 9.71875 12.375 C 9.70882 12.2497 9.6875 12.12826 9.6875 12 C 9.6875 11.30913 9.83008 10.65627 10.09375 10.0625 C 9.7387425 9.8244499 9.3358175 9.6875 8.875 9.6875 z M 19.21875 11.25 C 19.25778 11.49606 19.28125 11.74306 19.28125 12 C 19.28125 12.39985 19.248935 12.78521 19.15625 13.15625 C 20.2429 13.75761 21.12418 14.65908 21.71875 15.75 C 22.335455 15.42894 23.01983 15.23643 23.75 15.1875 C 23.56182 12.98063 21.755825 11.25 19.5 11.25 C 19.40836 11.25 19.30897 11.2444 19.21875 11.25 z M 16 12.84375 C 12.66715 12.84375 9.96875 15.54192 9.96875 18.875 C 9.96875 22.20772 12.667013 24.90625 16 24.90625 C 19.33299 24.90625 22.03125 22.20771 22.03125 18.875 C 22.03125 15.54193 19.332853 12.84375 16 12.84375 z M 9.4375 12.875 C 6.85184 12.875 4.78125 14.94559 4.78125 17.53125 C 4.78125 19.05338 5.501155 20.42736 6.625 21.28125 C 7.09879 20.36744 8.0570875 19.71875 9.15625 19.71875 C 9.289095 19.71875 9.403215 19.7323 9.53125 19.75 C 9.491058 19.45758 9.46875 19.1784 9.46875 18.875 C 9.46875 17.4244 9.947247 16.08344 10.75 15 C 10.26948 14.39871 9.9278275 13.66206 9.78125 12.875 C 9.6726175 12.867 9.5480625 12.875 9.4375 12.875 z M 12.8125 15 L 16 17.40625 L 19.1875 15 L 20 15.8125 L 17.59375 19 L 20 22.1875 L 19.1875 23 L 16 20.59375 L 12.8125 23 L 12 22.1875 L 14.40625 19 L 12 15.8125 L 12.8125 15 z M 24.09375 15.65625 C 23.308625 15.65625 22.586838 15.84758 21.9375 16.1875 C 22.306215 17.00423 22.5 17.92139 22.5 18.875 C 22.5 20.66055 21.78996 22.2909 20.625 23.46875 C 21.48082 24.41888 22.712632 25 24.09375 25 C 26.67941 25 28.78125 22.89816 28.78125 20.3125 C 28.78125 17.726839 26.67941 15.65625 24.09375 15.65625 z M 4.3125 16.28125 C 1.9306325 16.28125 0 18.18063 0 20.5625 C 0 22.94437 1.9306325 24.875 4.3125 24.875 C 5.2190732 24.875 6.056265 24.602439 6.75 24.125 C 6.463335 23.67955 6.3125 23.129619 6.3125 22.5625 C 6.3125 22.268139 6.3542845 21.98594 6.4375 21.71875 C 5.13876 20.78017 4.28125 19.25317 4.28125 17.53125 C 4.28125 17.09375 4.3347293 16.6872 4.4375 16.28125 C 4.394842 16.28025 4.3554647 16.28125 4.3125 16.28125 z M 29.625 19.96875 C 29.497935 19.96875 29.371487 19.9807 29.25 20 C 29.2567 20.1074 29.28125 20.20342 29.28125 20.3125 C 29.28125 21.68587 28.720337 22.9487 27.84375 23.875 C 28.275 24.37649 28.908165 24.6875 29.625 24.6875 C 30.93072 24.6875 32 23.64947 32 22.34375 C 32 21.03803 30.93072 19.96875 29.625 19.96875 z M 9.15625 20.21875 C 7.8505975 20.21875 6.78125 21.25684 6.78125 22.5625 C 6.78125 23.86815 7.8505975 24.9375 9.15625 24.9375 C 10.15705 24.9375 10.99878 24.31592 11.34375 23.4375 C 10.50201 22.5802 9.8922975 21.49648 9.625 20.28125 C 9.4685825 20.24891 9.322335 20.21875 9.15625 20.21875 z " transform="translate(0,-1.5e-6)" id="path7625" /><path - style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.8;color:#000000;fill:url(#linearGradient3956);fill-opacity:1;stroke:none;stroke-width:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" + style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.80000000000000004;color:#000000;fill:url(#linearGradient3956);fill-opacity:1.0;stroke:none;stroke-width:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" d="m 14.5,6.687498 c -2.381798,0 -4.3125,1.9307 -4.3125,4.312501 0,0.98178 0.323818,1.90142 0.875,2.625 1.195708,-1.38395 2.967095,-2.28125 4.9375,-2.28125 0.964013,0 1.863805,0.21739 2.6875,0.59375 0.06669,-0.3016 0.09375,-0.61557 0.09375,-0.9375 0,-2.381801 -1.89945,-4.312501 -4.28125,-4.312501 z m -5.625,2 c -1.240375,0 -2.25,1.00963 -2.25,2.250001 0,0.4016 0.09779,0.76874 0.28125,1.09375 0.74849,-0.422231 1.6120975,-0.65625 2.53125,-0.65625 0.088705,0 0.19365,-0.004 0.28125,0 -0.00993,-0.1253 -0.03125,-0.246741 -0.03125,-0.375 0,-0.69086 0.14258,-1.343731 0.40625,-1.937501 -0.3550075,-0.238049 -0.7579325,-0.375 -1.21875,-0.375 z m 10.34375,1.562501 c 0.03903,0.24606 0.0625,0.49307 0.0625,0.75 0,0.39985 -0.03232,0.78521 -0.125,1.15625 1.08665,0.60137 1.96793,1.50283 2.5625,2.59375 0.616705,-0.32106 1.30108,-0.51356 2.03125,-0.5625 -0.18818,-2.20687 -1.994175,-3.9375 -4.25,-3.9375 -0.09164,0 -0.19103,-0.0056 -0.28125,0 z M 16,11.843749 c -3.33285,0 -6.03125,2.69817 -6.03125,6.031249 0,3.33272 2.698263,6.03125 6.03125,6.03125 3.33299,0 6.03125,-2.69854 6.03125,-6.03125 0,-3.333069 -2.698397,-6.031249 -6.03125,-6.031249 z m -6.5625,0.03125 c -2.58566,0 -4.65625,2.07058 -4.65625,4.656249 0,1.52212 0.719905,2.89611 1.84375,3.75 0.47379,-0.913811 1.4320875,-1.5625 2.53125,-1.5625 0.132845,0 0.246965,0.01355 0.375,0.03125 -0.040192,-0.29242 -0.0625,-0.5716 -0.0625,-0.875 0,-1.450599 0.478497,-2.791559 1.28125,-3.874999 -0.48052,-0.60129 -0.8221725,-1.33794 -0.96875,-2.125 -0.1086325,-0.008 -0.2331875,0 -0.34375,0 z m 3.375,2.125 L 16,16.406248 19.1875,13.999999 20,14.812499 17.59375,17.999998 20,21.187498 19.1875,21.999998 16,19.593748 12.8125,21.999998 12,21.187498 14.40625,17.999998 12,14.812499 l 0.8125,-0.8125 z m 11.28125,0.65625 c -0.785125,0 -1.506912,0.19133 -2.15625,0.53125 0.368715,0.816729 0.5625,1.733889 0.5625,2.687499 0,1.78555 -0.71004,3.4159 -1.875,4.59375 0.85582,0.950131 2.087632,1.53125 3.46875,1.53125 2.58566,0 4.6875,-2.10184 4.6875,-4.6875 0,-2.58566 -2.10184,-4.656249 -4.6875,-4.656249 z m -19.78125,0.625 C 1.9306325,15.281249 0,17.180628 0,19.562498 c 0,2.38187 1.9306325,4.3125 4.3125,4.3125 0.9065732,0 1.743765,-0.272561 2.4375,-0.75 -0.286665,-0.44545 -0.4375,-0.99538 -0.4375,-1.5625 0,-0.29436 0.041785,-0.57656 0.125,-0.84375 -1.29874,-0.938579 -2.15625,-2.465589 -2.15625,-4.1875 0,-0.43751 0.053479,-0.844049 0.15625,-1.249999 -0.042658,-0.001 -0.082035,0 -0.125,0 z m 25.3125,3.687499 c -0.127065,0 -0.253513,0.01195 -0.375,0.03125 0.0067,0.1074 0.03125,0.203421 0.03125,0.3125 0,1.373371 -0.560913,2.6362 -1.4375,3.5625 0.43125,0.50149 1.064415,0.8125 1.78125,0.8125 1.30572,0 2.375,-1.03803 2.375,-2.34375 0,-1.30572 -1.06928,-2.375 -2.375,-2.375 z m -20.46875,0.25 c -1.3056525,0 -2.375,1.03809 -2.375,2.34375 0,1.30565 1.0693475,2.375 2.375,2.375 1.0008,0 1.84253,-0.621579 2.1875,-1.5 -0.84174,-0.857299 -1.4514525,-1.941019 -1.71875,-3.15625 -0.1564175,-0.03234 -0.302665,-0.0625 -0.46875,-0.0625 z" id="circle238" inkscape:connector-curvature="0" /> diff --git a/core/img/icon-sync.png b/core/img/icon-sync.png index a3d09704246..c38ca87a237 100644 Binary files a/core/img/icon-sync.png and b/core/img/icon-sync.png differ diff --git a/core/img/icon-sync.svg b/core/img/icon-sync.svg index f9ebec4a5b5..0806572f2c7 100644 --- a/core/img/icon-sync.svg +++ b/core/img/icon-sync.svg @@ -19,9 +19,9 @@ viewBox="0 0 32 31.999997" enable-background="new 0 0 595.275 311.111" xml:space="preserve" - inkscape:version="0.48.2 r9819" - sodipodi:docname="icon-sync.svg" - inkscape:export-filename="/home/user/owncloud/core/img/icon.png" + inkscape:version="0.48.3.1 r9886" + sodipodi:docname="icon-sync-light.svg" + inkscape:export-filename="/home/user/owncloud/core/img/icon-sync-light.png" inkscape:export-xdpi="89.826416" inkscape:export-ydpi="89.826416"><metadata id="metadata327"><rdf:RDF><cc:Work @@ -289,7 +289,7 @@ x2="-2.4040222" y2="18.967093" /><linearGradient inkscape:collect="always" - xlink:href="#linearGradient3587-6-5-26" + xlink:href="#SVGID_9_" id="linearGradient3342" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.25,0,0,0.25,0,0.500024)" @@ -306,14 +306,14 @@ inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1280" - inkscape:window-height="774" + inkscape:window-height="800" id="namedview323" showgrid="true" - inkscape:zoom="8" - inkscape:cx="9.2669664" - inkscape:cy="16.482737" + inkscape:zoom="5.6568543" + inkscape:cx="30.833096" + inkscape:cy="24.980259" inkscape:window-x="0" - inkscape:window-y="26" + inkscape:window-y="-31" inkscape:window-maximized="1" inkscape:current-layer="Layer_1" units="px" @@ -796,7 +796,7 @@ d="M 14.5 7.6875 C 12.118202 7.6875 10.1875 9.6181999 10.1875 12 C 10.1875 12.98178 10.511318 13.90142 11.0625 14.625 C 12.258208 13.24105 14.029595 12.34375 16 12.34375 C 16.964013 12.34375 17.863805 12.56114 18.6875 12.9375 C 18.75419 12.6359 18.78125 12.32193 18.78125 12 C 18.78125 9.6181999 16.8818 7.6875 14.5 7.6875 z M 8.875 9.6875 C 7.634625 9.6875 6.625 10.69712 6.625 11.9375 C 6.625 12.3391 6.72279 12.70624 6.90625 13.03125 C 7.65474 12.60902 8.5183475 12.375 9.4375 12.375 C 9.526205 12.375 9.63115 12.371 9.71875 12.375 C 9.70882 12.2497 9.6875 12.12826 9.6875 12 C 9.6875 11.30913 9.83008 10.65627 10.09375 10.0625 C 9.7387425 9.8244499 9.3358175 9.6875 8.875 9.6875 z M 19.21875 11.25 C 19.25778 11.49606 19.28125 11.74306 19.28125 12 C 19.28125 12.39985 19.248935 12.78521 19.15625 13.15625 C 20.2429 13.75761 21.12418 14.65908 21.71875 15.75 C 22.335455 15.42894 23.01983 15.23643 23.75 15.1875 C 23.56182 12.98063 21.755825 11.25 19.5 11.25 C 19.40836 11.25 19.30897 11.2444 19.21875 11.25 z M 16 12.84375 C 12.66715 12.84375 9.96875 15.54192 9.96875 18.875 C 9.96875 22.20772 12.667013 24.90625 16 24.90625 C 19.33299 24.90625 22.03125 22.20771 22.03125 18.875 C 22.03125 15.54193 19.332853 12.84375 16 12.84375 z M 9.4375 12.875 C 6.85184 12.875 4.78125 14.94559 4.78125 17.53125 C 4.78125 19.05338 5.501155 20.42736 6.625 21.28125 C 7.09879 20.36744 8.0570875 19.71875 9.15625 19.71875 C 9.289095 19.71875 9.403215 19.7323 9.53125 19.75 C 9.491058 19.45758 9.46875 19.1784 9.46875 18.875 C 9.46875 17.4244 9.947247 16.08344 10.75 15 C 10.26948 14.39871 9.9278275 13.66206 9.78125 12.875 C 9.6726175 12.867 9.5480625 12.875 9.4375 12.875 z M 16 15 C 16.786501 15 17.505108 15.232582 18.125 15.625 L 18.375 15.3125 L 18.78125 16.28125 L 19.15625 17.25 L 18.125 17.09375 L 17.125 16.9375 L 17.34375 16.65625 C 16.954783 16.434451 16.48047 16.34375 16 16.34375 C 14.525735 16.34375 13.34375 17.525635 13.34375 19 C 13.34375 19.1555 13.34954 19.289339 13.375 19.4375 L 12.0625 19.65625 C 12.02588 19.438476 12 19.228287 12 19 C 12 16.788454 13.788603 15 16 15 z M 24.09375 15.65625 C 23.308625 15.65625 22.586838 15.84758 21.9375 16.1875 C 22.306215 17.00423 22.5 17.92139 22.5 18.875 C 22.5 20.66055 21.78996 22.2909 20.625 23.46875 C 21.48082 24.41888 22.712632 25 24.09375 25 C 26.67941 25 28.78125 22.89816 28.78125 20.3125 C 28.78125 17.726839 26.67941 15.65625 24.09375 15.65625 z M 4.3125 16.28125 C 1.9306325 16.28125 0 18.18063 0 20.5625 C 0 22.94437 1.9306325 24.875 4.3125 24.875 C 5.2190732 24.875 6.056265 24.602439 6.75 24.125 C 6.463335 23.67955 6.3125 23.129619 6.3125 22.5625 C 6.3125 22.268139 6.3542845 21.98594 6.4375 21.71875 C 5.13876 20.78017 4.28125 19.25317 4.28125 17.53125 C 4.28125 17.09375 4.3347293 16.6872 4.4375 16.28125 C 4.394842 16.28025 4.3554647 16.28125 4.3125 16.28125 z M 19.9375 18.34375 C 19.97413 18.561539 20 18.771691 20 19 C 20 21.211306 18.21149 23 16 23 C 15.213467 23 14.494885 22.767434 13.875 22.375 L 13.625 22.6875 L 13.21875 21.71875 L 12.84375 20.75 L 13.875 20.90625 L 14.875 21.0625 L 14.65625 21.34375 C 15.045211 21.565557 15.51951 21.65625 16 21.65625 C 17.474326 21.65625 18.65625 20.474204 18.65625 19 C 18.65625 18.844486 18.65047 18.710671 18.625 18.5625 L 19.9375 18.34375 z M 29.625 19.96875 C 29.497935 19.96875 29.371487 19.9807 29.25 20 C 29.2567 20.1074 29.28125 20.20342 29.28125 20.3125 C 29.28125 21.68587 28.720337 22.9487 27.84375 23.875 C 28.275 24.37649 28.908165 24.6875 29.625 24.6875 C 30.93072 24.6875 32 23.64947 32 22.34375 C 32 21.03803 30.93072 19.96875 29.625 19.96875 z M 9.15625 20.21875 C 7.8505975 20.21875 6.78125 21.25684 6.78125 22.5625 C 6.78125 23.86815 7.8505975 24.9375 9.15625 24.9375 C 10.15705 24.9375 10.99878 24.31592 11.34375 23.4375 C 10.50201 22.5802 9.8922975 21.49648 9.625 20.28125 C 9.4685825 20.24891 9.322335 20.21875 9.15625 20.21875 z " transform="translate(0,-1.5e-6)" id="path7625" /><path - style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.8;color:#000000;fill:url(#linearGradient3342);fill-opacity:1;stroke:none;stroke-width:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" + style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.80000000000000004;color:#000000;fill:url(#linearGradient3342);fill-opacity:1.0;stroke:none;stroke-width:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" d="m 14.5,6.687498 c -2.381798,0 -4.3125,1.9307 -4.3125,4.312501 0,0.98178 0.323818,1.90142 0.875,2.625 1.195708,-1.38395 2.967095,-2.28125 4.9375,-2.28125 0.964013,0 1.863805,0.21739 2.6875,0.59375 0.06669,-0.3016 0.09375,-0.61557 0.09375,-0.9375 0,-2.381801 -1.89945,-4.312501 -4.28125,-4.312501 z M 8.875,8.687499 c -1.240375,0 -2.25,1.009629 -2.25,2.25 0,0.4016 0.09779,0.76874 0.28125,1.09375 0.74849,-0.422231 1.6120975,-0.65625 2.53125,-0.65625 0.088705,0 0.19365,-0.004 0.28125,0 -0.00993,-0.1253 -0.03125,-0.246741 -0.03125,-0.375 0,-0.69086 0.14258,-1.343731 0.40625,-1.9375 -0.3550075,-0.23805 -0.7579325,-0.375 -1.21875,-0.375 z m 10.34375,1.5625 c 0.03903,0.24606 0.0625,0.49307 0.0625,0.75 0,0.39985 -0.03232,0.78521 -0.125,1.15625 1.08665,0.60137 1.96793,1.50283 2.5625,2.593749 0.616705,-0.32106 1.30108,-0.51356 2.03125,-0.5625 -0.18818,-2.206869 -1.994175,-3.937499 -4.25,-3.937499 -0.09164,0 -0.19103,-0.0056 -0.28125,0 z M 16,11.843749 c -3.33285,0 -6.03125,2.69817 -6.03125,6.031249 0,3.33272 2.698263,6.03125 6.03125,6.03125 3.33299,0 6.03125,-2.69854 6.03125,-6.03125 0,-3.33307 -2.698397,-6.031249 -6.03125,-6.031249 z m -6.5625,0.03125 c -2.58566,0 -4.65625,2.07058 -4.65625,4.656249 0,1.52212 0.719905,2.89611 1.84375,3.75 0.47379,-0.913811 1.4320875,-1.5625 2.53125,-1.5625 0.132845,0 0.246965,0.01355 0.375,0.03125 -0.040192,-0.29242 -0.0625,-0.5716 -0.0625,-0.875 0,-1.4506 0.478497,-2.79156 1.28125,-3.874999 -0.48052,-0.60129 -0.8221725,-1.33794 -0.96875,-2.125 -0.1086325,-0.008 -0.2331875,0 -0.34375,0 z m 6.5625,2.125 c 0.786501,0 1.505108,0.232583 2.125,0.624999 l 0.25,-0.3125 0.40625,0.96875 0.375,0.96875 -1.03125,-0.15625 -1,-0.15625 0.21875,-0.28125 c -0.388967,-0.221799 -0.86328,-0.3125 -1.34375,-0.3125 -1.474265,0 -2.65625,1.181886 -2.65625,2.65625 0,0.1555 0.0058,0.28934 0.03125,0.4375 l -1.3125,0.21875 C 12.02588,18.438475 12,18.228286 12,17.999998 c 0,-2.211546 1.788603,-3.999999 4,-3.999999 z m 8.09375,0.656249 c -0.785125,0 -1.506912,0.19133 -2.15625,0.53125 0.368715,0.81673 0.5625,1.73389 0.5625,2.6875 0,1.78555 -0.71004,3.4159 -1.875,4.59375 0.85582,0.950131 2.087632,1.53125 3.46875,1.53125 2.58566,0 4.6875,-2.10184 4.6875,-4.6875 0,-2.585661 -2.10184,-4.65625 -4.6875,-4.65625 z m -19.78125,0.625 c -2.3818675,0 -4.3125,1.89938 -4.3125,4.28125 0,2.38187 1.9306325,4.3125 4.3125,4.3125 0.9065732,0 1.743765,-0.272561 2.4375,-0.75 -0.286665,-0.44545 -0.4375,-0.99538 -0.4375,-1.5625 0,-0.29436 0.041785,-0.57656 0.125,-0.84375 -1.29874,-0.93858 -2.15625,-2.465589 -2.15625,-4.1875 0,-0.43751 0.053479,-0.84405 0.15625,-1.25 -0.042658,-10e-4 -0.082035,0 -0.125,0 z m 15.625,2.0625 C 19.97413,17.561537 20,17.771689 20,17.999998 c 0,2.211306 -1.78851,4 -4,4 -0.786533,0 -1.505115,-0.232565 -2.125,-0.625 l -0.25,0.3125 -0.40625,-0.96875 -0.375,-0.96875 1.03125,0.15625 1,0.15625 -0.21875,0.28125 c 0.388961,0.221806 0.86326,0.3125 1.34375,0.3125 1.474326,0 2.65625,-1.182046 2.65625,-2.65625 0,-0.155514 -0.0058,-0.289328 -0.03125,-0.4375 l 1.3125,-0.21875 z m 9.6875,1.625 c -0.127065,0 -0.253513,0.01195 -0.375,0.03125 0.0067,0.1074 0.03125,0.203421 0.03125,0.3125 0,1.373371 -0.560913,2.6362 -1.4375,3.5625 0.43125,0.50149 1.064415,0.8125 1.78125,0.8125 1.30572,0 2.375,-1.03803 2.375,-2.34375 0,-1.30572 -1.06928,-2.375 -2.375,-2.375 z m -20.46875,0.25 c -1.3056525,0 -2.375,1.03809 -2.375,2.34375 0,1.30565 1.0693475,2.375 2.375,2.375 1.0008,0 1.84253,-0.62158 2.1875,-1.5 -0.84174,-0.857299 -1.4514525,-1.94102 -1.71875,-3.15625 -0.1564175,-0.03234 -0.302665,-0.0625 -0.46875,-0.0625 z" id="circle238" inkscape:connector-curvature="0" /> diff --git a/core/img/icon.png b/core/img/icon.png index 745b82584c6..e87191f1c0c 100644 Binary files a/core/img/icon.png and b/core/img/icon.png differ diff --git a/core/img/icon.svg b/core/img/icon.svg index 95eac445489..6f91abe6e48 100644 --- a/core/img/icon.svg +++ b/core/img/icon.svg @@ -19,14 +19,14 @@ viewBox="0 0 32 31.999997" enable-background="new 0 0 595.275 311.111" xml:space="preserve" - inkscape:version="0.48.2 r9819" - sodipodi:docname="icon.svg" + inkscape:version="0.48.3.1 r9886" + sodipodi:docname="icon-light.svg" inkscape:export-filename="/home/user/owncloud/core/img/icon.png" inkscape:export-xdpi="89.826416" inkscape:export-ydpi="89.826416"><metadata id="metadata327"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs id="defs325"><linearGradient inkscape:collect="always" xlink:href="#SVGID_1_" @@ -289,7 +289,7 @@ x2="-2.4040222" y2="18.967093" /><linearGradient inkscape:collect="always" - xlink:href="#linearGradient3587-6-5-26" + xlink:href="#SVGID_9_" id="linearGradient7623" x1="58.866638" y1="24.928007" @@ -297,7 +297,7 @@ y2="93.882034" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.25,0,0,0.25,0,0.500024)" /></defs><sodipodi:namedview - pagecolor="#ffffff" + pagecolor="#000000" bordercolor="#666666" borderopacity="1" objecttolerance="10" @@ -306,14 +306,14 @@ inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1280" - inkscape:window-height="774" + inkscape:window-height="800" id="namedview323" showgrid="true" - inkscape:zoom="8" - inkscape:cx="32.984032" - inkscape:cy="11.601392" + inkscape:zoom="16" + inkscape:cx="24.701671" + inkscape:cy="13.807816" inkscape:window-x="0" - inkscape:window-y="26" + inkscape:window-y="-31" inkscape:window-maximized="1" inkscape:current-layer="Layer_1" units="px" @@ -800,7 +800,7 @@ id="path7625" d="m 14.488658,7.6997589 c -2.381798,0 -4.30607,1.92427 -4.30607,4.3060701 0,0.98178 0.32692,1.88539 0.878102,2.60897 1.195708,-1.38395 2.960465,-2.2628 4.93087,-2.2628 0.964013,0 1.878155,0.21467 2.70185,0.59103 0.06669,-0.3016 0.101318,-0.61527 0.101318,-0.9372 0,-2.3818001 -1.92427,-4.3060701 -4.30607,-4.3060701 z m -5.6232205,1.99261 c -1.240375,0 -2.2374675,1.0055301 -2.2374675,2.2459101 0,0.4016 0.10361,0.78106 0.28707,1.10607 0.74849,-0.42223 1.61383,-0.66702 2.5329825,-0.66702 0.088705,0 0.1741425,0.004 0.2617425,0.008 -0.00993,-0.1253 -0.016875,-0.25124 -0.016875,-0.3795 0,-0.69087 0.15005,-1.34819 0.41372,-1.94196 C 9.7516025,9.8258189 9.3262675,9.6923689 8.86545,9.6923689 z M 19.487078,11.237489 c -0.09164,0 -0.179965,0.0113 -0.270185,0.0169 0.03903,0.24606 0.06755,0.49451 0.06755,0.75145 0,0.39985 -0.05085,0.78569 -0.143535,1.15673 1.08665,0.60136 1.989072,1.50116 2.583642,2.59208 0.616705,-0.32106 1.30466,-0.52521 2.03483,-0.57414 -0.18818,-2.20687 -2.016472,-3.94301 -4.272297,-3.94301 z m -3.495518,1.60422 c -3.33285,0 -6.0284975,2.69542 -6.0284975,6.0285 0,3.33272 2.6955105,6.0285 6.0284975,6.0285 3.33299,0 6.0285,-2.69579 6.0285,-6.0285 0,-3.33307 -2.695647,-6.0285 -6.0285,-6.0285 z m -6.5435375,0.0253 c -2.58566,0 -4.6775725,2.09191 -4.6775725,4.67757 0,1.52213 0.7252325,2.8696 1.8490775,3.72349 0.47379,-0.91381 1.425375,-1.53668 2.5245375,-1.53668 0.132845,0 0.260355,0.0161 0.38839,0.0338 -0.040192,-0.29242 -0.0591,-0.59159 -0.0591,-0.89499 0,-1.4506 0.47218,-2.79202 1.274933,-3.87546 -0.48052,-0.60129 -0.8244005,-1.32376 -0.970978,-2.11082 -0.1086325,-0.008 -0.218725,-0.0169 -0.3292875,-0.0169 z m 14.6575255,2.78628 c -0.785125,0 -1.520585,0.20045 -2.169923,0.54037 0.368715,0.81673 0.574143,1.72291 0.574143,2.67652 0,1.78555 -0.71789,3.406849 -1.88285,4.584699 0.85582,0.95013 2.097512,1.54512 3.47863,1.54512 2.58566,0 4.677575,-2.091919 4.677575,-4.677579 0,-2.585661 -2.091915,-4.66913 -4.677575,-4.66913 z M 4.3145118,16.269679 C 1.9326443,16.269679 0,18.185439 0,20.567309 c 0,2.38187 1.9326443,4.31451 4.3145118,4.31451 0.9065732,0 1.7463732,-0.282451 2.4401082,-0.75989 -0.286665,-0.44545 -0.4559375,-0.978001 -0.4559375,-1.54512 0,-0.294361 0.043432,-0.57714 0.1266475,-0.84433 -1.29874,-0.93858 -2.1445912,-2.46595 -2.1445912,-4.18787 0,-0.4375 0.057653,-0.86054 0.1604237,-1.26649 -0.042658,-0.001 -0.083686,-0.008 -0.1266507,-0.008 z m 25.3213812,3.69816 c -0.127065,0 -0.250018,0.0145 -0.371505,0.0338 0.0067,0.1074 0.0084,0.21176 0.0084,0.32084 0,1.37337 -0.541883,2.61988 -1.41847,3.54618 0.43125,0.50149 1.064697,0.819 1.781532,0.819 1.30572,0 2.364118,-1.04996 2.364118,-2.35568 0,-1.30572 -1.058398,-2.36411 -2.364118,-2.36411 z m -20.491828,0.25329 c -1.3056525,0 -2.3556725,1.05002 -2.3556725,2.35568 0,1.30565 1.05002,2.36411 2.3556725,2.36411 1.0008,0 1.850283,-0.62448 2.195253,-1.5029 -0.84174,-0.8573 -1.446688,-1.951 -1.7139855,-3.16623 C 9.468915,20.239449 9.31015,20.221129 9.144065,20.221129 z" style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.2;color:#000000;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" /><path - style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.8;color:#000000;fill:url(#linearGradient7623);fill-opacity:1;stroke:none;stroke-width:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" + style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.80000000000000004;color:#000000;fill:url(#linearGradient7623);fill-opacity:1.0;stroke:none;stroke-width:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" d="m 14.488658,6.699758 c -2.381798,0 -4.30607,1.92427 -4.30607,4.306071 0,0.98178 0.32692,1.88539 0.878102,2.60897 1.195708,-1.38395 2.960465,-2.2628 4.93087,-2.2628 0.964013,0 1.878155,0.21467 2.70185,0.59103 0.06669,-0.3016 0.101318,-0.61527 0.101318,-0.9372 0,-2.381801 -1.92427,-4.306071 -4.30607,-4.306071 z m -5.6232205,1.99261 c -1.240375,0 -2.2374675,1.00554 -2.2374675,2.245911 0,0.4016 0.10361,0.78106 0.28707,1.10607 0.74849,-0.42223 1.61383,-0.66702 2.5329825,-0.66702 0.088705,0 0.1741425,0.004 0.2617425,0.008 -0.00993,-0.1253 -0.016875,-0.25124 -0.016875,-0.3795 0,-0.69086 0.15005,-1.348191 0.41372,-1.941961 -0.3550075,-0.23805 -0.7803425,-0.3715 -1.24116,-0.3715 z m 10.6216405,1.545121 c -0.09164,0 -0.179965,0.0113 -0.270185,0.0169 0.03903,0.24606 0.06755,0.49452 0.06755,0.75145 0,0.39985 -0.05085,0.78569 -0.143535,1.15673 1.08665,0.60137 1.989072,1.50116 2.583642,2.59208 0.616705,-0.32106 1.30466,-0.5252 2.03483,-0.57414 -0.18818,-2.20687 -2.016472,-3.94301 -4.272297,-3.94301 z m -3.495518,1.60422 c -3.33285,0 -6.0284975,2.69542 -6.0284975,6.0285 0,3.33272 2.6955105,6.0285 6.0284975,6.0285 3.33299,0 6.0285,-2.69579 6.0285,-6.0285 0,-3.33307 -2.695647,-6.0285 -6.0285,-6.0285 z m -6.5435375,0.0253 c -2.58566,0 -4.6775725,2.09191 -4.6775725,4.67758 0,1.52212 0.7252325,2.86959 1.8490775,3.72348 0.47379,-0.913811 1.425375,-1.53668 2.5245375,-1.53668 0.132845,0 0.260355,0.0161 0.38839,0.0338 -0.040192,-0.29242 -0.0591,-0.59159 -0.0591,-0.89499 0,-1.4506 0.47218,-2.792019 1.274933,-3.875459 -0.48052,-0.60129 -0.8244005,-1.32376 -0.970978,-2.11082 -0.1086325,-0.008 -0.218725,-0.0169 -0.3292875,-0.0169 z m 14.6575255,2.78628 c -0.785125,0 -1.520585,0.20045 -2.169923,0.54037 0.368715,0.81673 0.574143,1.72291 0.574143,2.67652 0,1.78555 -0.71789,3.406849 -1.88285,4.584699 0.85582,0.95013 2.097512,1.54512 3.47863,1.54512 2.58566,0 4.677575,-2.091919 4.677575,-4.677579 0,-2.585661 -2.091915,-4.66913 -4.677575,-4.66913 z M 4.3145118,15.269679 C 1.9326443,15.269679 0,17.185439 0,19.567309 c 0,2.38187 1.9326443,4.31451 4.3145118,4.31451 0.9065732,0 1.7463732,-0.282451 2.4401082,-0.75989 -0.286665,-0.44545 -0.4559375,-0.978001 -0.4559375,-1.54512 0,-0.294361 0.043432,-0.57714 0.1266475,-0.84433 -1.29874,-0.93858 -2.1445912,-2.46595 -2.1445912,-4.18786 0,-0.43751 0.057653,-0.86055 0.1604237,-1.2665 -0.042658,-10e-4 -0.083686,-0.008 -0.1266507,-0.008 z m 25.3213812,3.69816 c -0.127065,0 -0.250018,0.0145 -0.371505,0.0338 0.0067,0.1074 0.0084,0.21176 0.0084,0.32084 0,1.37337 -0.541883,2.61988 -1.41847,3.54618 0.43125,0.50149 1.064697,0.819 1.781532,0.819 1.30572,0 2.364118,-1.04996 2.364118,-2.35568 0,-1.30572 -1.058398,-2.36411 -2.364118,-2.36411 z m -20.491828,0.25329 c -1.3056525,0 -2.3556725,1.05002 -2.3556725,2.35568 0,1.30565 1.05002,2.36411 2.3556725,2.36411 1.0008,0 1.850283,-0.62448 2.195253,-1.5029 -0.84174,-0.8573 -1.446688,-1.951 -1.7139855,-3.16623 C 9.468915,19.239449 9.31015,19.221129 9.144065,19.221129 z" id="circle238" inkscape:export-filename="/home/user/owncloud/core/img/logo.png" -- cgit v1.2.3 From a94b56b57baeb36a9e9bb547e213180757041576 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud <thomas.mueller@tmit.eu> Date: Fri, 7 Sep 2012 02:07:22 +0200 Subject: [tx-robot] updated from transifex --- apps/files/l10n/ca.php | 3 ++- apps/files/l10n/cs_CZ.php | 1 + apps/files/l10n/de.php | 1 + apps/files/l10n/es.php | 1 + apps/files/l10n/fi_FI.php | 1 + apps/files/l10n/it.php | 1 + apps/files/l10n/pl.php | 1 + apps/files/l10n/sl.php | 1 + apps/files/l10n/sv.php | 1 + apps/files/l10n/th_TH.php | 1 + apps/files/l10n/zh_CN.php | 3 +++ apps/files_encryption/l10n/zh_CN.php | 5 +++++ apps/files_external/l10n/it.php | 6 +++--- apps/files_external/l10n/sk_SK.php | 18 ++++++++++++++++ apps/files_sharing/l10n/sk_SK.php | 7 ++++++ apps/files_versions/l10n/zh_CN.php | 6 ++++++ apps/user_ldap/l10n/fi_FI.php | 8 +++---- core/l10n/zh_CN.php | 1 + l10n/ca/files.po | 36 +++++++++++++++---------------- l10n/ca/settings.po | 8 +++---- l10n/cs_CZ/files.po | 34 ++++++++++++++--------------- l10n/de/files.po | 34 ++++++++++++++--------------- l10n/es/files.po | 34 ++++++++++++++--------------- l10n/fi_FI/files.po | 34 ++++++++++++++--------------- l10n/fi_FI/user_ldap.po | 14 ++++++------ l10n/it/core.po | 6 +++--- l10n/it/files.po | 34 ++++++++++++++--------------- l10n/it/files_external.po | 14 ++++++------ l10n/pl/files.po | 36 +++++++++++++++---------------- l10n/sk_SK/files_external.po | 41 ++++++++++++++++++----------------- l10n/sk_SK/files_sharing.po | 21 +++++++++--------- l10n/sl/files.po | 34 ++++++++++++++--------------- l10n/sv/files.po | 34 ++++++++++++++--------------- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 28 ++++++++++++------------ l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/th_TH/files.po | 34 ++++++++++++++--------------- l10n/zh_CN/core.po | 9 ++++---- l10n/zh_CN/files.po | 38 ++++++++++++++++---------------- l10n/zh_CN/files_encryption.po | 15 +++++++------ l10n/zh_CN/files_versions.po | 17 ++++++++------- l10n/zh_CN/lib.po | 35 +++++++++++++++--------------- l10n/zh_CN/settings.po | 42 ++++++++++++++++++------------------ lib/l10n/zh_CN.php | 5 ++++- settings/l10n/ca.php | 2 +- settings/l10n/zh_CN.php | 18 ++++++++++++++++ 52 files changed, 408 insertions(+), 331 deletions(-) create mode 100644 apps/files_encryption/l10n/zh_CN.php create mode 100644 apps/files_external/l10n/sk_SK.php create mode 100644 apps/files_sharing/l10n/sk_SK.php create mode 100644 apps/files_versions/l10n/zh_CN.php (limited to 'core') diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index 6d232f217e8..336f59ae86d 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -10,6 +10,7 @@ "Delete" => "Suprimeix", "already exists" => "ja existeix", "replace" => "substitueix", +"suggest name" => "sugereix un nom", "cancel" => "cancel·la", "replaced" => "substituït", "undo" => "desfés", @@ -35,7 +36,7 @@ "Enable ZIP-download" => "Activa la baixada ZIP", "0 is unlimited" => "0 és sense límit", "Maximum input size for ZIP files" => "Mida màxima d'entrada per fitxers ZIP", -"Save" => "Desar", +"Save" => "Desa", "New" => "Nou", "Text file" => "Fitxer de text", "Folder" => "Carpeta", diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index 228f6a3898e..f29df70ee68 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -10,6 +10,7 @@ "Delete" => "Smazat", "already exists" => "již existuje", "replace" => "nahradit", +"suggest name" => "navrhnout název", "cancel" => "zrušit", "replaced" => "nahrazeno", "undo" => "zpět", diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index a267d31009b..3db6af8477d 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -10,6 +10,7 @@ "Delete" => "Löschen", "already exists" => "ist bereits vorhanden", "replace" => "ersetzen", +"suggest name" => "Name vorschlagen", "cancel" => "abbrechen", "replaced" => "ersetzt", "undo" => "rückgängig machen", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index c998c8cb57a..0ba3c56aa1f 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -10,6 +10,7 @@ "Delete" => "Eliminado", "already exists" => "ya existe", "replace" => "reemplazar", +"suggest name" => "sugerir nombre", "cancel" => "cancelar", "replaced" => "reemplazado", "undo" => "deshacer", diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index eaed70c6246..757d0594d30 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -10,6 +10,7 @@ "Delete" => "Poista", "already exists" => "on jo olemassa", "replace" => "korvaa", +"suggest name" => "ehdota nimeä", "cancel" => "peru", "replaced" => "korvattu", "undo" => "kumoa", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index d0deb4f0f07..0df60832c5b 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -10,6 +10,7 @@ "Delete" => "Elimina", "already exists" => "esiste già", "replace" => "sostituisci", +"suggest name" => "suggerisci nome", "cancel" => "annulla", "replaced" => "sostituito", "undo" => "annulla", diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index 7fd31faefd7..d3814333aca 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -10,6 +10,7 @@ "Delete" => "Usuwa element", "already exists" => "Już istnieje", "replace" => "zastap", +"suggest name" => "zasugeruj nazwę", "cancel" => "anuluj", "replaced" => "zastąpione", "undo" => "wróć", diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index 85da041629f..0d56a0c6476 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -10,6 +10,7 @@ "Delete" => "Izbriši", "already exists" => "že obstaja", "replace" => "nadomesti", +"suggest name" => "predlagaj ime", "cancel" => "ekliči", "replaced" => "nadomeščen", "undo" => "razveljavi", diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index f63039d9ee7..137222b4178 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -10,6 +10,7 @@ "Delete" => "Radera", "already exists" => "finns redan", "replace" => "ersätt", +"suggest name" => "föreslå namn", "cancel" => "avbryt", "replaced" => "ersatt", "undo" => "ångra", diff --git a/apps/files/l10n/th_TH.php b/apps/files/l10n/th_TH.php index 689871a11dd..5809ac1f098 100644 --- a/apps/files/l10n/th_TH.php +++ b/apps/files/l10n/th_TH.php @@ -10,6 +10,7 @@ "Delete" => "ลบ", "already exists" => "มีอยู่แล้ว", "replace" => "แทนที่", +"suggest name" => "แนะนำชื่อ", "cancel" => "ยกเลิก", "replaced" => "แทนที่แล้ว", "undo" => "เลิกทำ", diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index f24db8f3cb1..3fdb5b6af3e 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -10,6 +10,7 @@ "Delete" => "删除", "already exists" => "已经存在", "replace" => "替换", +"suggest name" => "建议名称", "cancel" => "取消", "replaced" => "已经替换", "undo" => "撤销", @@ -20,6 +21,7 @@ "Upload Error" => "上传错误", "Pending" => "操作等待中", "Upload cancelled." => "上传已取消", +"File upload is in progress. Leaving the page now will cancel the upload." => "文件正在上传中。现在离开此页会导致上传动作被取消。", "Invalid name, '/' is not allowed." => "非法的名称,不允许使用‘/’。", "Size" => "大小", "Modified" => "修改日期", @@ -34,6 +36,7 @@ "Enable ZIP-download" => "启用 ZIP 下载", "0 is unlimited" => "0 为无限制", "Maximum input size for ZIP files" => "ZIP 文件的最大输入大小", +"Save" => "保存", "New" => "新建", "Text file" => "文本文件", "Folder" => "文件夹", diff --git a/apps/files_encryption/l10n/zh_CN.php b/apps/files_encryption/l10n/zh_CN.php new file mode 100644 index 00000000000..139ae909709 --- /dev/null +++ b/apps/files_encryption/l10n/zh_CN.php @@ -0,0 +1,5 @@ +<?php $TRANSLATIONS = array( +"Encryption" => "加密", +"None" => "None", +"Enable Encryption" => "开启加密" +); diff --git a/apps/files_external/l10n/it.php b/apps/files_external/l10n/it.php index 927499b0172..5c5d32b214c 100644 --- a/apps/files_external/l10n/it.php +++ b/apps/files_external/l10n/it.php @@ -11,8 +11,8 @@ "Groups" => "Gruppi", "Users" => "Utenti", "Delete" => "Elimina", -"SSL root certificates" => "Certificato principale per SSL", -"Import Root Certificate" => "Importa certificato principale", +"SSL root certificates" => "Certificati SSL radice", +"Import Root Certificate" => "Importa certificato radice", "Enable User External Storage" => "Abilita la memoria esterna dell'utente", -"Allow users to mount their own external storage" => "Consente agli utenti di montare la propria memoria esterna" +"Allow users to mount their own external storage" => "Consenti agli utenti di montare la propria memoria esterna" ); diff --git a/apps/files_external/l10n/sk_SK.php b/apps/files_external/l10n/sk_SK.php new file mode 100644 index 00000000000..24087ea7feb --- /dev/null +++ b/apps/files_external/l10n/sk_SK.php @@ -0,0 +1,18 @@ +<?php $TRANSLATIONS = array( +"External Storage" => "Externé úložisko", +"Mount point" => "Prípojný bod", +"Backend" => "Backend", +"Configuration" => "Nastavenia", +"Options" => "Možnosti", +"Applicable" => "Aplikovateľné", +"Add mount point" => "Pridať prípojný bod", +"None set" => "Žiadne nastavené", +"All Users" => "Všetci užívatelia", +"Groups" => "Skupiny", +"Users" => "Užívatelia", +"Delete" => "Odstrániť", +"SSL root certificates" => "Koreňové SSL certifikáty", +"Import Root Certificate" => "Importovať koreňový certifikát", +"Enable User External Storage" => "Povoliť externé úložisko", +"Allow users to mount their own external storage" => "Povoliť užívateľom pripojiť ich vlastné externé úložisko" +); diff --git a/apps/files_sharing/l10n/sk_SK.php b/apps/files_sharing/l10n/sk_SK.php new file mode 100644 index 00000000000..ec9fc31c878 --- /dev/null +++ b/apps/files_sharing/l10n/sk_SK.php @@ -0,0 +1,7 @@ +<?php $TRANSLATIONS = array( +"Password" => "Heslo", +"Submit" => "Odoslať", +"Download" => "Stiahnuť", +"No preview available for" => "Žiaden náhľad k dispozícii pre", +"web services under your control" => "webové služby pod Vašou kontrolou" +); diff --git a/apps/files_versions/l10n/zh_CN.php b/apps/files_versions/l10n/zh_CN.php new file mode 100644 index 00000000000..56a474be89a --- /dev/null +++ b/apps/files_versions/l10n/zh_CN.php @@ -0,0 +1,6 @@ +<?php $TRANSLATIONS = array( +"Expire all versions" => "过期所有版本", +"Versions" => "版本", +"This will delete all existing backup versions of your files" => "将会删除您的文件的所有备份版本", +"Enable Files Versioning" => "开启文件版本" +); diff --git a/apps/user_ldap/l10n/fi_FI.php b/apps/user_ldap/l10n/fi_FI.php index 6d0040868f8..24195649a64 100644 --- a/apps/user_ldap/l10n/fi_FI.php +++ b/apps/user_ldap/l10n/fi_FI.php @@ -19,7 +19,7 @@ "Port" => "Portti", "Base User Tree" => "Oletuskäyttäjäpuu", "Base Group Tree" => "Ryhmien juuri", -"Group-Member association" => "Ryhmä-jäsen assosiaatio (yhteys)", +"Group-Member association" => "Ryhmän ja jäsenen assosiaatio (yhteys)", "Use TLS" => "Käytä TLS:ää", "Do not use it for SSL connections, it will fail." => "Älä käytä SSL-yhteyttä varten, se epäonnistuu. ", "Case insensitve LDAP server (Windows)" => "Kirjainkoosta piittamaton LDAP-palvelin (Windows)", @@ -27,11 +27,11 @@ "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Jos yhteys toimii vain tällä valinnalla, siirrä LDAP-palvelimen SSL-varmenne ownCloud-palvelimellesi.", "Not recommended, use for testing only." => "Ei suositella, käytä vain testausta varten.", "User Display Name Field" => "Käyttäjän näytettävän nimen kenttä", -"The LDAP attribute to use to generate the user`s ownCloud name." => "LDAP attribuutti, jota käytetään käyttäjän ownCloud käyttäjänimenä ", +"The LDAP attribute to use to generate the user`s ownCloud name." => "LDAP-attribuutti, jota käytetään käyttäjän ownCloud-käyttäjänimenä ", "Group Display Name Field" => "Ryhmän \"näytettävä nimi\"-kenttä", -"The LDAP attribute to use to generate the groups`s ownCloud name." => "LDAP atribuutti, jota käytetään luomaan ryhmän ownCloud nimi", +"The LDAP attribute to use to generate the groups`s ownCloud name." => "LDAP-attribuutti, jota käytetään luomaan ryhmän ownCloud-nimi", "in bytes" => "tavuissa", "in seconds. A change empties the cache." => "sekunneissa. Muutos tyhjentää välimuistin.", -"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Jätä tyhjäksi käyttäjänimi (oletusasetus). Muutoin anna LDAP/AD atribuutti.", +"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Jätä tyhjäksi käyttäjänimi (oletusasetus). Muutoin anna LDAP/AD-atribuutti.", "Help" => "Ohje" ); diff --git a/core/l10n/zh_CN.php b/core/l10n/zh_CN.php index 1f5216a2fff..4e0a37a8774 100644 --- a/core/l10n/zh_CN.php +++ b/core/l10n/zh_CN.php @@ -50,6 +50,7 @@ "Database user" => "数据库用户", "Database password" => "数据库密码", "Database name" => "数据库名", +"Database tablespace" => "数据库表空间", "Database host" => "数据库主机", "Finish setup" => "安装完成", "web services under your control" => "由您掌控的网络服务", diff --git a/l10n/ca/files.po b/l10n/ca/files.po index baaa56b4ebe..b00e52830d7 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 06:33+0000\n" +"Last-Translator: rogerc <rcalvoi@yahoo.com>\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -54,7 +54,7 @@ msgstr "Ha fallat en escriure al disc" msgid "Files" msgstr "Fitxers" -#: js/fileactions.js:106 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:57 msgid "Delete" msgstr "Suprimeix" @@ -68,7 +68,7 @@ msgstr "substitueix" #: js/filelist.js:186 msgid "suggest name" -msgstr "" +msgstr "sugereix un nom" #: js/filelist.js:186 js/filelist.js:188 msgid "cancel" @@ -78,7 +78,7 @@ msgstr "cancel·la" msgid "replaced" msgstr "substituït" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:266 msgid "undo" msgstr "desfés" @@ -86,7 +86,7 @@ msgstr "desfés" msgid "with" msgstr "per" -#: js/filelist.js:271 +#: js/filelist.js:266 msgid "deleted" msgstr "esborrat" @@ -119,11 +119,11 @@ msgstr "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·l msgid "Invalid name, '/' is not allowed." msgstr "El nom no és vàlid, no es permet '/'." -#: js/files.js:746 templates/index.php:55 +#: js/files.js:746 templates/index.php:56 msgid "Size" msgstr "Mida" -#: js/files.js:747 templates/index.php:56 +#: js/files.js:747 templates/index.php:57 msgid "Modified" msgstr "Modificat" @@ -173,7 +173,7 @@ msgstr "Mida màxima d'entrada per fitxers ZIP" #: templates/admin.php:14 msgid "Save" -msgstr "Desar" +msgstr "Desa" #: templates/index.php:7 msgid "New" @@ -199,36 +199,36 @@ msgstr "Puja" msgid "Cancel upload" msgstr "Cancel·la la pujada" -#: templates/index.php:39 +#: templates/index.php:40 msgid "Nothing in here. Upload something!" msgstr "Res per aquí. Pugeu alguna cosa!" -#: templates/index.php:47 +#: templates/index.php:48 msgid "Name" msgstr "Nom" -#: templates/index.php:49 +#: templates/index.php:50 msgid "Share" msgstr "Comparteix" -#: templates/index.php:51 +#: templates/index.php:52 msgid "Download" msgstr "Baixa" -#: templates/index.php:64 +#: templates/index.php:65 msgid "Upload too large" msgstr "La pujada és massa gran" -#: templates/index.php:66 +#: templates/index.php:67 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Els fitxers que esteu intentant pujar excedeixen la mida màxima de pujada del servidor" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Files are being scanned, please wait." msgstr "S'estan escanejant els fitxers, espereu" -#: templates/index.php:74 +#: templates/index.php:75 msgid "Current scanning" msgstr "Actualment escanejant" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 28539a5b19a..8065c1ebeec 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 11:42+0000\n" -"Last-Translator: bury1000 <bury1000@gmail.com>\n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 06:39+0000\n" +"Last-Translator: rogerc <rcalvoi@yahoo.com>\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -224,7 +224,7 @@ msgstr "Esteu usant" #: templates/personal.php:8 msgid "of the available" -msgstr "del disponible" +msgstr "d'un total disponible de" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 53a6691385e..855b138c2ac 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 08:41+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -54,7 +54,7 @@ msgstr "Zápis na disk selhal" msgid "Files" msgstr "Soubory" -#: js/fileactions.js:106 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:57 msgid "Delete" msgstr "Smazat" @@ -68,7 +68,7 @@ msgstr "nahradit" #: js/filelist.js:186 msgid "suggest name" -msgstr "" +msgstr "navrhnout název" #: js/filelist.js:186 js/filelist.js:188 msgid "cancel" @@ -78,7 +78,7 @@ msgstr "zrušit" msgid "replaced" msgstr "nahrazeno" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:266 msgid "undo" msgstr "zpět" @@ -86,7 +86,7 @@ msgstr "zpět" msgid "with" msgstr "s" -#: js/filelist.js:271 +#: js/filelist.js:266 msgid "deleted" msgstr "smazáno" @@ -119,11 +119,11 @@ msgstr "Probíhá odesílání souboru. Opuštění stránky vyústí ve zrušen msgid "Invalid name, '/' is not allowed." msgstr "Neplatný název, znak '/' není povolen" -#: js/files.js:746 templates/index.php:55 +#: js/files.js:746 templates/index.php:56 msgid "Size" msgstr "Velikost" -#: js/files.js:747 templates/index.php:56 +#: js/files.js:747 templates/index.php:57 msgid "Modified" msgstr "Změněno" @@ -199,36 +199,36 @@ msgstr "Odeslat" msgid "Cancel upload" msgstr "Zrušit odesílání" -#: templates/index.php:39 +#: templates/index.php:40 msgid "Nothing in here. Upload something!" msgstr "Žádný obsah. Nahrajte něco." -#: templates/index.php:47 +#: templates/index.php:48 msgid "Name" msgstr "Název" -#: templates/index.php:49 +#: templates/index.php:50 msgid "Share" msgstr "Sdílet" -#: templates/index.php:51 +#: templates/index.php:52 msgid "Download" msgstr "Stáhnout" -#: templates/index.php:64 +#: templates/index.php:65 msgid "Upload too large" msgstr "Odeslaný soubor je příliš velký" -#: templates/index.php:66 +#: templates/index.php:67 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Soubory, které se snažíte odeslat, překračují limit velikosti odesílání na tomto serveru." -#: templates/index.php:71 +#: templates/index.php:72 msgid "Files are being scanned, please wait." msgstr "Soubory se prohledávají, prosím čekejte." -#: templates/index.php:74 +#: templates/index.php:75 msgid "Current scanning" msgstr "Aktuální prohledávání" diff --git a/l10n/de/files.po b/l10n/de/files.po index 186ed35ccdd..a06845cc3bc 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 06:59+0000\n" +"Last-Translator: goeck <admin@s-goecker.de>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -62,7 +62,7 @@ msgstr "Fehler beim Schreiben auf die Festplatte" msgid "Files" msgstr "Dateien" -#: js/fileactions.js:106 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:57 msgid "Delete" msgstr "Löschen" @@ -76,7 +76,7 @@ msgstr "ersetzen" #: js/filelist.js:186 msgid "suggest name" -msgstr "" +msgstr "Name vorschlagen" #: js/filelist.js:186 js/filelist.js:188 msgid "cancel" @@ -86,7 +86,7 @@ msgstr "abbrechen" msgid "replaced" msgstr "ersetzt" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:266 msgid "undo" msgstr "rückgängig machen" @@ -94,7 +94,7 @@ msgstr "rückgängig machen" msgid "with" msgstr "mit" -#: js/filelist.js:271 +#: js/filelist.js:266 msgid "deleted" msgstr "gelöscht" @@ -127,11 +127,11 @@ msgstr "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload msgid "Invalid name, '/' is not allowed." msgstr "Ungültiger Name: \"/\" ist nicht erlaubt." -#: js/files.js:746 templates/index.php:55 +#: js/files.js:746 templates/index.php:56 msgid "Size" msgstr "Größe" -#: js/files.js:747 templates/index.php:56 +#: js/files.js:747 templates/index.php:57 msgid "Modified" msgstr "Bearbeitet" @@ -207,36 +207,36 @@ msgstr "Hochladen" msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/index.php:39 +#: templates/index.php:40 msgid "Nothing in here. Upload something!" msgstr "Alles leer. Lade etwas hoch!" -#: templates/index.php:47 +#: templates/index.php:48 msgid "Name" msgstr "Name" -#: templates/index.php:49 +#: templates/index.php:50 msgid "Share" msgstr "Teilen" -#: templates/index.php:51 +#: templates/index.php:52 msgid "Download" msgstr "Herunterladen" -#: templates/index.php:64 +#: templates/index.php:65 msgid "Upload too large" msgstr "Upload zu groß" -#: templates/index.php:66 +#: templates/index.php:67 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server." -#: templates/index.php:71 +#: templates/index.php:72 msgid "Files are being scanned, please wait." msgstr "Dateien werden gescannt, bitte warten." -#: templates/index.php:74 +#: templates/index.php:75 msgid "Current scanning" msgstr "Scannen" diff --git a/l10n/es/files.po b/l10n/es/files.po index feda2631833..1889dd54e98 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 05:09+0000\n" +"Last-Translator: juanman <juanma@kde.org.ar>\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" @@ -55,7 +55,7 @@ msgstr "La escritura en disco ha fallado" msgid "Files" msgstr "Archivos" -#: js/fileactions.js:106 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:57 msgid "Delete" msgstr "Eliminado" @@ -69,7 +69,7 @@ msgstr "reemplazar" #: js/filelist.js:186 msgid "suggest name" -msgstr "" +msgstr "sugerir nombre" #: js/filelist.js:186 js/filelist.js:188 msgid "cancel" @@ -79,7 +79,7 @@ msgstr "cancelar" msgid "replaced" msgstr "reemplazado" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:266 msgid "undo" msgstr "deshacer" @@ -87,7 +87,7 @@ msgstr "deshacer" msgid "with" msgstr "con" -#: js/filelist.js:271 +#: js/filelist.js:266 msgid "deleted" msgstr "borrado" @@ -120,11 +120,11 @@ msgstr "La subida del archivo está en proceso. Salir de la página ahora cancel msgid "Invalid name, '/' is not allowed." msgstr "Nombre no válido, '/' no está permitido." -#: js/files.js:746 templates/index.php:55 +#: js/files.js:746 templates/index.php:56 msgid "Size" msgstr "Tamaño" -#: js/files.js:747 templates/index.php:56 +#: js/files.js:747 templates/index.php:57 msgid "Modified" msgstr "Modificado" @@ -200,36 +200,36 @@ msgstr "Subir" msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/index.php:39 +#: templates/index.php:40 msgid "Nothing in here. Upload something!" msgstr "Aquí no hay nada. ¡Sube algo!" -#: templates/index.php:47 +#: templates/index.php:48 msgid "Name" msgstr "Nombre" -#: templates/index.php:49 +#: templates/index.php:50 msgid "Share" msgstr "Compartir" -#: templates/index.php:51 +#: templates/index.php:52 msgid "Download" msgstr "Descargar" -#: templates/index.php:64 +#: templates/index.php:65 msgid "Upload too large" msgstr "El archivo es demasiado grande" -#: templates/index.php:66 +#: templates/index.php:67 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Los archivos que estás intentando subir sobrepasan el tamaño máximo permitido por este servidor." -#: templates/index.php:71 +#: templates/index.php:72 msgid "Files are being scanned, please wait." msgstr "Se están escaneando los archivos, por favor espere." -#: templates/index.php:74 +#: templates/index.php:75 msgid "Current scanning" msgstr "Escaneo actual" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index f82b204f60e..67278ea29fb 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 10:47+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -56,7 +56,7 @@ msgstr "Levylle kirjoitus epäonnistui" msgid "Files" msgstr "Tiedostot" -#: js/fileactions.js:106 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:57 msgid "Delete" msgstr "Poista" @@ -70,7 +70,7 @@ msgstr "korvaa" #: js/filelist.js:186 msgid "suggest name" -msgstr "" +msgstr "ehdota nimeä" #: js/filelist.js:186 js/filelist.js:188 msgid "cancel" @@ -80,7 +80,7 @@ msgstr "peru" msgid "replaced" msgstr "korvattu" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:266 msgid "undo" msgstr "kumoa" @@ -88,7 +88,7 @@ msgstr "kumoa" msgid "with" msgstr "käyttäen" -#: js/filelist.js:271 +#: js/filelist.js:266 msgid "deleted" msgstr "poistettu" @@ -121,11 +121,11 @@ msgstr "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedos msgid "Invalid name, '/' is not allowed." msgstr "Virheellinen nimi, merkki '/' ei ole sallittu." -#: js/files.js:746 templates/index.php:55 +#: js/files.js:746 templates/index.php:56 msgid "Size" msgstr "Koko" -#: js/files.js:747 templates/index.php:56 +#: js/files.js:747 templates/index.php:57 msgid "Modified" msgstr "Muutettu" @@ -201,36 +201,36 @@ msgstr "Lähetä" msgid "Cancel upload" msgstr "Peru lähetys" -#: templates/index.php:39 +#: templates/index.php:40 msgid "Nothing in here. Upload something!" msgstr "Täällä ei ole mitään. Lähetä tänne jotakin!" -#: templates/index.php:47 +#: templates/index.php:48 msgid "Name" msgstr "Nimi" -#: templates/index.php:49 +#: templates/index.php:50 msgid "Share" msgstr "Jaa" -#: templates/index.php:51 +#: templates/index.php:52 msgid "Download" msgstr "Lataa" -#: templates/index.php:64 +#: templates/index.php:65 msgid "Upload too large" msgstr "Lähetettävä tiedosto on liian suuri" -#: templates/index.php:66 +#: templates/index.php:67 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Lähetettäväksi valitsemasi tiedostot ylittävät palvelimen salliman tiedostokoon rajan." -#: templates/index.php:71 +#: templates/index.php:72 msgid "Files are being scanned, please wait." msgstr "Tiedostoja tarkistetaan, odota hetki." -#: templates/index.php:74 +#: templates/index.php:75 msgid "Current scanning" msgstr "Tämänhetkinen tutkinta" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index 62a31960b0c..085ca3dd65b 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 16:49+0000\n" -"Last-Translator: teho <tehoratopato@gmail.com>\n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 10:56+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -110,7 +110,7 @@ msgstr "Ryhmien juuri" #: templates/settings.php:20 msgid "Group-Member association" -msgstr "Ryhmä-jäsen assosiaatio (yhteys)" +msgstr "Ryhmän ja jäsenen assosiaatio (yhteys)" #: templates/settings.php:21 msgid "Use TLS" @@ -144,7 +144,7 @@ msgstr "Käyttäjän näytettävän nimen kenttä" #: templates/settings.php:24 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "LDAP attribuutti, jota käytetään käyttäjän ownCloud käyttäjänimenä " +msgstr "LDAP-attribuutti, jota käytetään käyttäjän ownCloud-käyttäjänimenä " #: templates/settings.php:25 msgid "Group Display Name Field" @@ -152,7 +152,7 @@ msgstr "Ryhmän \"näytettävä nimi\"-kenttä" #: templates/settings.php:25 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "LDAP atribuutti, jota käytetään luomaan ryhmän ownCloud nimi" +msgstr "LDAP-attribuutti, jota käytetään luomaan ryhmän ownCloud-nimi" #: templates/settings.php:27 msgid "in bytes" @@ -166,7 +166,7 @@ msgstr "sekunneissa. Muutos tyhjentää välimuistin." msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "Jätä tyhjäksi käyttäjänimi (oletusasetus). Muutoin anna LDAP/AD atribuutti." +msgstr "Jätä tyhjäksi käyttäjänimi (oletusasetus). Muutoin anna LDAP/AD-atribuutti." #: templates/settings.php:32 msgid "Help" diff --git a/l10n/it/core.po b/l10n/it/core.po index 39884ebdc9d..f4904b27927 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 05:05+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/it/files.po b/l10n/it/files.po index daa29074e68..6175346abd7 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 04:57+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -55,7 +55,7 @@ msgstr "Scrittura su disco non riuscita" msgid "Files" msgstr "File" -#: js/fileactions.js:106 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:57 msgid "Delete" msgstr "Elimina" @@ -69,7 +69,7 @@ msgstr "sostituisci" #: js/filelist.js:186 msgid "suggest name" -msgstr "" +msgstr "suggerisci nome" #: js/filelist.js:186 js/filelist.js:188 msgid "cancel" @@ -79,7 +79,7 @@ msgstr "annulla" msgid "replaced" msgstr "sostituito" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:266 msgid "undo" msgstr "annulla" @@ -87,7 +87,7 @@ msgstr "annulla" msgid "with" msgstr "con" -#: js/filelist.js:271 +#: js/filelist.js:266 msgid "deleted" msgstr "eliminati" @@ -120,11 +120,11 @@ msgstr "Caricamento del file in corso. La chiusura della pagina annullerà il ca msgid "Invalid name, '/' is not allowed." msgstr "Nome non valido" -#: js/files.js:746 templates/index.php:55 +#: js/files.js:746 templates/index.php:56 msgid "Size" msgstr "Dimensione" -#: js/files.js:747 templates/index.php:56 +#: js/files.js:747 templates/index.php:57 msgid "Modified" msgstr "Modificato" @@ -200,36 +200,36 @@ msgstr "Carica" msgid "Cancel upload" msgstr "Annulla invio" -#: templates/index.php:39 +#: templates/index.php:40 msgid "Nothing in here. Upload something!" msgstr "Non c'è niente qui. Carica qualcosa!" -#: templates/index.php:47 +#: templates/index.php:48 msgid "Name" msgstr "Nome" -#: templates/index.php:49 +#: templates/index.php:50 msgid "Share" msgstr "Condividi" -#: templates/index.php:51 +#: templates/index.php:52 msgid "Download" msgstr "Scarica" -#: templates/index.php:64 +#: templates/index.php:65 msgid "Upload too large" msgstr "Il file caricato è troppo grande" -#: templates/index.php:66 +#: templates/index.php:67 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "I file che stai provando a caricare superano la dimensione massima consentita su questo server." -#: templates/index.php:71 +#: templates/index.php:72 msgid "Files are being scanned, please wait." msgstr "Scansione dei file in corso, attendi" -#: templates/index.php:74 +#: templates/index.php:75 msgid "Current scanning" msgstr "Scansione corrente" diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index 801511ce3b5..1875987bf4b 100644 --- a/l10n/it/files_external.po +++ b/l10n/it/files_external.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-15 02:02+0200\n" -"PO-Revision-Date: 2012-08-14 14:42+0000\n" -"Last-Translator: Innocenzo Ventre <el.diabl09@gmail.com>\n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 05:03+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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:3 msgid "External Storage" @@ -69,11 +69,11 @@ msgstr "Elimina" #: templates/settings.php:88 msgid "SSL root certificates" -msgstr "Certificato principale per SSL" +msgstr "Certificati SSL radice" #: templates/settings.php:102 msgid "Import Root Certificate" -msgstr "Importa certificato principale" +msgstr "Importa certificato radice" #: templates/settings.php:108 msgid "Enable User External Storage" @@ -81,4 +81,4 @@ msgstr "Abilita la memoria esterna dell'utente" #: templates/settings.php:109 msgid "Allow users to mount their own external storage" -msgstr "Consente agli utenti di montare la propria memoria esterna" +msgstr "Consenti agli utenti di montare la propria memoria esterna" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 2512f6db596..a3ea40e9bd8 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -4,7 +4,7 @@ # # Translators: # Cyryl Sochacki <>, 2012. -# Marcin Małecki <gerber@tkdami.net>, 2011, 2012. +# Marcin Małecki <gerber@tkdami.net>, 2011-2012. # <mosslar@gmail.com>, 2011. # <mplichta@gmail.com>, 2012. # Piotr Sokół <psokol@jabster.pl>, 2012. @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 13:42+0000\n" +"Last-Translator: Marcin Małecki <gerber@tkdami.net>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -56,7 +56,7 @@ msgstr "Błąd zapisu na dysk" msgid "Files" msgstr "Pliki" -#: js/fileactions.js:106 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:57 msgid "Delete" msgstr "Usuwa element" @@ -70,7 +70,7 @@ msgstr "zastap" #: js/filelist.js:186 msgid "suggest name" -msgstr "" +msgstr "zasugeruj nazwę" #: js/filelist.js:186 js/filelist.js:188 msgid "cancel" @@ -80,7 +80,7 @@ msgstr "anuluj" msgid "replaced" msgstr "zastąpione" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:266 msgid "undo" msgstr "wróć" @@ -88,7 +88,7 @@ msgstr "wróć" msgid "with" msgstr "z" -#: js/filelist.js:271 +#: js/filelist.js:266 msgid "deleted" msgstr "skasuj" @@ -121,11 +121,11 @@ msgstr "Wysyłanie pliku jest w toku. Teraz opuszczając stronę wysyłanie zost msgid "Invalid name, '/' is not allowed." msgstr "Nieprawidłowa nazwa '/' jest niedozwolone." -#: js/files.js:746 templates/index.php:55 +#: js/files.js:746 templates/index.php:56 msgid "Size" msgstr "Rozmiar" -#: js/files.js:747 templates/index.php:56 +#: js/files.js:747 templates/index.php:57 msgid "Modified" msgstr "Czas modyfikacji" @@ -201,36 +201,36 @@ msgstr "Prześlij" msgid "Cancel upload" msgstr "Przestań wysyłać" -#: templates/index.php:39 +#: templates/index.php:40 msgid "Nothing in here. Upload something!" msgstr "Brak zawartości. Proszę wysłać pliki!" -#: templates/index.php:47 +#: templates/index.php:48 msgid "Name" msgstr "Nazwa" -#: templates/index.php:49 +#: templates/index.php:50 msgid "Share" msgstr "Współdziel" -#: templates/index.php:51 +#: templates/index.php:52 msgid "Download" msgstr "Pobiera element" -#: templates/index.php:64 +#: templates/index.php:65 msgid "Upload too large" msgstr "Wysyłany plik ma za duży rozmiar" -#: templates/index.php:66 +#: templates/index.php:67 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Pliki które próbujesz przesłać, przekraczają maksymalną, dopuszczalną wielkość." -#: templates/index.php:71 +#: templates/index.php:72 msgid "Files are being scanned, please wait." msgstr "Skanowanie plików, proszę czekać." -#: templates/index.php:74 +#: templates/index.php:75 msgid "Current scanning" msgstr "Aktualnie skanowane" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index 99cbb6e3c46..5c0dd5a8c76 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.po @@ -3,80 +3,81 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# <intense.feel@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:34+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 17:51+0000\n" +"Last-Translator: intense <intense.feel@gmail.com>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: sk_SK\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: templates/settings.php:3 msgid "External Storage" -msgstr "" +msgstr "Externé úložisko" #: templates/settings.php:7 templates/settings.php:19 msgid "Mount point" -msgstr "" +msgstr "Prípojný bod" #: templates/settings.php:8 msgid "Backend" -msgstr "" +msgstr "Backend" #: templates/settings.php:9 msgid "Configuration" -msgstr "" +msgstr "Nastavenia" #: templates/settings.php:10 msgid "Options" -msgstr "" +msgstr "Možnosti" #: templates/settings.php:11 msgid "Applicable" -msgstr "" +msgstr "Aplikovateľné" #: templates/settings.php:23 msgid "Add mount point" -msgstr "" +msgstr "Pridať prípojný bod" #: templates/settings.php:54 templates/settings.php:62 msgid "None set" -msgstr "" +msgstr "Žiadne nastavené" #: templates/settings.php:63 msgid "All Users" -msgstr "" +msgstr "Všetci užívatelia" #: templates/settings.php:64 msgid "Groups" -msgstr "" +msgstr "Skupiny" #: templates/settings.php:69 msgid "Users" -msgstr "" +msgstr "Užívatelia" #: templates/settings.php:77 templates/settings.php:96 msgid "Delete" -msgstr "" +msgstr "Odstrániť" #: templates/settings.php:88 msgid "SSL root certificates" -msgstr "" +msgstr "Koreňové SSL certifikáty" #: templates/settings.php:102 msgid "Import Root Certificate" -msgstr "" +msgstr "Importovať koreňový certifikát" #: templates/settings.php:108 msgid "Enable User External Storage" -msgstr "" +msgstr "Povoliť externé úložisko" #: templates/settings.php:109 msgid "Allow users to mount their own external storage" -msgstr "" +msgstr "Povoliť užívateľom pripojiť ich vlastné externé úložisko" diff --git a/l10n/sk_SK/files_sharing.po b/l10n/sk_SK/files_sharing.po index bda598320ea..d28ae49cf74 100644 --- a/l10n/sk_SK/files_sharing.po +++ b/l10n/sk_SK/files_sharing.po @@ -3,36 +3,37 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# <intense.feel@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 17:47+0000\n" +"Last-Translator: intense <intense.feel@gmail.com>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: sk_SK\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: templates/authenticate.php:4 msgid "Password" -msgstr "" +msgstr "Heslo" #: templates/authenticate.php:6 msgid "Submit" -msgstr "" +msgstr "Odoslať" #: templates/public.php:9 templates/public.php:19 msgid "Download" -msgstr "" +msgstr "Stiahnuť" #: templates/public.php:18 msgid "No preview available for" -msgstr "" +msgstr "Žiaden náhľad k dispozícii pre" -#: templates/public.php:23 +#: templates/public.php:25 msgid "web services under your control" -msgstr "" +msgstr "webové služby pod Vašou kontrolou" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 73d23c25795..af1cffc01a8 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 05:16+0000\n" +"Last-Translator: Peter Peroša <peter.perosa@gmail.com>\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" @@ -54,7 +54,7 @@ msgstr "Pisanje na disk je spodletelo" msgid "Files" msgstr "Datoteke" -#: js/fileactions.js:106 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:57 msgid "Delete" msgstr "Izbriši" @@ -68,7 +68,7 @@ msgstr "nadomesti" #: js/filelist.js:186 msgid "suggest name" -msgstr "" +msgstr "predlagaj ime" #: js/filelist.js:186 js/filelist.js:188 msgid "cancel" @@ -78,7 +78,7 @@ msgstr "ekliči" msgid "replaced" msgstr "nadomeščen" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:266 msgid "undo" msgstr "razveljavi" @@ -86,7 +86,7 @@ msgstr "razveljavi" msgid "with" msgstr "z" -#: js/filelist.js:271 +#: js/filelist.js:266 msgid "deleted" msgstr "izbrisano" @@ -119,11 +119,11 @@ msgstr "Nalaganje datoteke je v teku. Če zapustite to stran zdaj, boste nalagan msgid "Invalid name, '/' is not allowed." msgstr "Neveljavno ime. Znak '/' ni dovoljen." -#: js/files.js:746 templates/index.php:55 +#: js/files.js:746 templates/index.php:56 msgid "Size" msgstr "Velikost" -#: js/files.js:747 templates/index.php:56 +#: js/files.js:747 templates/index.php:57 msgid "Modified" msgstr "Spremenjeno" @@ -199,36 +199,36 @@ msgstr "Naloži" msgid "Cancel upload" msgstr "Prekliči nalaganje" -#: templates/index.php:39 +#: templates/index.php:40 msgid "Nothing in here. Upload something!" msgstr "Tukaj ni ničesar. Naložite kaj!" -#: templates/index.php:47 +#: templates/index.php:48 msgid "Name" msgstr "Ime" -#: templates/index.php:49 +#: templates/index.php:50 msgid "Share" msgstr "Souporaba" -#: templates/index.php:51 +#: templates/index.php:52 msgid "Download" msgstr "Prenesi" -#: templates/index.php:64 +#: templates/index.php:65 msgid "Upload too large" msgstr "Nalaganje ni mogoče, ker je preveliko" -#: templates/index.php:66 +#: templates/index.php:67 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Datoteke, ki jih želite naložiti, presegajo največjo dovoljeno velikost na tem strežniku." -#: templates/index.php:71 +#: templates/index.php:72 msgid "Files are being scanned, please wait." msgstr "Preiskujem datoteke, prosimo počakajte." -#: templates/index.php:74 +#: templates/index.php:75 msgid "Current scanning" msgstr "Trenutno preiskujem" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 847a38a3958..81ea65ce488 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 13:34+0000\n" +"Last-Translator: Magnus Höglund <magnus@linux.com>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -57,7 +57,7 @@ msgstr "Misslyckades spara till disk" msgid "Files" msgstr "Filer" -#: js/fileactions.js:106 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:57 msgid "Delete" msgstr "Radera" @@ -71,7 +71,7 @@ msgstr "ersätt" #: js/filelist.js:186 msgid "suggest name" -msgstr "" +msgstr "föreslå namn" #: js/filelist.js:186 js/filelist.js:188 msgid "cancel" @@ -81,7 +81,7 @@ msgstr "avbryt" msgid "replaced" msgstr "ersatt" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:266 msgid "undo" msgstr "ångra" @@ -89,7 +89,7 @@ msgstr "ångra" msgid "with" msgstr "med" -#: js/filelist.js:271 +#: js/filelist.js:266 msgid "deleted" msgstr "raderad" @@ -122,11 +122,11 @@ msgstr "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen." msgid "Invalid name, '/' is not allowed." msgstr "Ogiltigt namn, '/' är inte tillåten." -#: js/files.js:746 templates/index.php:55 +#: js/files.js:746 templates/index.php:56 msgid "Size" msgstr "Storlek" -#: js/files.js:747 templates/index.php:56 +#: js/files.js:747 templates/index.php:57 msgid "Modified" msgstr "Ändrad" @@ -202,36 +202,36 @@ msgstr "Ladda upp" msgid "Cancel upload" msgstr "Avbryt uppladdning" -#: templates/index.php:39 +#: templates/index.php:40 msgid "Nothing in here. Upload something!" msgstr "Ingenting här. Ladda upp något!" -#: templates/index.php:47 +#: templates/index.php:48 msgid "Name" msgstr "Namn" -#: templates/index.php:49 +#: templates/index.php:50 msgid "Share" msgstr "Dela" -#: templates/index.php:51 +#: templates/index.php:52 msgid "Download" msgstr "Ladda ner" -#: templates/index.php:64 +#: templates/index.php:65 msgid "Upload too large" msgstr "För stor uppladdning" -#: templates/index.php:66 +#: templates/index.php:67 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Filerna du försöker ladda upp överstiger den maximala storleken för filöverföringar på servern." -#: templates/index.php:71 +#: templates/index.php:72 msgid "Files are being scanned, please wait." msgstr "Filer skannas, var god vänta" -#: templates/index.php:74 +#: templates/index.php:75 msgid "Current scanning" msgstr "Aktuell skanning" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 9112352a3a0..b702651ccd7 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"POT-Creation-Date: 2012-09-07 02:04+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.pot b/l10n/templates/files.pot index 74ab3230866..08fbebab797 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"POT-Creation-Date: 2012-09-07 02:04+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" @@ -51,7 +51,7 @@ msgstr "" msgid "Files" msgstr "" -#: js/fileactions.js:106 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:57 msgid "Delete" msgstr "" @@ -75,7 +75,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:266 msgid "undo" msgstr "" @@ -83,7 +83,7 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:271 +#: js/filelist.js:266 msgid "deleted" msgstr "" @@ -116,11 +116,11 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:55 +#: js/files.js:746 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:747 templates/index.php:56 +#: js/files.js:747 templates/index.php:57 msgid "Modified" msgstr "" @@ -196,36 +196,36 @@ msgstr "" msgid "Cancel upload" msgstr "" -#: templates/index.php:39 +#: templates/index.php:40 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:47 +#: templates/index.php:48 msgid "Name" msgstr "" -#: templates/index.php:49 +#: templates/index.php:50 msgid "Share" msgstr "" -#: templates/index.php:51 +#: templates/index.php:52 msgid "Download" msgstr "" -#: templates/index.php:64 +#: templates/index.php:65 msgid "Upload too large" msgstr "" -#: templates/index.php:66 +#: templates/index.php:67 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:74 +#: templates/index.php:75 msgid "Current scanning" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 0590a198801..372d9301ed7 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"POT-Creation-Date: 2012-09-07 02:04+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 76fafddc1b2..d09f7055354 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"POT-Creation-Date: 2012-09-07 02:04+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 b0c45867827..e9f6afc98d2 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" +"POT-Creation-Date: 2012-09-07 02:04+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 b17eb3894d1..9750a4acc5d 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"POT-Creation-Date: 2012-09-07 02:04+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 5a86298e890..d9c9f8aaded 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"POT-Creation-Date: 2012-09-07 02:04+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 42965d3e0bd..8bd0ab8fda5 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"POT-Creation-Date: 2012-09-07 02:04+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 82b19373c1d..45eb19bf9fa 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" +"POT-Creation-Date: 2012-09-07 02:04+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/files.po b/l10n/th_TH/files.po index b6ff21b3829..7c732071313 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 04:45+0000\n" +"Last-Translator: AriesAnywhere Anywhere <ariesanywhere@gmail.com>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -53,7 +53,7 @@ msgstr "เขียนข้อมูลลงแผ่นดิสก์ล้ msgid "Files" msgstr "ไฟล์" -#: js/fileactions.js:106 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:57 msgid "Delete" msgstr "ลบ" @@ -67,7 +67,7 @@ msgstr "แทนที่" #: js/filelist.js:186 msgid "suggest name" -msgstr "" +msgstr "แนะนำชื่อ" #: js/filelist.js:186 js/filelist.js:188 msgid "cancel" @@ -77,7 +77,7 @@ msgstr "ยกเลิก" msgid "replaced" msgstr "แทนที่แล้ว" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:266 msgid "undo" msgstr "เลิกทำ" @@ -85,7 +85,7 @@ msgstr "เลิกทำ" msgid "with" msgstr "กับ" -#: js/filelist.js:271 +#: js/filelist.js:266 msgid "deleted" msgstr "ลบแล้ว" @@ -118,11 +118,11 @@ msgstr "การอัพโหลดไฟล์กำลังอยู่ใ msgid "Invalid name, '/' is not allowed." msgstr "ชื่อที่ใช้ไม่ถูกต้อง '/' ไม่อนุญาตให้ใช้งาน" -#: js/files.js:746 templates/index.php:55 +#: js/files.js:746 templates/index.php:56 msgid "Size" msgstr "ขนาด" -#: js/files.js:747 templates/index.php:56 +#: js/files.js:747 templates/index.php:57 msgid "Modified" msgstr "ปรับปรุงล่าสุด" @@ -198,36 +198,36 @@ msgstr "อัพโหลด" msgid "Cancel upload" msgstr "ยกเลิกการอัพโหลด" -#: templates/index.php:39 +#: templates/index.php:40 msgid "Nothing in here. Upload something!" msgstr "ยังไม่มีไฟล์ใดๆอยู่ที่นี่ กรุณาอัพโหลดไฟล์!" -#: templates/index.php:47 +#: templates/index.php:48 msgid "Name" msgstr "ชื่อ" -#: templates/index.php:49 +#: templates/index.php:50 msgid "Share" msgstr "แชร์" -#: templates/index.php:51 +#: templates/index.php:52 msgid "Download" msgstr "ดาวน์โหลด" -#: templates/index.php:64 +#: templates/index.php:65 msgid "Upload too large" msgstr "ไฟล์ที่อัพโหลดมีขนาดใหญ่เกินไป" -#: templates/index.php:66 +#: templates/index.php:67 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ไฟล์ที่คุณพยายามที่จะอัพโหลดมีขนาดเกินกว่าขนาดสูงสุดที่กำหนดไว้ให้อัพโหลดได้สำหรับเซิร์ฟเวอร์นี้" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Files are being scanned, please wait." msgstr "ไฟล์กำลังอยู่ระหว่างการสแกน, กรุณารอสักครู่." -#: templates/index.php:74 +#: templates/index.php:75 msgid "Current scanning" msgstr "ไฟล์ที่กำลังสแกนอยู่ขณะนี้" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 57d881dcff1..5ecd449a620 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# <appweb.cn@gmail.com>, 2012. # Phoenix Nemo <>, 2012. # <wengxt@gmail.com>, 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 07:30+0000\n" +"Last-Translator: hanfeng <appweb.cn@gmail.com>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -227,7 +228,7 @@ msgstr "数据库名" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "数据库表空间" #: templates/installation.php:115 msgid "Database host" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 3b55dd63418..585310a4089 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:01+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 07:31+0000\n" +"Last-Translator: hanfeng <appweb.cn@gmail.com>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -54,7 +54,7 @@ msgstr "写入磁盘失败" msgid "Files" msgstr "文件" -#: js/fileactions.js:106 templates/index.php:56 +#: js/fileactions.js:106 templates/index.php:57 msgid "Delete" msgstr "删除" @@ -68,7 +68,7 @@ msgstr "替换" #: js/filelist.js:186 msgid "suggest name" -msgstr "" +msgstr "建议名称" #: js/filelist.js:186 js/filelist.js:188 msgid "cancel" @@ -78,7 +78,7 @@ msgstr "取消" msgid "replaced" msgstr "已经替换" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:271 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:266 msgid "undo" msgstr "撤销" @@ -86,7 +86,7 @@ msgstr "撤销" msgid "with" msgstr "随着" -#: js/filelist.js:271 +#: js/filelist.js:266 msgid "deleted" msgstr "已经删除" @@ -113,17 +113,17 @@ msgstr "上传已取消" #: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "文件正在上传中。现在离开此页会导致上传动作被取消。" #: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "非法的名称,不允许使用‘/’。" -#: js/files.js:746 templates/index.php:55 +#: js/files.js:746 templates/index.php:56 msgid "Size" msgstr "大小" -#: js/files.js:747 templates/index.php:56 +#: js/files.js:747 templates/index.php:57 msgid "Modified" msgstr "修改日期" @@ -173,7 +173,7 @@ msgstr "ZIP 文件的最大输入大小" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "保存" #: templates/index.php:7 msgid "New" @@ -199,36 +199,36 @@ msgstr "上传" msgid "Cancel upload" msgstr "取消上传" -#: templates/index.php:39 +#: templates/index.php:40 msgid "Nothing in here. Upload something!" msgstr "这里还什么都没有。上传些东西吧!" -#: templates/index.php:47 +#: templates/index.php:48 msgid "Name" msgstr "名称" -#: templates/index.php:49 +#: templates/index.php:50 msgid "Share" msgstr "共享" -#: templates/index.php:51 +#: templates/index.php:52 msgid "Download" msgstr "下载" -#: templates/index.php:64 +#: templates/index.php:65 msgid "Upload too large" msgstr "上传文件过大" -#: templates/index.php:66 +#: templates/index.php:67 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "您正尝试上传的文件超过了此服务器可以上传的最大大小" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Files are being scanned, please wait." msgstr "文件正在被扫描,请稍候。" -#: templates/index.php:74 +#: templates/index.php:75 msgid "Current scanning" msgstr "当前扫描" diff --git a/l10n/zh_CN/files_encryption.po b/l10n/zh_CN/files_encryption.po index 19d9d60f7df..7e030749cf6 100644 --- a/l10n/zh_CN/files_encryption.po +++ b/l10n/zh_CN/files_encryption.po @@ -3,23 +3,24 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# <appweb.cn@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 15:39+0000\n" +"Last-Translator: hanfeng <appweb.cn@gmail.com>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: templates/settings.php:3 msgid "Encryption" -msgstr "" +msgstr "加密" #: templates/settings.php:4 msgid "Exclude the following file types from encryption" @@ -27,8 +28,8 @@ msgstr "" #: templates/settings.php:5 msgid "None" -msgstr "" +msgstr "None" #: templates/settings.php:10 msgid "Enable Encryption" -msgstr "" +msgstr "开启加密" diff --git a/l10n/zh_CN/files_versions.po b/l10n/zh_CN/files_versions.po index 31e3aedf8af..8fc46b74985 100644 --- a/l10n/zh_CN/files_versions.po +++ b/l10n/zh_CN/files_versions.po @@ -3,32 +3,33 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# <appweb.cn@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 13:03+0000\n" +"Last-Translator: hanfeng <appweb.cn@gmail.com>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" -msgstr "" +msgstr "过期所有版本" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "版本" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "将会删除您的文件的所有备份版本" #: templates/settings.php:3 msgid "Enable Files Versioning" -msgstr "" +msgstr "开启文件版本" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index 7bb4a2e7860..ff9847c8289 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -3,20 +3,21 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# <appweb.cn@gmail.com>, 2012. # <rainofchaos@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 07:33+0000\n" +"Last-Translator: hanfeng <appweb.cn@gmail.com>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: app.php:288 msgid "Help" @@ -70,57 +71,57 @@ msgstr "认证错误" msgid "Token expired. Please reload page." msgstr "Token 过期,请刷新页面。" -#: template.php:86 +#: template.php:87 msgid "seconds ago" msgstr "几秒前" -#: template.php:87 +#: template.php:88 msgid "1 minute ago" msgstr "1分钟前" -#: template.php:88 +#: template.php:89 #, php-format msgid "%d minutes ago" msgstr "%d 分钟前" -#: template.php:91 +#: template.php:92 msgid "today" msgstr "今天" -#: template.php:92 +#: template.php:93 msgid "yesterday" msgstr "昨天" -#: template.php:93 +#: template.php:94 #, php-format msgid "%d days ago" msgstr "%d 天前" -#: template.php:94 +#: template.php:95 msgid "last month" msgstr "上月" -#: template.php:95 +#: template.php:96 msgid "months ago" msgstr "几月前" -#: template.php:96 +#: template.php:97 msgid "last year" msgstr "上年" -#: template.php:97 +#: template.php:98 msgid "years ago" msgstr "几年前" #: updater.php:66 #, php-format msgid "%s is available. Get <a href=\"%s\">more information</a>" -msgstr "" +msgstr "%s 已存在. 点此 <a href=\"%s\">获取更多信息</a>" #: updater.php:68 msgid "up to date" -msgstr "" +msgstr "已更新。" #: updater.php:71 msgid "updates check is disabled" -msgstr "" +msgstr "检查更新功能被关闭。" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 8af73f8879a..c72ea361e02 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-09-07 02:04+0200\n" +"PO-Revision-Date: 2012-09-06 08:01+0000\n" +"Last-Translator: hanfeng <appweb.cn@gmail.com>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,11 +32,11 @@ msgstr "认证错误" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "已存在组" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "不能添加组" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -56,11 +56,11 @@ msgstr "非法请求" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "不能删除组" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "不能删除用户" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -69,12 +69,12 @@ msgstr "语言已修改" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "不能把用户添加到组 %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "不能从组%s中移除用户" #: js/apps.js:18 msgid "Error" @@ -107,7 +107,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "您的数据文件夹和文件可由互联网访问。OwnCloud提供的.htaccess文件未生效。我们强烈建议您配置服务器,以使数据文件夹不可被访问,或者将数据文件夹移到web服务器以外。" #: templates/admin.php:31 msgid "Cron" @@ -127,39 +127,39 @@ msgstr "实现系统 cron 服务" #: templates/admin.php:41 msgid "Share API" -msgstr "" +msgstr "共享API" #: templates/admin.php:46 msgid "Enable Share API" -msgstr "" +msgstr "开启共享API" #: templates/admin.php:47 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "允许 应用 使用共享API" #: templates/admin.php:51 msgid "Allow links" -msgstr "" +msgstr "允许连接" #: templates/admin.php:52 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "允许用户使用连接向公众共享" #: templates/admin.php:56 msgid "Allow resharing" -msgstr "" +msgstr "允许再次共享" #: templates/admin.php:57 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "允许用户将共享给他们的项目再次共享" #: templates/admin.php:60 msgid "Allow users to share with anyone" -msgstr "" +msgstr "允许用户向任何人共享" #: templates/admin.php:62 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "允许用户只向同组用户共享" #: templates/admin.php:69 msgid "Log" @@ -177,7 +177,7 @@ msgid "" "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>." -msgstr "" +msgstr "由<a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud社区</a>开发, <a href=\"https://github.com/owncloud\" target=\"_blank\">源代码</a>在<a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>许可证下发布。" #: templates/apps.php:10 msgid "Add your App" @@ -193,7 +193,7 @@ msgstr "查看在 app.owncloud.com 的应用程序页面" #: templates/apps.php:30 msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" -msgstr "" +msgstr "<span class=\"licence\"></span>-核准: <span class=\"author\"></span>" #: templates/help.php:9 msgid "Documentation" diff --git a/lib/l10n/zh_CN.php b/lib/l10n/zh_CN.php index 2d05ad3567e..8229c77d2dd 100644 --- a/lib/l10n/zh_CN.php +++ b/lib/l10n/zh_CN.php @@ -21,5 +21,8 @@ "last month" => "上月", "months ago" => "几月前", "last year" => "上年", -"years ago" => "几年前" +"years ago" => "几年前", +"%s is available. Get <a href=\"%s\">more information</a>" => "%s 已存在. 点此 <a href=\"%s\">获取更多信息</a>", +"up to date" => "已更新。", +"updates check is disabled" => "检查更新功能被关闭。" ); diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 524d6c79257..062e9a97342 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -46,7 +46,7 @@ "Go there manually." => "Vés-hi manualment.", "Answer" => "Resposta", "You use" => "Esteu usant", -"of the available" => "del disponible", +"of the available" => "d'un total disponible de", "Desktop and Mobile Syncing Clients" => "Clients de sincronització d'escriptori i de mòbil", "Download" => "Baixada", "Your password got changed" => "La contrasenya ha canviat", diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php index 0667cee74bb..7927cec61c7 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -1,26 +1,44 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "无法从应用商店载入列表", "Authentication error" => "认证错误", +"Group already exists" => "已存在组", +"Unable to add group" => "不能添加组", "Email saved" => "电子邮件已保存", "Invalid email" => "无效的电子邮件", "OpenID Changed" => "OpenID 已修改", "Invalid request" => "非法请求", +"Unable to delete group" => "不能删除组", +"Unable to delete user" => "不能删除用户", "Language changed" => "语言已修改", +"Unable to add user to group %s" => "不能把用户添加到组 %s", +"Unable to remove user from group %s" => "不能从组%s中移除用户", "Error" => "错误", "Disable" => "禁用", "Enable" => "启用", "Saving..." => "正在保存", "__language_name__" => "简体中文", "Security Warning" => "安全警告", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "您的数据文件夹和文件可由互联网访问。OwnCloud提供的.htaccess文件未生效。我们强烈建议您配置服务器,以使数据文件夹不可被访问,或者将数据文件夹移到web服务器以外。", "Cron" => "计划任务", "execute one task with each page loaded" => "为每个装入的页面执行任务", "cron.php is registered at a webcron service" => "crop.php 已", "use systems cron service" => "实现系统 cron 服务", +"Share API" => "共享API", +"Enable Share API" => "开启共享API", +"Allow apps to use the Share API" => "允许 应用 使用共享API", +"Allow links" => "允许连接", +"Allow users to share items to the public with links" => "允许用户使用连接向公众共享", +"Allow resharing" => "允许再次共享", +"Allow users to share items shared with them again" => "允许用户将共享给他们的项目再次共享", +"Allow users to share with anyone" => "允许用户向任何人共享", +"Allow users to only share with users in their groups" => "允许用户只向同组用户共享", "Log" => "日志", "More" => "更多", +"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>." => "由<a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud社区</a>开发, <a href=\"https://github.com/owncloud\" target=\"_blank\">源代码</a>在<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" => "添加应用", "Select an App" => "选择一个应用", "See application page at apps.owncloud.com" => "查看在 app.owncloud.com 的应用程序页面", +"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-核准: <span class=\"author\"></span>", "Documentation" => "文档", "Managing Big Files" => "管理大文件", "Ask a question" => "提问", -- cgit v1.2.3 From 3829460ab8cbb6de65c53583a20fd04cbe7927dd Mon Sep 17 00:00:00 2001 From: Thomas Mueller <thomas.mueller@tmit.eu> Date: Fri, 7 Sep 2012 15:22:01 +0200 Subject: adding space between) and { --- apps/files/admin.php | 2 +- apps/files/ajax/list.php | 4 +- apps/files/ajax/upload.php | 4 +- apps/files/appinfo/filesync.php | 6 +- apps/files/appinfo/update.php | 2 +- apps/files/download.php | 2 +- apps/files/index.php | 12 +- apps/files/settings.php | 6 +- apps/files_encryption/appinfo/app.php | 2 +- apps/files_encryption/lib/crypt.php | 28 ++--- apps/files_encryption/lib/cryptstream.php | 54 ++++----- apps/files_encryption/lib/proxy.php | 44 +++---- apps/files_encryption/templates/settings.php | 2 +- apps/files_encryption/tests/encryption.php | 4 +- apps/files_encryption/tests/proxy.php | 12 +- apps/files_encryption/tests/stream.php | 10 +- apps/files_external/lib/ftp.php | 20 +-- apps/files_external/lib/smb.php | 34 +++--- apps/files_external/lib/streamwrapper.php | 34 +++--- apps/files_external/lib/swift.php | 170 +++++++++++++------------- apps/files_external/lib/webdav.php | 88 +++++++------- apps/files_external/tests/ftp.php | 6 +- apps/files_external/tests/google.php | 6 +- apps/files_external/tests/smb.php | 6 +- apps/files_external/tests/swift.php | 6 +- apps/files_external/tests/webdav.php | 6 +- apps/files_sharing/lib/sharedstorage.php | 2 +- apps/files_versions/ajax/expireAll.php | 2 +- apps/files_versions/ajax/rollbackVersion.php | 2 +- apps/files_versions/lib/hooks.php | 4 +- apps/files_versions/lib/versions.php | 8 +- apps/user_ldap/appinfo/install.php | 2 +- apps/user_ldap/appinfo/update.php | 2 +- apps/user_ldap/group_ldap.php | 2 +- apps/user_ldap/settings.php | 6 +- apps/user_ldap/tests/group_ldap.php | 4 +- apps/user_ldap/user_ldap.php | 10 +- apps/user_webdavauth/settings.php | 4 +- apps/user_webdavauth/user_webdavauth.php | 6 +- core/ajax/appconfig.php | 2 +- core/minimizer.php | 4 +- core/templates/403.php | 2 +- core/templates/404.php | 2 +- core/templates/exception.php | 2 +- core/templates/layout.guest.php | 2 +- core/templates/layout.user.php | 6 +- cron.php | 2 +- lib/MDB2/Driver/Datatype/sqlite3.php | 2 +- lib/MDB2/Driver/Manager/sqlite3.php | 2 +- lib/MDB2/Driver/sqlite3.php | 28 ++--- lib/app.php | 82 ++++++------- lib/appconfig.php | 30 ++--- lib/archive.php | 16 +-- lib/archive/tar.php | 100 +++++++-------- lib/archive/zip.php | 58 ++++----- lib/backgroundjob/queuedtask.php | 14 +-- lib/backgroundjob/regulartask.php | 4 +- lib/backgroundjob/worker.php | 20 +-- lib/base.php | 8 +- lib/cache/apc.php | 2 +- lib/cache/broker.php | 2 +- lib/cache/file.php | 12 +- lib/cache/fileglobal.php | 10 +- lib/cache/xcache.php | 4 +- lib/config.php | 12 +- lib/connector/sabre/auth.php | 4 +- lib/connector/sabre/directory.php | 2 +- lib/connector/sabre/locks.php | 2 +- lib/connector/sabre/node.php | 8 +- lib/connector/sabre/principal.php | 4 +- lib/db.php | 60 ++++----- lib/eventsource.php | 16 +-- lib/filecache.php | 128 ++++++++++---------- lib/filecache/cached.php | 18 +-- lib/filecache/update.php | 62 +++++----- lib/fileproxy.php | 32 ++--- lib/fileproxy/quota.php | 24 ++-- lib/files.php | 84 ++++++------- lib/filestorage/common.php | 62 +++++----- lib/filestorage/commontest.php | 26 ++-- lib/filestorage/local.php | 96 +++++++-------- lib/filestorage/temporary.php | 6 +- lib/filesystem.php | 156 ++++++++++++------------ lib/filesystemview.php | 22 ++-- lib/geo.php | 4 +- lib/group.php | 62 +++++----- lib/group/backend.php | 12 +- lib/group/database.php | 18 +-- lib/group/dummy.php | 32 ++--- lib/helper.php | 112 ++++++++--------- lib/hook.php | 20 +-- lib/image.php | 10 +- lib/installer.php | 92 +++++++------- lib/json.php | 34 +++--- lib/l10n.php | 70 +++++------ lib/l10n/string.php | 6 +- lib/log/owncloud.php | 4 +- lib/mail.php | 4 +- lib/migrate.php | 174 +++++++++++++-------------- lib/migration/content.php | 42 +++---- lib/migration/provider.php | 8 +- lib/minimizer.php | 2 +- lib/minimizer/css.php | 2 +- lib/minimizer/js.php | 2 +- lib/ocs.php | 66 +++++----- lib/ocsclient.php | 34 +++--- lib/preferences.php | 28 ++--- lib/public/app.php | 18 +-- lib/public/backgroundjob.php | 14 +-- lib/public/config.php | 12 +- lib/public/db.php | 10 +- lib/public/files.php | 12 +- lib/public/json.php | 16 +-- lib/public/template.php | 6 +- lib/public/user.php | 14 +-- lib/public/util.php | 30 ++--- lib/request.php | 4 +- lib/search.php | 14 +-- lib/search/provider.php | 2 +- lib/search/provider/file.php | 10 +- lib/search/result.php | 2 +- lib/setup.php | 10 +- lib/streamwrappers.php | 40 +++--- lib/subadmin.php | 40 +++--- lib/template.php | 80 ++++++------ lib/templatelayout.php | 18 +-- lib/updater.php | 10 +- lib/user.php | 104 ++++++++-------- lib/user/backend.php | 12 +- lib/user/database.php | 30 ++--- lib/user/dummy.php | 18 +-- lib/user/http.php | 18 +-- lib/util.php | 116 +++++++++--------- lib/vcategories.php | 4 +- lib/vobject.php | 64 +++++----- search/ajax/search.php | 2 +- search/index.php | 2 +- settings/admin.php | 4 +- settings/ajax/apps/ocs.php | 4 +- settings/ajax/createuser.php | 4 +- settings/ajax/togglesubadmins.php | 2 +- settings/apps.php | 2 +- settings/personal.php | 6 +- settings/settings.php | 2 +- settings/templates/admin.php | 8 +- settings/templates/personal.php | 2 +- settings/templates/settings.php | 2 +- settings/users.php | 6 +- tests/index.php | 28 ++--- tests/lib/archive.php | 24 ++-- tests/lib/archive/tar.php | 6 +- tests/lib/archive/zip.php | 6 +- tests/lib/cache.php | 8 +- tests/lib/cache/apc.php | 4 +- tests/lib/cache/file.php | 6 +- tests/lib/cache/xcache.php | 4 +- tests/lib/filestorage.php | 28 ++--- tests/lib/filestorage/commontest.php | 6 +- tests/lib/filestorage/local.php | 4 +- tests/lib/filesystem.php | 14 +-- tests/lib/group.php | 6 +- tests/lib/group/backend.php | 8 +- tests/lib/group/database.php | 10 +- tests/lib/group/dummy.php | 2 +- tests/lib/streamwrappers.php | 12 +- tests/lib/user/backend.php | 6 +- tests/lib/user/database.php | 8 +- tests/lib/user/dummy.php | 2 +- 168 files changed, 1834 insertions(+), 1834 deletions(-) (limited to 'core') diff --git a/apps/files/admin.php b/apps/files/admin.php index b49c0f61a0c..a8f2deffc92 100644 --- a/apps/files/admin.php +++ b/apps/files/admin.php @@ -33,7 +33,7 @@ $upload_max_filesize = OCP\Util::computerFileSize(ini_get('upload_max_filesize') $post_max_size = OCP\Util::computerFileSize(ini_get('post_max_size')); $maxUploadFilesize = OCP\Util::humanFileSize(min($upload_max_filesize, $post_max_size)); if($_POST) { - if(isset($_POST['maxUploadSize'])){ + if(isset($_POST['maxUploadSize'])) { if(($setMaxSize = OC_Files::setUploadLimit(OCP\Util::computerFileSize($_POST['maxUploadSize']))) !== false) { $maxUploadFilesize = OCP\Util::humanFileSize($setMaxSize); } diff --git a/apps/files/ajax/list.php b/apps/files/ajax/list.php index 2254526231e..568fe754c02 100644 --- a/apps/files/ajax/list.php +++ b/apps/files/ajax/list.php @@ -17,7 +17,7 @@ $data = array(); if($doBreadcrumb) { $breadcrumb = array(); $pathtohere = "/"; - foreach( explode( "/", $dir ) as $i ){ + foreach( explode( "/", $dir ) as $i ) { if( $i != "" ) { $pathtohere .= "$i/"; $breadcrumb[] = array( "dir" => $pathtohere, "name" => $i ); @@ -32,7 +32,7 @@ if($doBreadcrumb) { // make filelist $files = array(); -foreach( OC_Files::getdirectorycontent( $dir ) as $i ){ +foreach( OC_Files::getdirectorycontent( $dir ) as $i ) { $i["date"] = OCP\Util::formatDate($i["mtime"] ); $files[] = $i; } diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index 813a6c67b5c..7709becc6a8 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -35,7 +35,7 @@ $dir = $_POST['dir']; $error=''; $totalSize=0; -foreach($files['size'] as $size){ +foreach($files['size'] as $size) { $totalSize+=$size; } if($totalSize>OC_Filesystem::free_space('/')) { @@ -46,7 +46,7 @@ if($totalSize>OC_Filesystem::free_space('/')) { $result=array(); if(strpos($dir, '..') === false) { $fileCount=count($files['name']); - for($i=0;$i<$fileCount;$i++){ + for($i=0;$i<$fileCount;$i++) { $target = OCP\Files::buildNotExistingFileName(stripslashes($dir), $files['name'][$i]); if(is_uploaded_file($files['tmp_name'][$i]) and OC_Filesystem::fromTmpFile($files['tmp_name'][$i], $target)) { $meta=OC_FileCache_Cached::get($target); diff --git a/apps/files/appinfo/filesync.php b/apps/files/appinfo/filesync.php index 707ee2435c0..c1fe444cec7 100644 --- a/apps/files/appinfo/filesync.php +++ b/apps/files/appinfo/filesync.php @@ -23,14 +23,14 @@ // only need filesystem apps $RUNTIME_APPTYPES=array('filesystem','authentication'); OC_App::loadApps($RUNTIME_APPTYPES); -if(!OC_User::isLoggedIn()){ - if(!isset($_SERVER['PHP_AUTH_USER'])){ +if(!OC_User::isLoggedIn()) { + if(!isset($_SERVER['PHP_AUTH_USER'])) { header('WWW-Authenticate: Basic realm="ownCloud Server"'); header('HTTP/1.0 401 Unauthorized'); echo 'Valid credentials must be supplied'; exit(); } else { - if(!OC_User::login($_SERVER["PHP_AUTH_USER"], $_SERVER["PHP_AUTH_PW"])){ + if(!OC_User::login($_SERVER["PHP_AUTH_USER"], $_SERVER["PHP_AUTH_PW"])) { exit(); } } diff --git a/apps/files/appinfo/update.php b/apps/files/appinfo/update.php index 32ac89f0061..35008e345b9 100644 --- a/apps/files/appinfo/update.php +++ b/apps/files/appinfo/update.php @@ -5,7 +5,7 @@ $installedVersion=OCP\Config::getAppValue('files', 'installed_version'); if (version_compare($installedVersion, '1.1.4', '<')) { $query = OC_DB::prepare( "SELECT `propertyname`, `propertypath`, `userid` FROM `*PREFIX*properties`" ); $result = $query->execute(); - while( $row = $result->fetchRow()){ + while( $row = $result->fetchRow()) { $query = OC_DB::prepare( 'UPDATE `*PREFIX*properties` SET `propertyname` = ? WHERE `userid` = ? AND `propertypath` = ?' ); $query->execute( array( preg_replace("/^{.*}/", "", $row["propertyname"]),$row["userid"], $row["propertypath"] )); } diff --git a/apps/files/download.php b/apps/files/download.php index 44a328e25db..ff6aefbbe0f 100644 --- a/apps/files/download.php +++ b/apps/files/download.php @@ -29,7 +29,7 @@ OCP\User::checkLoggedIn(); $filename = $_GET["file"]; -if(!OC_Filesystem::file_exists($filename)){ +if(!OC_Filesystem::file_exists($filename)) { header("HTTP/1.0 404 Not Found"); $tmpl = new OCP\Template( '', '404', 'guest' ); $tmpl->assign('file',$filename); diff --git a/apps/files/index.php b/apps/files/index.php index ba785f7d6bc..493087d26f1 100644 --- a/apps/files/index.php +++ b/apps/files/index.php @@ -31,7 +31,7 @@ OCP\Util::addscript( 'files', 'jquery.fileupload' ); OCP\Util::addscript( 'files', 'files' ); OCP\Util::addscript( 'files', 'filelist' ); OCP\Util::addscript( 'files', 'fileactions' ); -if(!isset($_SESSION['timezone'])){ +if(!isset($_SESSION['timezone'])) { OCP\Util::addscript( 'files', 'timezone' ); } OCP\App::setActiveNavigationEntry( 'files_index' ); @@ -44,9 +44,9 @@ if(!OC_Filesystem::is_dir($dir.'/')) { } $files = array(); -foreach( OC_Files::getdirectorycontent( $dir ) as $i ){ +foreach( OC_Files::getdirectorycontent( $dir ) as $i ) { $i['date'] = OCP\Util::formatDate($i['mtime'] ); - if($i['type']=='file'){ + if($i['type']=='file') { $fileinfo=pathinfo($i['name']); $i['basename']=$fileinfo['filename']; if (!empty($fileinfo['extension'])) { @@ -56,7 +56,7 @@ foreach( OC_Files::getdirectorycontent( $dir ) as $i ){ $i['extension']=''; } } - if($i['directory']=='/'){ + if($i['directory']=='/') { $i['directory']=''; } $files[] = $i; @@ -65,8 +65,8 @@ foreach( OC_Files::getdirectorycontent( $dir ) as $i ){ // Make breadcrumb $breadcrumb = array(); $pathtohere = ''; -foreach( explode( '/', $dir ) as $i ){ - if( $i != '' ){ +foreach( explode( '/', $dir ) as $i ) { + if( $i != '' ) { $pathtohere .= '/'.str_replace('+','%20', urlencode($i)); $breadcrumb[] = array( 'dir' => $pathtohere, 'name' => $i ); } diff --git a/apps/files/settings.php b/apps/files/settings.php index b02c3738c6e..52ec9fd0fe3 100644 --- a/apps/files/settings.php +++ b/apps/files/settings.php @@ -36,7 +36,7 @@ OCP\Util::addscript( "files", "files" ); $dir = isset( $_GET['dir'] ) ? $_GET['dir'] : ''; $files = array(); -foreach( OC_Files::getdirectorycontent( $dir ) as $i ){ +foreach( OC_Files::getdirectorycontent( $dir ) as $i ) { $i["date"] = date( $CONFIG_DATEFORMAT, $i["mtime"] ); $files[] = $i; } @@ -44,8 +44,8 @@ foreach( OC_Files::getdirectorycontent( $dir ) as $i ){ // Make breadcrumb $breadcrumb = array(); $pathtohere = "/"; -foreach( explode( "/", $dir ) as $i ){ - if( $i != "" ){ +foreach( explode( "/", $dir ) as $i ) { + if( $i != "" ) { $pathtohere .= "$i/"; $breadcrumb[] = array( "dir" => $pathtohere, "name" => $i ); } diff --git a/apps/files_encryption/appinfo/app.php b/apps/files_encryption/appinfo/app.php index 679d0b95edc..bb130a366be 100644 --- a/apps/files_encryption/appinfo/app.php +++ b/apps/files_encryption/appinfo/app.php @@ -10,7 +10,7 @@ OCP\Util::connectHook('OC_User','post_login','OC_Crypt','loginListener'); stream_wrapper_register('crypt','OC_CryptStream'); -if(!isset($_SESSION['enckey']) and OCP\User::isLoggedIn()){//force the user to re-loggin if the encryption key isn't unlocked (happens when a user is logged in before the encryption app is enabled) +if(!isset($_SESSION['enckey']) and OCP\User::isLoggedIn()) {//force the user to re-loggin if the encryption key isn't unlocked (happens when a user is logged in before the encryption app is enabled) OCP\User::logout(); header("Location: ".OC::$WEBROOT.'/'); exit(); diff --git a/apps/files_encryption/lib/crypt.php b/apps/files_encryption/lib/crypt.php index ebc09e78961..38d8edf28c3 100644 --- a/apps/files_encryption/lib/crypt.php +++ b/apps/files_encryption/lib/crypt.php @@ -39,18 +39,18 @@ require_once 'Crypt_Blowfish/Blowfish.php'; class OC_Crypt { static private $bf = null; - public static function loginListener($params){ + public static function loginListener($params) { self::init($params['uid'],$params['password']); } public static function init($login,$password) { $view=new OC_FilesystemView('/'); - if(!$view->file_exists('/'.$login)){ + if(!$view->file_exists('/'.$login)) { $view->mkdir('/'.$login); } OC_FileProxy::$enabled=false; - if(!$view->file_exists('/'.$login.'/encryption.key')){// does key exist? + if(!$view->file_exists('/'.$login.'/encryption.key')) {// does key exist? OC_Crypt::createkey($login,$password); } $key=$view->file_get_contents('/'.$login.'/encryption.key'); @@ -66,14 +66,14 @@ class OC_Crypt { * * if the key is left out, the default handeler will be used */ - public static function getBlowfish($key=''){ - if($key){ + public static function getBlowfish($key='') { + if($key) { return new Crypt_Blowfish($key); }else{ - if(!isset($_SESSION['enckey'])){ + if(!isset($_SESSION['enckey'])) { return false; } - if(!self::$bf){ + if(!self::$bf) { self::$bf=new Crypt_Blowfish($_SESSION['enckey']); } return self::$bf; @@ -96,7 +96,7 @@ class OC_Crypt { } public static function changekeypasscode($oldPassword, $newPassword) { - if(OCP\User::isLoggedIn()){ + if(OCP\User::isLoggedIn()) { $username=OCP\USER::getUser(); $view=new OC_FilesystemView('/'.$username); @@ -179,7 +179,7 @@ class OC_Crypt { while (!feof($handleread)) { $content = fread($handleread, 8192); $enccontent=OC_CRYPT::decrypt( $content, $key); - if(feof($handleread)){ + if(feof($handleread)) { $enccontent=rtrim($enccontent, "\0"); } fwrite($handlewrite, $enccontent); @@ -192,9 +192,9 @@ class OC_Crypt { /** * encrypt data in 8192b sized blocks */ - public static function blockEncrypt($data, $key=''){ + public static function blockEncrypt($data, $key='') { $result=''; - while(strlen($data)){ + while(strlen($data)) { $result.=self::encrypt(substr($data,0,8192),$key); $data=substr($data,8192); } @@ -204,13 +204,13 @@ class OC_Crypt { /** * decrypt data in 8192b sized blocks */ - public static function blockDecrypt($data, $key='',$maxLength=0){ + public static function blockDecrypt($data, $key='',$maxLength=0) { $result=''; - while(strlen($data)){ + while(strlen($data)) { $result.=self::decrypt(substr($data,0,8192),$key); $data=substr($data,8192); } - if($maxLength>0){ + if($maxLength>0) { return substr($result,0,$maxLength); }else{ return rtrim($result, "\0"); diff --git a/apps/files_encryption/lib/cryptstream.php b/apps/files_encryption/lib/cryptstream.php index 75ad62659d7..721a1b955df 100644 --- a/apps/files_encryption/lib/cryptstream.php +++ b/apps/files_encryption/lib/cryptstream.php @@ -36,18 +36,18 @@ class OC_CryptStream{ private $size; private static $rootView; - public function stream_open($path, $mode, $options, &$opened_path){ - if(!self::$rootView){ + public function stream_open($path, $mode, $options, &$opened_path) { + if(!self::$rootView) { self::$rootView=new OC_FilesystemView(''); } $path=str_replace('crypt://','',$path); - if(dirname($path)=='streams' and isset(self::$sourceStreams[basename($path)])){ + if(dirname($path)=='streams' and isset(self::$sourceStreams[basename($path)])) { $this->source=self::$sourceStreams[basename($path)]['stream']; $this->path=self::$sourceStreams[basename($path)]['path']; $this->size=self::$sourceStreams[basename($path)]['size']; }else{ $this->path=$path; - if($mode=='w' or $mode=='w+' or $mode=='wb' or $mode=='wb+'){ + if($mode=='w' or $mode=='w+' or $mode=='wb' or $mode=='wb+') { $this->size=0; }else{ $this->size=self::$rootView->filesize($path,$mode); @@ -55,55 +55,55 @@ class OC_CryptStream{ OC_FileProxy::$enabled=false;//disable fileproxies so we can open the source file $this->source=self::$rootView->fopen($path,$mode); OC_FileProxy::$enabled=true; - if(!is_resource($this->source)){ + if(!is_resource($this->source)) { OCP\Util::writeLog('files_encryption','failed to open '.$path,OCP\Util::ERROR); } } - if(is_resource($this->source)){ + if(is_resource($this->source)) { $this->meta=stream_get_meta_data($this->source); } return is_resource($this->source); } - public function stream_seek($offset, $whence=SEEK_SET){ + public function stream_seek($offset, $whence=SEEK_SET) { $this->flush(); fseek($this->source,$offset,$whence); } - public function stream_tell(){ + public function stream_tell() { return ftell($this->source); } - public function stream_read($count){ + public function stream_read($count) { //$count will always be 8192 https://bugs.php.net/bug.php?id=21641 //This makes this function a lot simpler but will breake everything the moment it's fixed $this->writeCache=''; - if($count!=8192){ + if($count!=8192) { OCP\Util::writeLog('files_encryption','php bug 21641 no longer holds, decryption will not work',OCP\Util::FATAL); die(); } $pos=ftell($this->source); $data=fread($this->source,8192); - if(strlen($data)){ + if(strlen($data)) { $result=OC_Crypt::decrypt($data); }else{ $result=''; } $length=$this->size-$pos; - if($length<8192){ + if($length<8192) { $result=substr($result,0,$length); } return $result; } - public function stream_write($data){ + public function stream_write($data) { $length=strlen($data); $currentPos=ftell($this->source); - if($this->writeCache){ + if($this->writeCache) { $data=$this->writeCache.$data; $this->writeCache=''; } - if($currentPos%8192!=0){ + if($currentPos%8192!=0) { //make sure we always start on a block start fseek($this->source,-($currentPos%8192),SEEK_CUR); $encryptedBlock=fread($this->source,8192); @@ -113,8 +113,8 @@ class OC_CryptStream{ fseek($this->source,-($currentPos%8192),SEEK_CUR); } $currentPos=ftell($this->source); - while($remainingLength=strlen($data)>0){ - if($remainingLength<8192){ + while($remainingLength=strlen($data)>0) { + if($remainingLength<8192) { $this->writeCache=$data; $data=''; }else{ @@ -127,8 +127,8 @@ class OC_CryptStream{ return $length; } - public function stream_set_option($option,$arg1,$arg2){ - switch($option){ + public function stream_set_option($option,$arg1,$arg2) { + switch($option) { case STREAM_OPTION_BLOCKING: stream_set_blocking($this->source,$arg1); break; @@ -140,33 +140,33 @@ class OC_CryptStream{ } } - public function stream_stat(){ + public function stream_stat() { return fstat($this->source); } - public function stream_lock($mode){ + public function stream_lock($mode) { flock($this->source,$mode); } - public function stream_flush(){ + public function stream_flush() { return fflush($this->source); } - public function stream_eof(){ + public function stream_eof() { return feof($this->source); } - private function flush(){ - if($this->writeCache){ + private function flush() { + if($this->writeCache) { $encrypted=OC_Crypt::encrypt($this->writeCache); fwrite($this->source,$encrypted); $this->writeCache=''; } } - public function stream_close(){ + public function stream_close() { $this->flush(); - if($this->meta['mode']!='r' and $this->meta['mode']!='rb'){ + if($this->meta['mode']!='r' and $this->meta['mode']!='rb') { OC_FileCache::put($this->path,array('encrypted'=>true,'size'=>$this->size),''); } return fclose($this->source); diff --git a/apps/files_encryption/lib/proxy.php b/apps/files_encryption/lib/proxy.php index 247924b2aaf..f61cd1e3773 100644 --- a/apps/files_encryption/lib/proxy.php +++ b/apps/files_encryption/lib/proxy.php @@ -34,21 +34,21 @@ class OC_FileProxy_Encryption extends OC_FileProxy{ * @param string $path * @return bool */ - private static function shouldEncrypt($path){ - if(is_null(self::$enableEncryption)){ + private static function shouldEncrypt($path) { + if(is_null(self::$enableEncryption)) { self::$enableEncryption=(OCP\Config::getAppValue('files_encryption','enable_encryption','true')=='true'); } - if(!self::$enableEncryption){ + if(!self::$enableEncryption) { return false; } - if(is_null(self::$blackList)){ + if(is_null(self::$blackList)) { self::$blackList=explode(',',OCP\Config::getAppValue('files_encryption','type_blacklist','jpg,png,jpeg,avi,mpg,mpeg,mkv,mp3,oga,ogv,ogg')); } - if(self::isEncrypted($path)){ + if(self::isEncrypted($path)) { return true; } $extension=substr($path,strrpos($path,'.')+1); - if(array_search($extension,self::$blackList)===false){ + if(array_search($extension,self::$blackList)===false) { return true; } } @@ -58,13 +58,13 @@ class OC_FileProxy_Encryption extends OC_FileProxy{ * @param string $path * @return bool */ - private static function isEncrypted($path){ + private static function isEncrypted($path) { $metadata=OC_FileCache_Cached::get($path,''); return isset($metadata['encrypted']) and (bool)$metadata['encrypted']; } - public function preFile_put_contents($path,&$data){ - if(self::shouldEncrypt($path)){ + public function preFile_put_contents($path,&$data) { + if(self::shouldEncrypt($path)) { if (!is_resource($data)) {//stream put contents should have been converter to fopen $size=strlen($data); $data=OC_Crypt::blockEncrypt($data); @@ -73,24 +73,24 @@ class OC_FileProxy_Encryption extends OC_FileProxy{ } } - public function postFile_get_contents($path,$data){ - if(self::isEncrypted($path)){ + public function postFile_get_contents($path,$data) { + if(self::isEncrypted($path)) { $cached=OC_FileCache_Cached::get($path,''); $data=OC_Crypt::blockDecrypt($data,'',$cached['size']); } return $data; } - public function postFopen($path,&$result){ - if(!$result){ + public function postFopen($path,&$result) { + if(!$result) { return $result; } $meta=stream_get_meta_data($result); - if(self::isEncrypted($path)){ + if(self::isEncrypted($path)) { fclose($result); $result=fopen('crypt://'.$path,$meta['mode']); - }elseif(self::shouldEncrypt($path) and $meta['mode']!='r' and $meta['mode']!='rb'){ - if(OC_Filesystem::file_exists($path) and OC_Filesystem::filesize($path)>0){ + }elseif(self::shouldEncrypt($path) and $meta['mode']!='r' and $meta['mode']!='rb') { + if(OC_Filesystem::file_exists($path) and OC_Filesystem::filesize($path)>0) { //first encrypt the target file so we don't end up with a half encrypted file OCP\Util::writeLog('files_encryption','Decrypting '.$path.' before writing',OCP\Util::DEBUG); $tmp=fopen('php://temp'); @@ -104,23 +104,23 @@ class OC_FileProxy_Encryption extends OC_FileProxy{ return $result; } - public function postGetMimeType($path,$mime){ - if(self::isEncrypted($path)){ + public function postGetMimeType($path,$mime) { + if(self::isEncrypted($path)) { $mime=OCP\Files::getMimeType('crypt://'.$path,'w'); } return $mime; } - public function postStat($path,$data){ - if(self::isEncrypted($path)){ + public function postStat($path,$data) { + if(self::isEncrypted($path)) { $cached=OC_FileCache_Cached::get($path,''); $data['size']=$cached['size']; } return $data; } - public function postFileSize($path,$size){ - if(self::isEncrypted($path)){ + public function postFileSize($path,$size) { + if(self::isEncrypted($path)) { $cached=OC_FileCache_Cached::get($path,''); return $cached['size']; }else{ diff --git a/apps/files_encryption/templates/settings.php b/apps/files_encryption/templates/settings.php index 79780d694cf..55e8cf1542c 100644 --- a/apps/files_encryption/templates/settings.php +++ b/apps/files_encryption/templates/settings.php @@ -7,6 +7,6 @@ <option selected="selected" value="<?php echo $type;?>"><?php echo $type;?></option> <?php endforeach;?> </select> - <input type='checkbox' id='enable_encryption' <?php if($_['encryption_enabled']){echo 'checked="checked"';} ?>></input><label for='enable_encryption'><?php echo $l->t('Enable Encryption')?></label> + <input type='checkbox' id='enable_encryption' <?php if($_['encryption_enabled']) {echo 'checked="checked"';} ?>></input><label for='enable_encryption'><?php echo $l->t('Enable Encryption')?></label> </fieldset> </form> diff --git a/apps/files_encryption/tests/encryption.php b/apps/files_encryption/tests/encryption.php index f70411ed63c..89397f6ef2c 100644 --- a/apps/files_encryption/tests/encryption.php +++ b/apps/files_encryption/tests/encryption.php @@ -7,7 +7,7 @@ */ class Test_Encryption extends UnitTestCase { - function testEncryption(){ + function testEncryption() { $key=uniqid(); $file=OC::$SERVERROOT.'/3rdparty/MDB2.php'; $source=file_get_contents($file); //nice large text file @@ -54,7 +54,7 @@ class Test_Encryption extends UnitTestCase { } - function testBinary(){ + function testBinary() { $key=uniqid(); $file=__DIR__.'/binary'; diff --git a/apps/files_encryption/tests/proxy.php b/apps/files_encryption/tests/proxy.php index c4952d13d39..042011a6c87 100644 --- a/apps/files_encryption/tests/proxy.php +++ b/apps/files_encryption/tests/proxy.php @@ -10,7 +10,7 @@ class Test_CryptProxy extends UnitTestCase { private $oldConfig; private $oldKey; - public function setUp(){ + public function setUp() { $user=OC_User::getUser(); $this->oldConfig=OCP\Config::getAppValue('files_encryption','enable_encryption','true'); @@ -40,14 +40,14 @@ class Test_CryptProxy extends UnitTestCase { $rootView->mkdir('/'.$user.'/files'); } - public function tearDown(){ + public function tearDown() { OCP\Config::setAppValue('files_encryption','enable_encryption',$this->oldConfig); - if(!is_null($this->oldKey)){ + if(!is_null($this->oldKey)) { $_SESSION['enckey']=$this->oldKey; } } - public function testSimple(){ + public function testSimple() { $file=OC::$SERVERROOT.'/3rdparty/MDB2.php'; $original=file_get_contents($file); @@ -64,7 +64,7 @@ class Test_CryptProxy extends UnitTestCase { } - public function testView(){ + public function testView() { $file=OC::$SERVERROOT.'/3rdparty/MDB2.php'; $original=file_get_contents($file); @@ -86,7 +86,7 @@ class Test_CryptProxy extends UnitTestCase { $this->assertEqual($original,$fromFile); } - public function testBinary(){ + public function testBinary() { $file=__DIR__.'/binary'; $original=file_get_contents($file); diff --git a/apps/files_encryption/tests/stream.php b/apps/files_encryption/tests/stream.php index 517d497344e..39b13620782 100644 --- a/apps/files_encryption/tests/stream.php +++ b/apps/files_encryption/tests/stream.php @@ -9,7 +9,7 @@ class Test_CryptStream extends UnitTestCase { private $tmpFiles=array(); - function testStream(){ + function testStream() { $stream=$this->getStream('test1','w',strlen('foobar')); fwrite($stream,'foobar'); fclose($stream); @@ -40,11 +40,11 @@ class Test_CryptStream extends UnitTestCase { * @param int size * @return resource */ - function getStream($id,$mode,$size){ - if($id===''){ + function getStream($id,$mode,$size) { + if($id==='') { $id=uniqid(); } - if(!isset($this->tmpFiles[$id])){ + if(!isset($this->tmpFiles[$id])) { $file=OCP\Files::tmpFile(); $this->tmpFiles[$id]=$file; }else{ @@ -55,7 +55,7 @@ class Test_CryptStream extends UnitTestCase { return fopen('crypt://streams/'.$id,$mode); } - function testBinary(){ + function testBinary() { $file=__DIR__.'/binary'; $source=file_get_contents($file); diff --git a/apps/files_external/lib/ftp.php b/apps/files_external/lib/ftp.php index 818273f6c2d..261141455cc 100644 --- a/apps/files_external/lib/ftp.php +++ b/apps/files_external/lib/ftp.php @@ -15,13 +15,13 @@ class OC_FileStorage_FTP extends OC_FileStorage_StreamWrapper{ private static $tempFiles=array(); - public function __construct($params){ + public function __construct($params) { $this->host=$params['host']; $this->user=$params['user']; $this->password=$params['password']; $this->secure=isset($params['secure'])?(bool)$params['secure']:false; $this->root=isset($params['root'])?$params['root']:'/'; - if(!$this->root || $this->root[0]!='/'){ + if(!$this->root || $this->root[0]!='/') { $this->root='/'.$this->root; } //create the root folder if necesary @@ -35,16 +35,16 @@ class OC_FileStorage_FTP extends OC_FileStorage_StreamWrapper{ * @param string path * @return string */ - public function constructUrl($path){ + public function constructUrl($path) { $url='ftp'; - if($this->secure){ + if($this->secure) { $url.='s'; } $url.='://'.$this->user.':'.$this->password.'@'.$this->host.$this->root.$path; return $url; } - public function fopen($path,$mode){ - switch($mode){ + public function fopen($path,$mode) { + switch($mode) { case 'r': case 'rb': case 'w': @@ -63,14 +63,14 @@ class OC_FileStorage_FTP extends OC_FileStorage_StreamWrapper{ case 'c': case 'c+': //emulate these - if(strrpos($path,'.')!==false){ + if(strrpos($path,'.')!==false) { $ext=substr($path,strrpos($path,'.')); }else{ $ext=''; } $tmpFile=OCP\Files::tmpFile($ext); OC_CloseStreamWrapper::$callBacks[$tmpFile]=array($this,'writeBack'); - if($this->file_exists($path)){ + if($this->file_exists($path)) { $this->getFile($path,$tmpFile); } self::$tempFiles[$tmpFile]=$path; @@ -78,8 +78,8 @@ class OC_FileStorage_FTP extends OC_FileStorage_StreamWrapper{ } } - public function writeBack($tmpFile){ - if(isset(self::$tempFiles[$tmpFile])){ + public function writeBack($tmpFile) { + if(isset(self::$tempFiles[$tmpFile])) { $this->uploadFile($tmpFile,self::$tempFiles[$tmpFile]); unlink($tmpFile); } diff --git a/apps/files_external/lib/smb.php b/apps/files_external/lib/smb.php index 91c0f16c1f6..e5ba7a17743 100644 --- a/apps/files_external/lib/smb.php +++ b/apps/files_external/lib/smb.php @@ -15,40 +15,40 @@ class OC_FileStorage_SMB extends OC_FileStorage_StreamWrapper{ private $root; private $share; - public function __construct($params){ + public function __construct($params) { $this->host=$params['host']; $this->user=$params['user']; $this->password=$params['password']; $this->share=$params['share']; $this->root=isset($params['root'])?$params['root']:'/'; - if(!$this->root || $this->root[0]!='/'){ + if(!$this->root || $this->root[0]!='/') { $this->root='/'.$this->root; } - if(substr($this->root,-1,1)!='/'){ + if(substr($this->root,-1,1)!='/') { $this->root.='/'; } - if(!$this->share || $this->share[0]!='/'){ + if(!$this->share || $this->share[0]!='/') { $this->share='/'.$this->share; } - if(substr($this->share,-1,1)=='/'){ + if(substr($this->share,-1,1)=='/') { $this->share=substr($this->share,0,-1); } //create the root folder if necesary - if(!$this->is_dir('')){ + if(!$this->is_dir('')) { $this->mkdir(''); } } - public function constructUrl($path){ - if(substr($path,-1)=='/'){ + public function constructUrl($path) { + if(substr($path,-1)=='/') { $path=substr($path,0,-1); } return 'smb://'.$this->user.':'.$this->password.'@'.$this->host.$this->share.$this->root.$path; } - public function stat($path){ - if(!$path and $this->root=='/'){//mtime doesn't work for shares + public function stat($path) { + if(!$path and $this->root=='/') {//mtime doesn't work for shares $mtime=$this->shareMTime(); $stat=stat($this->constructUrl($path)); $stat['mtime']=$mtime; @@ -58,7 +58,7 @@ class OC_FileStorage_SMB extends OC_FileStorage_StreamWrapper{ } } - public function filetype($path){ + public function filetype($path) { return (bool)@$this->opendir($path);//using opendir causes the same amount of requests and caches the content of the folder in one go } @@ -67,8 +67,8 @@ class OC_FileStorage_SMB extends OC_FileStorage_StreamWrapper{ * @param int $time * @return bool */ - public function hasUpdated($path,$time){ - if(!$path and $this->root=='/'){ + public function hasUpdated($path,$time) { + if(!$path and $this->root=='/') { //mtime doesn't work for shares, but giving the nature of the backend, doing a full update is still just fast enough return true; }else{ @@ -80,13 +80,13 @@ class OC_FileStorage_SMB extends OC_FileStorage_StreamWrapper{ /** * get the best guess for the modification time of the share */ - private function shareMTime(){ + private function shareMTime() { $dh=$this->opendir(''); $lastCtime=0; - while($file=readdir($dh)){ - if($file!='.' and $file!='..'){ + while($file=readdir($dh)) { + if($file!='.' and $file!='..') { $ctime=$this->filemtime($file); - if($ctime>$lastCtime){ + if($ctime>$lastCtime) { $lastCtime=$ctime; } } diff --git a/apps/files_external/lib/streamwrapper.php b/apps/files_external/lib/streamwrapper.php index 467c5a5b845..7263ef23253 100644 --- a/apps/files_external/lib/streamwrapper.php +++ b/apps/files_external/lib/streamwrapper.php @@ -10,12 +10,12 @@ abstract class OC_FileStorage_StreamWrapper extends OC_Filestorage_Common{ abstract public function constructUrl($path); - public function mkdir($path){ + public function mkdir($path) { return mkdir($this->constructUrl($path)); } - public function rmdir($path){ - if($this->file_exists($path)){ + public function rmdir($path) { + if($this->file_exists($path)) { $succes=rmdir($this->constructUrl($path)); clearstatcache(); return $succes; @@ -24,42 +24,42 @@ abstract class OC_FileStorage_StreamWrapper extends OC_Filestorage_Common{ } } - public function opendir($path){ + public function opendir($path) { return opendir($this->constructUrl($path)); } - public function filetype($path){ + public function filetype($path) { return filetype($this->constructUrl($path)); } - public function isReadable($path){ + public function isReadable($path) { return true;//not properly supported } - public function isUpdatable($path){ + public function isUpdatable($path) { return true;//not properly supported } - public function file_exists($path){ + public function file_exists($path) { return file_exists($this->constructUrl($path)); } - public function unlink($path){ + public function unlink($path) { $succes=unlink($this->constructUrl($path)); clearstatcache(); return $succes; } - public function fopen($path,$mode){ + public function fopen($path,$mode) { return fopen($this->constructUrl($path),$mode); } - public function free_space($path){ + public function free_space($path) { return 0; } - public function touch($path,$mtime=null){ - if(is_null($mtime)){ + public function touch($path,$mtime=null) { + if(is_null($mtime)) { $fh=$this->fopen($path,'a'); fwrite($fh,''); fclose($fh); @@ -68,19 +68,19 @@ abstract class OC_FileStorage_StreamWrapper extends OC_Filestorage_Common{ } } - public function getFile($path,$target){ + public function getFile($path,$target) { return copy($this->constructUrl($path),$target); } - public function uploadFile($path,$target){ + public function uploadFile($path,$target) { return copy($path,$this->constructUrl($target)); } - public function rename($path1,$path2){ + public function rename($path1,$path2) { return rename($this->constructUrl($path1),$this->constructUrl($path2)); } - public function stat($path){ + public function stat($path) { return stat($this->constructUrl($path)); } diff --git a/apps/files_external/lib/swift.php b/apps/files_external/lib/swift.php index 9a4b5c6dd2b..c29d28b44c1 100644 --- a/apps/files_external/lib/swift.php +++ b/apps/files_external/lib/swift.php @@ -38,7 +38,7 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ * @param string path * @return string */ - private function getContainerName($path){ + private function getContainerName($path) { $path=trim($this->root.$path,'/'); return str_replace('/','\\',$path); } @@ -48,18 +48,18 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ * @param string path * @return CF_Container */ - private function getContainer($path){ - if($path=='' or $path=='/'){ + private function getContainer($path) { + if($path=='' or $path=='/') { return $this->rootContainer; } - if(isset($this->containers[$path])){ + if(isset($this->containers[$path])) { return $this->containers[$path]; } try{ $container=$this->conn->get_container($this->getContainerName($path)); $this->containers[$path]=$container; return $container; - }catch(NoSuchContainerException $e){ + }catch(NoSuchContainerException $e) { return null; } } @@ -69,15 +69,15 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ * @param string path * @return CF_Container */ - private function createContainer($path){ - if($path=='' or $path=='/'){ + private function createContainer($path) { + if($path=='' or $path=='/') { return $this->conn->create_container($this->getContainerName($path)); } $parent=dirname($path); - if($parent=='' or $parent=='/'){ + if($parent=='' or $parent=='/') { $parentContainer=$this->rootContainer; }else{ - if(!$this->containerExists($parent)){ + if(!$this->containerExists($parent)) { $parentContainer=$this->createContainer($parent); }else{ $parentContainer=$this->getContainer($parent); @@ -92,19 +92,19 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ * @param string path * @return CF_Object */ - private function getObject($path){ - if(isset($this->objects[$path])){ + private function getObject($path) { + if(isset($this->objects[$path])) { return $this->objects[$path]; } $container=$this->getContainer(dirname($path)); - if(is_null($container)){ + if(is_null($container)) { return null; }else{ try{ $obj=$container->get_object(basename($path)); $this->objects[$path]=$obj; return $obj; - }catch(NoSuchObjectException $e){ + }catch(NoSuchObjectException $e) { return null; } } @@ -115,12 +115,12 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ * @param CF_Container * @return array */ - private function getObjects($container){ - if(is_null($container)){ + private function getObjects($container) { + if(is_null($container)) { return array(); }else{ $files=$container->get_objects(); - foreach($files as &$file){ + foreach($files as &$file) { $file=$file->name; } return $files; @@ -132,9 +132,9 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ * @param string path * @return CF_Object */ - private function createObject($path){ + private function createObject($path) { $container=$this->getContainer(dirname($path)); - if(!is_null($container)){ + if(!is_null($container)) { $container=$this->createContainer($path); } return $container->create_object(basename($path)); @@ -145,7 +145,7 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ * @param string * @return bool */ - private function objectExists($path){ + private function objectExists($path) { return !is_null($this->getObject($path)); } @@ -154,7 +154,7 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ * @param string path * @return bool */ - private function containerExists($path){ + private function containerExists($path) { return !is_null($this->getContainer($path)); } @@ -163,18 +163,18 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ * @param CF_Container container * @return array */ - private function getSubContainers($container){ + private function getSubContainers($container) { $tmpFile=OCP\Files::tmpFile(); $obj=$this->getSubContainerFile($container); try{ $obj->save_to_filename($tmpFile); - }catch(Exception $e){ + }catch(Exception $e) { return array(); } $obj->save_to_filename($tmpFile); $containers=file($tmpFile); unlink($tmpFile); - foreach($containers as &$sub){ + foreach($containers as &$sub) { $sub=trim($sub); } return $containers; @@ -186,8 +186,8 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ * @param string name * @return bool */ - private function addSubContainer($container,$name){ - if(!$name){ + private function addSubContainer($container,$name) { + if(!$name) { return false; } $tmpFile=OCP\Files::tmpFile(); @@ -195,17 +195,17 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ try{ $obj->save_to_filename($tmpFile); $containers=file($tmpFile); - foreach($containers as &$sub){ + foreach($containers as &$sub) { $sub=trim($sub); } - if(array_search($name,$containers)!==false){ + if(array_search($name,$containers)!==false) { unlink($tmpFile); return false; }else{ $fh=fopen($tmpFile,'a'); fwrite($fh,$name."\n"); } - }catch(Exception $e){ + }catch(Exception $e) { $containers=array(); file_put_contents($tmpFile,$name."\n"); } @@ -221,8 +221,8 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ * @param string name * @return bool */ - private function removeSubContainer($container,$name){ - if(!$name){ + private function removeSubContainer($container,$name) { + if(!$name) { return false; } $tmpFile=OCP\Files::tmpFile(); @@ -230,14 +230,14 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ try{ $obj->save_to_filename($tmpFile); $containers=file($tmpFile); - }catch(Exception $e){ + }catch(Exception $e) { return false; } - foreach($containers as &$sub){ + foreach($containers as &$sub) { $sub=trim($sub); } $i=array_search($name,$containers); - if($i===false){ + if($i===false) { unlink($tmpFile); return false; }else{ @@ -255,21 +255,21 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ * @param CF_Container container * @return CF_Object */ - private function getSubContainerFile($container){ + private function getSubContainerFile($container) { try{ return $container->get_object(self::SUBCONTAINER_FILE); - }catch(NoSuchObjectException $e){ + }catch(NoSuchObjectException $e) { return $container->create_object(self::SUBCONTAINER_FILE); } } - public function __construct($params){ + public function __construct($params) { $this->token=$params['token']; $this->host=$params['host']; $this->user=$params['user']; $this->root=isset($params['root'])?$params['root']:'/'; $this->secure=isset($params['secure'])?(bool)$params['secure']:true; - if(!$this->root || $this->root[0]!='/'){ + if(!$this->root || $this->root[0]!='/') { $this->root='/'.$this->root; } $this->auth = new CF_Authentication($this->user, $this->token, null, $this->host); @@ -277,7 +277,7 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ $this->conn = new CF_Connection($this->auth); - if(!$this->containerExists($this->root)){ + if(!$this->containerExists($this->root)) { $this->rootContainer=$this->createContainer('/'); }else{ $this->rootContainer=$this->getContainer('/'); @@ -285,8 +285,8 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ } - public function mkdir($path){ - if($this->containerExists($path)){ + public function mkdir($path) { + if($this->containerExists($path)) { return false; }else{ $this->createContainer($path); @@ -294,12 +294,12 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ } } - public function rmdir($path){ - if(!$this->containerExists($path)){ + public function rmdir($path) { + if(!$this->containerExists($path)) { return false; }else{ $this->emptyContainer($path); - if($path!='' and $path!='/'){ + if($path!='' and $path!='/') { $parentContainer=$this->getContainer(dirname($path)); $this->removeSubContainer($parentContainer,basename($path)); } @@ -310,14 +310,14 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ } } - private function emptyContainer($path){ + private function emptyContainer($path) { $container=$this->getContainer($path); - if(is_null($container)){ + if(is_null($container)) { return; } $subContainers=$this->getSubContainers($container); - foreach($subContainers as $sub){ - if($sub){ + foreach($subContainers as $sub) { + if($sub) { $this->emptyContainer($path.'/'.$sub); $this->conn->delete_container($this->getContainerName($path.'/'.$sub)); unset($this->containers[$path.'/'.$sub]); @@ -325,17 +325,17 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ } $objects=$this->getObjects($container); - foreach($objects as $object){ + foreach($objects as $object) { $container->delete_object($object); unset($this->objects[$path.'/'.$object]); } } - public function opendir($path){ + public function opendir($path) { $container=$this->getContainer($path); $files=$this->getObjects($container); $i=array_search(self::SUBCONTAINER_FILE,$files); - if($i!==false){ + if($i!==false) { unset($files[$i]); } $subContainers=$this->getSubContainers($container); @@ -345,43 +345,43 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ return opendir('fakedir://'.$id); } - public function filetype($path){ - if($this->containerExists($path)){ + public function filetype($path) { + if($this->containerExists($path)) { return 'dir'; }else{ return 'file'; } } - public function isReadable($path){ + public function isReadable($path) { return true; } - public function isUpdatable($path){ + public function isUpdatable($path) { return true; } - public function file_exists($path){ - if($this->is_dir($path)){ + public function file_exists($path) { + if($this->is_dir($path)) { return true; }else{ return $this->objectExists($path); } } - public function file_get_contents($path){ + public function file_get_contents($path) { $obj=$this->getObject($path); - if(is_null($obj)){ + if(is_null($obj)) { return false; } return $obj->read(); } - public function file_put_contents($path,$content){ + public function file_put_contents($path,$content) { $obj=$this->getObject($path); - if(is_null($obj)){ + if(is_null($obj)) { $container=$this->getContainer(dirname($path)); - if(is_null($container)){ + if(is_null($container)) { return false; } $obj=$container->create_object(basename($path)); @@ -390,8 +390,8 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ return $obj->write($content); } - public function unlink($path){ - if($this->objectExists($path)){ + public function unlink($path) { + if($this->objectExists($path)) { $container=$this->getContainer(dirname($path)); $container->delete_object(basename($path)); unset($this->objects[$path]); @@ -400,12 +400,12 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ } } - public function fopen($path,$mode){ + public function fopen($path,$mode) { $obj=$this->getObject($path); - if(is_null($obj)){ + if(is_null($obj)) { return false; } - switch($mode){ + switch($mode) { case 'r': case 'rb': $fp = fopen('php://temp', 'r+'); @@ -432,23 +432,23 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ } } - public function writeBack($tmpFile){ - if(isset(self::$tempFiles[$tmpFile])){ + public function writeBack($tmpFile) { + if(isset(self::$tempFiles[$tmpFile])) { $this->fromTmpFile($tmpFile,self::$tempFiles[$tmpFile]); unlink($tmpFile); } } - public function free_space($path){ + public function free_space($path) { return 0; } - public function touch($path,$mtime=null){ + public function touch($path,$mtime=null) { $obj=$this->getObject($path); - if(is_null($obj)){ + if(is_null($obj)) { return false; } - if(is_null($mtime)){ + if(is_null($mtime)) { $mtime=time(); } @@ -457,36 +457,36 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ $obj->sync_metadata(); } - public function rename($path1,$path2){ + public function rename($path1,$path2) { $sourceContainer=$this->getContainer(dirname($path1)); $targetContainer=$this->getContainer(dirname($path2)); $result=$sourceContainer->move_object_to(basename($path1),$targetContainer,basename($path2)); unset($this->objects[$path1]); - if($result){ + if($result) { $targetObj=$this->getObject($path2); $this->resetMTime($targetObj); } return $result; } - public function copy($path1,$path2){ + public function copy($path1,$path2) { $sourceContainer=$this->getContainer(dirname($path1)); $targetContainer=$this->getContainer(dirname($path2)); $result=$sourceContainer->copy_object_to(basename($path1),$targetContainer,basename($path2)); - if($result){ + if($result) { $targetObj=$this->getObject($path2); $this->resetMTime($targetObj); } return $result; } - public function stat($path){ + public function stat($path) { $obj=$this->getObject($path); - if(is_null($obj)){ + if(is_null($obj)) { return false; } - if(isset($obj->metadata['Mtime']) and $obj->metadata['Mtime']>-1){ + if(isset($obj->metadata['Mtime']) and $obj->metadata['Mtime']>-1) { $mtime=$obj->metadata['Mtime']; }else{ $mtime=strtotime($obj->last_modified); @@ -498,9 +498,9 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ ); } - private function getTmpFile($path){ + private function getTmpFile($path) { $obj=$this->getObject($path); - if(!is_null($obj)){ + if(!is_null($obj)) { $tmpFile=OCP\Files::tmpFile(); $obj->save_to_filename($tmpFile); return $tmpFile; @@ -509,9 +509,9 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ } } - private function fromTmpFile($tmpFile,$path){ + private function fromTmpFile($tmpFile,$path) { $obj=$this->getObject($path); - if(is_null($obj)){ + if(is_null($obj)) { $obj=$this->createObject($path); } $obj->load_from_filename($tmpFile); @@ -522,8 +522,8 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ * remove custom mtime metadata * @param CF_Object obj */ - private function resetMTime($obj){ - if(isset($obj->metadata['Mtime'])){ + private function resetMTime($obj) { + if(isset($obj->metadata['Mtime'])) { $obj->metadata['Mtime']=-1; $obj->sync_metadata(); } diff --git a/apps/files_external/lib/webdav.php b/apps/files_external/lib/webdav.php index 1b9c3e3333b..3c18b227fa6 100644 --- a/apps/files_external/lib/webdav.php +++ b/apps/files_external/lib/webdav.php @@ -19,7 +19,7 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{ private static $tempFiles=array(); - public function __construct($params){ + public function __construct($params) { $host = $params['host']; //remove leading http[s], will be generated in createBaseUri() if (substr($host,0,8) == "https://") $host = substr($host, 8); @@ -29,10 +29,10 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{ $this->password=$params['password']; $this->secure=(isset($params['secure']) && $params['secure'] == 'true')?true:false; $this->root=isset($params['root'])?$params['root']:'/'; - if(!$this->root || $this->root[0]!='/'){ + if(!$this->root || $this->root[0]!='/') { $this->root='/'.$this->root; } - if(substr($this->root,-1,1)!='/'){ + if(substr($this->root,-1,1)!='/') { $this->root.='/'; } @@ -54,26 +54,26 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{ $this->mkdir(''); } - private function createBaseUri(){ + private function createBaseUri() { $baseUri='http'; - if($this->secure){ + if($this->secure) { $baseUri.='s'; } $baseUri.='://'.$this->host.$this->root; return $baseUri; } - public function mkdir($path){ + public function mkdir($path) { $path=$this->cleanPath($path); return $this->simpleResponse('MKCOL',$path,null,201); } - public function rmdir($path){ + public function rmdir($path) { $path=$this->cleanPath($path); return $this->simpleResponse('DELETE',$path,null,204); } - public function opendir($path){ + public function opendir($path) { $path=$this->cleanPath($path); try{ $response=$this->client->propfind($path, array(),1); @@ -81,54 +81,54 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{ OC_FakeDirStream::$dirs[$id]=array(); $files=array_keys($response); array_shift($files);//the first entry is the current directory - foreach($files as $file){ + foreach($files as $file) { $file = urldecode(basename($file)); OC_FakeDirStream::$dirs[$id][]=$file; } return opendir('fakedir://'.$id); - }catch(Exception $e){ + }catch(Exception $e) { return false; } } - public function filetype($path){ + public function filetype($path) { $path=$this->cleanPath($path); try{ $response=$this->client->propfind($path, array('{DAV:}resourcetype')); $responseType=$response["{DAV:}resourcetype"]->resourceType; return (count($responseType)>0 and $responseType[0]=="{DAV:}collection")?'dir':'file'; - }catch(Exception $e){ + }catch(Exception $e) { error_log($e->getMessage()); \OCP\Util::writeLog("webdav client", \OCP\Util::sanitizeHTML($e->getMessage()), \OCP\Util::ERROR); return false; } } - public function isReadable($path){ + public function isReadable($path) { return true;//not properly supported } - public function isUpdatable($path){ + public function isUpdatable($path) { return true;//not properly supported } - public function file_exists($path){ + public function file_exists($path) { $path=$this->cleanPath($path); try{ $this->client->propfind($path, array('{DAV:}resourcetype')); return true;//no 404 exception - }catch(Exception $e){ + }catch(Exception $e) { return false; } } - public function unlink($path){ + public function unlink($path) { return $this->simpleResponse('DELETE',$path,null,204); } - public function fopen($path,$mode){ + public function fopen($path,$mode) { $path=$this->cleanPath($path); - switch($mode){ + switch($mode) { case 'r': case 'rb': //straight up curl instead of sabredav here, sabredav put's the entire get result in memory @@ -155,14 +155,14 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{ case 'c': case 'c+': //emulate these - if(strrpos($path,'.')!==false){ + if(strrpos($path,'.')!==false) { $ext=substr($path,strrpos($path,'.')); }else{ $ext=''; } $tmpFile=OCP\Files::tmpFile($ext); OC_CloseStreamWrapper::$callBacks[$tmpFile]=array($this,'writeBack'); - if($this->file_exists($path)){ + if($this->file_exists($path)) { $this->getFile($path,$tmpFile); } self::$tempFiles[$tmpFile]=$path; @@ -170,41 +170,41 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{ } } - public function writeBack($tmpFile){ - if(isset(self::$tempFiles[$tmpFile])){ + public function writeBack($tmpFile) { + if(isset(self::$tempFiles[$tmpFile])) { $this->uploadFile($tmpFile,self::$tempFiles[$tmpFile]); unlink($tmpFile); } } - public function free_space($path){ + public function free_space($path) { $path=$this->cleanPath($path); try{ $response=$this->client->propfind($path, array('{DAV:}quota-available-bytes')); - if(isset($response['{DAV:}quota-available-bytes'])){ + if(isset($response['{DAV:}quota-available-bytes'])) { return (int)$response['{DAV:}quota-available-bytes']; }else{ return 0; } - }catch(Exception $e){ + }catch(Exception $e) { return 0; } } - public function touch($path,$mtime=null){ - if(is_null($mtime)){ + public function touch($path,$mtime=null) { + if(is_null($mtime)) { $mtime=time(); } $path=$this->cleanPath($path); $this->client->proppatch($path, array('{DAV:}lastmodified' => $mtime)); } - public function getFile($path,$target){ + public function getFile($path,$target) { $source=$this->fopen($path,'r'); file_put_contents($target,$source); } - public function uploadFile($path,$target){ + public function uploadFile($path,$target) { $source=fopen($path,'r'); $curl = curl_init(); @@ -218,13 +218,13 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{ curl_close ($curl); } - public function rename($path1,$path2){ + public function rename($path1,$path2) { $path1=$this->cleanPath($path1); $path2=$this->root.$this->cleanPath($path2); try{ $response=$this->client->request('MOVE',$path1,null,array('Destination'=>$path2)); return true; - }catch(Exception $e){ + }catch(Exception $e) { echo $e; echo 'fail'; var_dump($response); @@ -232,13 +232,13 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{ } } - public function copy($path1,$path2){ + public function copy($path1,$path2) { $path1=$this->cleanPath($path1); $path2=$this->root.$this->cleanPath($path2); try{ $response=$this->client->request('COPY',$path1,null,array('Destination'=>$path2)); return true; - }catch(Exception $e){ + }catch(Exception $e) { echo $e; echo 'fail'; var_dump($response); @@ -246,7 +246,7 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{ } } - public function stat($path){ + public function stat($path) { $path=$this->cleanPath($path); try{ $response=$this->client->propfind($path, array('{DAV:}getlastmodified','{DAV:}getcontentlength')); @@ -255,43 +255,43 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{ 'size'=>(int)isset($response['{DAV:}getcontentlength']) ? $response['{DAV:}getcontentlength'] : 0, 'ctime'=>-1, ); - }catch(Exception $e){ + }catch(Exception $e) { return array(); } } - public function getMimeType($path){ + public function getMimeType($path) { $path=$this->cleanPath($path); try{ $response=$this->client->propfind($path, array('{DAV:}getcontenttype','{DAV:}resourcetype')); $responseType=$response["{DAV:}resourcetype"]->resourceType; $type=(count($responseType)>0 and $responseType[0]=="{DAV:}collection")?'dir':'file'; - if($type=='dir'){ + if($type=='dir') { return 'httpd/unix-directory'; - }elseif(isset($response['{DAV:}getcontenttype'])){ + }elseif(isset($response['{DAV:}getcontenttype'])) { return $response['{DAV:}getcontenttype']; }else{ return false; } - }catch(Exception $e){ + }catch(Exception $e) { return false; } } - private function cleanPath($path){ - if(!$path || $path[0]=='/'){ + private function cleanPath($path) { + if(!$path || $path[0]=='/') { return substr($path,1); }else{ return $path; } } - private function simpleResponse($method,$path,$body,$expected){ + private function simpleResponse($method,$path,$body,$expected) { $path=$this->cleanPath($path); try{ $response=$this->client->request($method,$path,$body); return $response['statusCode']==$expected; - }catch(Exception $e){ + }catch(Exception $e) { return false; } } diff --git a/apps/files_external/tests/ftp.php b/apps/files_external/tests/ftp.php index 3548880e834..12f3ec3908d 100644 --- a/apps/files_external/tests/ftp.php +++ b/apps/files_external/tests/ftp.php @@ -7,21 +7,21 @@ */ $config=include('apps/files_external/tests/config.php'); -if(!is_array($config) or !isset($config['ftp']) or !$config['ftp']['run']){ +if(!is_array($config) or !isset($config['ftp']) or !$config['ftp']['run']) { abstract class Test_Filestorage_FTP extends Test_FileStorage{} return; }else{ class Test_Filestorage_FTP extends Test_FileStorage { private $config; - public function setUp(){ + public function setUp() { $id=uniqid(); $this->config=include('apps/files_external/tests/config.php'); $this->config['ftp']['root'].='/'.$id;//make sure we have an new empty folder to work in $this->instance=new OC_Filestorage_FTP($this->config['ftp']); } - public function tearDown(){ + public function tearDown() { OCP\Files::rmdirr($this->instance->constructUrl('')); } } diff --git a/apps/files_external/tests/google.php b/apps/files_external/tests/google.php index b0bd9cbbeaf..d2a6358ade4 100644 --- a/apps/files_external/tests/google.php +++ b/apps/files_external/tests/google.php @@ -21,7 +21,7 @@ */ $config=include('apps/files_external/tests/config.php'); -if(!is_array($config) or !isset($config['google']) or !$config['google']['run']){ +if(!is_array($config) or !isset($config['google']) or !$config['google']['run']) { abstract class Test_Filestorage_Google extends Test_FileStorage{} return; }else{ @@ -29,14 +29,14 @@ if(!is_array($config) or !isset($config['google']) or !$config['google']['run']) private $config; - public function setUp(){ + public function setUp() { $id=uniqid(); $this->config=include('apps/files_external/tests/config.php'); $this->config['google']['root'].='/'.$id;//make sure we have an new empty folder to work in $this->instance=new OC_Filestorage_Google($this->config['google']); } - public function tearDown(){ + public function tearDown() { $this->instance->rmdir('/'); } } diff --git a/apps/files_external/tests/smb.php b/apps/files_external/tests/smb.php index 001ef842276..7de4fddbb34 100644 --- a/apps/files_external/tests/smb.php +++ b/apps/files_external/tests/smb.php @@ -8,21 +8,21 @@ $config=include('apps/files_external/tests/config.php'); -if(!is_array($config) or !isset($config['smb']) or !$config['smb']['run']){ +if(!is_array($config) or !isset($config['smb']) or !$config['smb']['run']) { abstract class Test_Filestorage_SMB extends Test_FileStorage{} return; }else{ class Test_Filestorage_SMB extends Test_FileStorage { private $config; - public function setUp(){ + public function setUp() { $id=uniqid(); $this->config=include('apps/files_external/tests/config.php'); $this->config['smb']['root'].=$id;//make sure we have an new empty folder to work in $this->instance=new OC_Filestorage_SMB($this->config['smb']); } - public function tearDown(){ + public function tearDown() { OCP\Files::rmdirr($this->instance->constructUrl('')); } } diff --git a/apps/files_external/tests/swift.php b/apps/files_external/tests/swift.php index bfe7b77aac5..a6f5eace1c8 100644 --- a/apps/files_external/tests/swift.php +++ b/apps/files_external/tests/swift.php @@ -7,14 +7,14 @@ */ $config=include('apps/files_external/tests/config.php'); -if(!is_array($config) or !isset($config['swift']) or !$config['swift']['run']){ +if(!is_array($config) or !isset($config['swift']) or !$config['swift']['run']) { abstract class Test_Filestorage_SWIFT extends Test_FileStorage{} return; }else{ class Test_Filestorage_SWIFT extends Test_FileStorage { private $config; - public function setUp(){ + public function setUp() { $id=uniqid(); $this->config=include('apps/files_external/tests/config.php'); $this->config['swift']['root'].='/'.$id;//make sure we have an new empty folder to work in @@ -22,7 +22,7 @@ if(!is_array($config) or !isset($config['swift']) or !$config['swift']['run']){ } - public function tearDown(){ + public function tearDown() { $this->instance->rmdir(''); } diff --git a/apps/files_external/tests/webdav.php b/apps/files_external/tests/webdav.php index 49c44124f3c..74d980aa3f1 100644 --- a/apps/files_external/tests/webdav.php +++ b/apps/files_external/tests/webdav.php @@ -7,21 +7,21 @@ */ $config=include('apps/files_external/tests/config.php'); -if(!is_array($config) or !isset($config['webdav']) or !$config['webdav']['run']){ +if(!is_array($config) or !isset($config['webdav']) or !$config['webdav']['run']) { abstract class Test_Filestorage_DAV extends Test_FileStorage{} return; }else{ class Test_Filestorage_DAV extends Test_FileStorage { private $config; - public function setUp(){ + public function setUp() { $id=uniqid(); $this->config=include('apps/files_external/tests/config.php'); $this->config['webdav']['root'].='/'.$id;//make sure we have an new empty folder to work in $this->instance=new OC_Filestorage_DAV($this->config['webdav']); } - public function tearDown(){ + public function tearDown() { $this->instance->rmdir('/'); } } diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index 4530ce87777..6dba76955a0 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -443,7 +443,7 @@ class OC_Filestorage_Shared extends OC_Filestorage_Common { * @param int $time * @return bool */ - public function hasUpdated($path,$time){ + public function hasUpdated($path,$time) { //TODO return false; } diff --git a/apps/files_versions/ajax/expireAll.php b/apps/files_versions/ajax/expireAll.php index f76da3da986..5c95885ffbd 100644 --- a/apps/files_versions/ajax/expireAll.php +++ b/apps/files_versions/ajax/expireAll.php @@ -31,7 +31,7 @@ OCP\JSON::callCheck(); $versions = new OCA_Versions\Storage(); -if( $versions->expireAll() ){ +if( $versions->expireAll() ) { OCP\JSON::success(); die(); diff --git a/apps/files_versions/ajax/rollbackVersion.php b/apps/files_versions/ajax/rollbackVersion.php index 24d71a914a4..f1b02eb4b92 100644 --- a/apps/files_versions/ajax/rollbackVersion.php +++ b/apps/files_versions/ajax/rollbackVersion.php @@ -9,7 +9,7 @@ $file = $_GET['file']; $revision=(int)$_GET['revision']; if( OCA_Versions\Storage::isversioned( $file ) ) { - if(OCA_Versions\Storage::rollback( $file, $revision )){ + if(OCA_Versions\Storage::rollback( $file, $revision )) { OCP\JSON::success(array("data" => array( "revision" => $revision, "file" => $file ))); }else{ OCP\JSON::error(array("data" => array( "message" => "Could not revert:" . $file ))); diff --git a/apps/files_versions/lib/hooks.php b/apps/files_versions/lib/hooks.php index 330f10afb59..9ec0b01a7f9 100644 --- a/apps/files_versions/lib/hooks.php +++ b/apps/files_versions/lib/hooks.php @@ -44,7 +44,7 @@ class Hooks { $abs_path = \OCP\Config::getSystemValue('datadirectory').$versions_fileview->getAbsolutePath('').$rel_path.'.v'; if(Storage::isversioned($rel_path)) { $versions = Storage::getVersions($rel_path); - foreach ($versions as $v){ + foreach ($versions as $v) { unlink($abs_path . $v['version']); } } @@ -66,7 +66,7 @@ class Hooks { $info=pathinfo($abs_newpath); if(!file_exists($info['dirname'])) mkdir($info['dirname'],0700,true); $versions = Storage::getVersions($rel_oldpath); - foreach ($versions as $v){ + foreach ($versions as $v) { rename($abs_oldpath.$v['version'], $abs_newpath.$v['version']); } } diff --git a/apps/files_versions/lib/versions.php b/apps/files_versions/lib/versions.php index 4ea1a07b942..dedd83fc25a 100644 --- a/apps/files_versions/lib/versions.php +++ b/apps/files_versions/lib/versions.php @@ -82,7 +82,7 @@ class Storage { } // check if filename is a directory - if($files_view->is_dir($filename)){ + if($files_view->is_dir($filename)) { return false; } @@ -97,7 +97,7 @@ class Storage { } // check filesize - if($files_view->filesize($filename)>\OCP\Config::getSystemValue('files_versionsmaxfilesize', Storage::DEFAULTMAXFILESIZE)){ + if($files_view->filesize($filename)>\OCP\Config::getSystemValue('files_versionsmaxfilesize', Storage::DEFAULTMAXFILESIZE)) { return false; } @@ -107,7 +107,7 @@ class Storage { $matches=glob($versionsFolderName.'/'.$filename.'.v*'); sort($matches); $parts=explode('.v',end($matches)); - if((end($parts)+Storage::DEFAULTMININTERVAL)>time()){ + if((end($parts)+Storage::DEFAULTMININTERVAL)>time()) { return false; } } @@ -175,7 +175,7 @@ class Storage { // check for old versions $matches=glob($versionsFolderName.$filename.'.v*'); - if(count($matches)>0){ + if(count($matches)>0) { return true; }else{ return false; diff --git a/apps/user_ldap/appinfo/install.php b/apps/user_ldap/appinfo/install.php index 9efc3bb24d2..378957ec409 100644 --- a/apps/user_ldap/appinfo/install.php +++ b/apps/user_ldap/appinfo/install.php @@ -1,6 +1,6 @@ <?php $state = OCP\Config::getSystemValue('ldapIgnoreNamingRules', 'doSet'); -if($state == 'doSet'){ +if($state == 'doSet') { OCP\Config::setSystemValue('ldapIgnoreNamingRules', false); } diff --git a/apps/user_ldap/appinfo/update.php b/apps/user_ldap/appinfo/update.php index da36211b665..f23285a0dc6 100644 --- a/apps/user_ldap/appinfo/update.php +++ b/apps/user_ldap/appinfo/update.php @@ -18,7 +18,7 @@ if(!is_null($pw)) { //detect if we can switch on naming guidelines. We won't do it on conflicts. //it's a bit spaghetti, but hey. $state = OCP\Config::getSystemValue('ldapIgnoreNamingRules', 'unset'); -if($state == 'unset'){ +if($state == 'unset') { OCP\Config::setSystemValue('ldapIgnoreNamingRules', false); } diff --git a/apps/user_ldap/group_ldap.php b/apps/user_ldap/group_ldap.php index aac3ed78917..5ec259f6c47 100644 --- a/apps/user_ldap/group_ldap.php +++ b/apps/user_ldap/group_ldap.php @@ -231,7 +231,7 @@ class GROUP_LDAP extends lib\Access implements \OCP\GroupInterface { * @param string $gid * @return bool */ - public function groupExists($gid){ + public function groupExists($gid) { if($this->connection->isCached('groupExists'.$gid)) { return $this->connection->getFromCache('groupExists'.$gid); } diff --git a/apps/user_ldap/settings.php b/apps/user_ldap/settings.php index 23018890eac..f765151456a 100644 --- a/apps/user_ldap/settings.php +++ b/apps/user_ldap/settings.php @@ -26,8 +26,8 @@ OCP\Util::addscript('user_ldap', 'settings'); OCP\Util::addstyle('user_ldap', 'settings'); if ($_POST) { - foreach($params as $param){ - if(isset($_POST[$param])){ + foreach($params as $param) { + if(isset($_POST[$param])) { if('ldap_agent_password' == $param) { OCP\Config::setAppValue('user_ldap', $param, base64_encode($_POST[$param])); } elseif('ldap_cache_ttl' == $param) { @@ -58,7 +58,7 @@ if ($_POST) { // fill template $tmpl = new OCP\Template( 'user_ldap', 'settings'); -foreach($params as $param){ +foreach($params as $param) { $value = OCP\Config::getAppValue('user_ldap', $param,''); $tmpl->assign($param, $value); } diff --git a/apps/user_ldap/tests/group_ldap.php b/apps/user_ldap/tests/group_ldap.php index ac66a608b76..b953127d86e 100644 --- a/apps/user_ldap/tests/group_ldap.php +++ b/apps/user_ldap/tests/group_ldap.php @@ -21,11 +21,11 @@ */ class Test_Group_Ldap extends UnitTestCase { - function setUp(){ + function setUp() { OC_Group::clearBackends(); } - function testSingleBackend(){ + function testSingleBackend() { OC_Group::useBackend(new OCA\user_ldap\GROUP_LDAP()); $group_ldap = new OCA\user_ldap\GROUP_LDAP(); diff --git a/apps/user_ldap/user_ldap.php b/apps/user_ldap/user_ldap.php index d297374600a..bacdb8b9ae1 100644 --- a/apps/user_ldap/user_ldap.php +++ b/apps/user_ldap/user_ldap.php @@ -65,7 +65,7 @@ class USER_LDAP extends lib\Access implements \OCP\UserInterface { * * Check if the password is correct without logging in the user */ - public function checkPassword($uid, $password){ + public function checkPassword($uid, $password) { //find out dn of the user name $filter = \OCP\Util::mb_str_replace('%uid', $uid, $this->connection->ldapLoginFilter, 'UTF-8'); $ldap_users = $this->fetchListOfUsers($filter, 'dn'); @@ -82,7 +82,7 @@ class USER_LDAP extends lib\Access implements \OCP\UserInterface { //do we have a username for him/her? $ocname = $this->dn2username($dn); - if($ocname){ + if($ocname) { //update some settings, if necessary $this->updateQuota($dn); $this->updateEmail($dn); @@ -100,7 +100,7 @@ class USER_LDAP extends lib\Access implements \OCP\UserInterface { * * Get a list of all users. */ - public function getUsers($search = '', $limit = 10, $offset = 0){ + public function getUsers($search = '', $limit = 10, $offset = 0) { $ldap_users = $this->connection->getFromCache('getUsers'); if(is_null($ldap_users)) { $ldap_users = $this->fetchListOfUsers($this->connection->ldapUserFilter, array($this->connection->ldapUserDisplayName, 'dn')); @@ -126,7 +126,7 @@ class USER_LDAP extends lib\Access implements \OCP\UserInterface { * @param string $uid the username * @return boolean */ - public function userExists($uid){ + public function userExists($uid) { if($this->connection->isCached('userExists'.$uid)) { return $this->connection->getFromCache('userExists'.$uid); } @@ -187,7 +187,7 @@ class USER_LDAP extends lib\Access implements \OCP\UserInterface { * @param string $uid the username * @return boolean */ - public function getHome($uid){ + public function getHome($uid) { if($this->userExists($uid)) { $homedir = \OCP\Config::getUserValue($uid, 'user_ldap', 'homedir', false); if(!$homedir) { diff --git a/apps/user_webdavauth/settings.php b/apps/user_webdavauth/settings.php index 1b80b1bba34..4f1ddbbefda 100755 --- a/apps/user_webdavauth/settings.php +++ b/apps/user_webdavauth/settings.php @@ -22,9 +22,9 @@ */ print_r($_POST); -if($_POST){ +if($_POST) { - if(isset($_POST['webdav_url'])){ + if(isset($_POST['webdav_url'])) { OC_CONFIG::setValue('user_webdavauth_url', strip_tags($_POST['webdav_url'])); } } diff --git a/apps/user_webdavauth/user_webdavauth.php b/apps/user_webdavauth/user_webdavauth.php index 571aca2f70f..c36d37c1fa2 100755 --- a/apps/user_webdavauth/user_webdavauth.php +++ b/apps/user_webdavauth/user_webdavauth.php @@ -50,7 +50,7 @@ class OC_USER_WEBDAVAUTH extends OC_User_Backend { $url= 'http://'.urlencode($uid).':'.urlencode($password).'@'.$this->webdavauth_url; $headers = get_headers($url); - if($headers==false){ + if($headers==false) { OC_Log::write('OC_USER_WEBDAVAUTH', 'Not possible to connect to WebDAV Url: "'.$this->webdavauth_url.'" ' ,3); return false; @@ -68,14 +68,14 @@ class OC_USER_WEBDAVAUTH extends OC_User_Backend { /* * we don´t know if a user exists without the password. so we have to return false all the time */ - public function userExists( $uid ){ + public function userExists( $uid ) { return false; } /* * we don´t know the users so all we can do it return an empty array here */ - public function getUsers(){ + public function getUsers() { $returnArray = array(); return $returnArray; diff --git a/core/ajax/appconfig.php b/core/ajax/appconfig.php index 3ad9e2326c3..1b43afa74fb 100644 --- a/core/ajax/appconfig.php +++ b/core/ajax/appconfig.php @@ -11,7 +11,7 @@ OCP\JSON::callCheck(); $action=isset($_POST['action'])?$_POST['action']:$_GET['action']; $result=false; -switch($action){ +switch($action) { case 'getValue': $result=OC_Appconfig::getValue($_GET['app'], $_GET['key'], $_GET['defaultValue']); break; diff --git a/core/minimizer.php b/core/minimizer.php index 0abbca75027..4da9037c413 100644 --- a/core/minimizer.php +++ b/core/minimizer.php @@ -3,12 +3,12 @@ session_write_close(); OC_App::loadApps(); -if ($service == 'core.css'){ +if ($service == 'core.css') { $minimizer = new OC_Minimizer_CSS(); $files = OC_TemplateLayout::findStylesheetFiles(OC_Util::$core_styles); $minimizer->output($files, $service); } -else if ($service == 'core.js'){ +else if ($service == 'core.js') { $minimizer = new OC_Minimizer_JS(); $files = OC_TemplateLayout::findJavascriptFiles(OC_Util::$core_scripts); $minimizer->output($files, $service); diff --git a/core/templates/403.php b/core/templates/403.php index cdfef08ac76..fbf0e64fdb6 100644 --- a/core/templates/403.php +++ b/core/templates/403.php @@ -1,5 +1,5 @@ <?php -if(!isset($_)){//also provide standalone error page +if(!isset($_)) {//also provide standalone error page require_once '../../lib/base.php'; $tmpl = new OC_Template( '', '403', 'guest' ); diff --git a/core/templates/404.php b/core/templates/404.php index 13a81010343..c111fd70fa9 100644 --- a/core/templates/404.php +++ b/core/templates/404.php @@ -1,5 +1,5 @@ <?php -if(!isset($_)){//also provide standalone error page +if(!isset($_)) {//also provide standalone error page require_once '../../lib/base.php'; $tmpl = new OC_Template( '', '404', 'guest' ); diff --git a/core/templates/exception.php b/core/templates/exception.php index 7f58ce252cf..4b951fca51b 100644 --- a/core/templates/exception.php +++ b/core/templates/exception.php @@ -4,7 +4,7 @@ <summary class="error">We're sorry, but something went terribly wrong.<br></summary> <p class="exception"> <?php - if($_['showsysinfo'] == true){ + if($_['showsysinfo'] == true) { echo 'If you would like to support ownCloud\'s developers and report this error in our <a href="http://bugs.owncloud.org">Bugtracker</a>, please copy the following informations into the description. <br><br><textarea readonly>'; echo 'Message: ' . $_['message'] . "\n"; echo 'Error Code: ' . $_['code'] . "\n"; diff --git a/core/templates/layout.guest.php b/core/templates/layout.guest.php index 4cdbfd16e52..9a5a056eb2b 100644 --- a/core/templates/layout.guest.php +++ b/core/templates/layout.guest.php @@ -24,7 +24,7 @@ <?php foreach($_['headers'] as $header): ?> <?php echo '<'.$header['tag'].' '; - foreach($header['attributes'] as $name=>$value){ + foreach($header['attributes'] as $name=>$value) { echo "$name='$value' "; }; echo '/>'; diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index a2560b755fa..89b8027fc0f 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -24,7 +24,7 @@ <?php foreach($_['headers'] as $header): ?> <?php echo '<'.$header['tag'].' '; - foreach($header['attributes'] as $name=>$value){ + foreach($header['attributes'] as $name=>$value) { echo "$name='$value' "; }; echo '/>'; @@ -33,7 +33,7 @@ <script type="text/javascript"> requesttoken = '<?php echo $_['requesttoken']; ?>'; OC.EventSource.requesttoken=requesttoken; - $(document).bind('ajaxSend', function(elm, xhr, s){ + $(document).bind('ajaxSend', function(elm, xhr, s) { xhr.setRequestHeader('requesttoken', requesttoken); }); </script> @@ -44,7 +44,7 @@ <a href="<?php echo link_to('', 'index.php'); ?>" title="" id="owncloud"><img class="svg" src="<?php echo image_path('', 'logo-wide.svg'); ?>" alt="ownCloud" /></a> <a class="header-right header-action" id="logout" href="<?php echo link_to('', 'index.php'); ?>?logout=true"><img class="svg" alt="<?php echo $l->t('Log out');?>" title="<?php echo $l->t('Log out');?>" src="<?php echo image_path('', 'actions/logout.svg'); ?>" /></a> <form class="searchbox header-right" action="#" method="post"> - <input id="searchbox" class="svg" type="search" name="query" value="<?php if(isset($_POST['query'])){echo OC_Util::sanitizeHTML($_POST['query']);};?>" autocomplete="off" x-webkit-speech /> + <input id="searchbox" class="svg" type="search" name="query" value="<?php if(isset($_POST['query'])) {echo OC_Util::sanitizeHTML($_POST['query']);};?>" autocomplete="off" x-webkit-speech /> </form> </div></header> diff --git a/cron.php b/cron.php index d204c1dbe6d..f13b284b818 100644 --- a/cron.php +++ b/cron.php @@ -77,7 +77,7 @@ if( OC::$CLI ) { OC_BackgroundJob_Worker::doAllSteps(); } else{ - if( $appmode == 'cron' ){ + if( $appmode == 'cron' ) { OC_JSON::error( array( 'data' => array( 'message' => 'Backgroundjobs are using system cron!'))); } else{ diff --git a/lib/MDB2/Driver/Datatype/sqlite3.php b/lib/MDB2/Driver/Datatype/sqlite3.php index 673706e518c..ca4c1cbceb8 100644 --- a/lib/MDB2/Driver/Datatype/sqlite3.php +++ b/lib/MDB2/Driver/Datatype/sqlite3.php @@ -191,7 +191,7 @@ class MDB2_Driver_Datatype_sqlite3 extends MDB2_Driver_Datatype_Common $notnull = empty($field['notnull']) ? '' : ' NOT NULL'; $unsigned = empty($field['unsigned']) ? '' : ' UNSIGNED'; $name = $db->quoteIdentifier($name, true); - if($autoinc){ + if($autoinc) { return $name.' '.$this->getTypeDeclaration($field).$autoinc; }else{ return $name.' '.$this->getTypeDeclaration($field).$unsigned.$default.$notnull.$autoinc; diff --git a/lib/MDB2/Driver/Manager/sqlite3.php b/lib/MDB2/Driver/Manager/sqlite3.php index 0101f8ee2ab..921153c17dd 100644 --- a/lib/MDB2/Driver/Manager/sqlite3.php +++ b/lib/MDB2/Driver/Manager/sqlite3.php @@ -531,7 +531,7 @@ class MDB2_Driver_Manager_sqlite3 extends MDB2_Driver_Manager_Common return MDB2_OK; } - if (empty($changes['remove']) and empty($changes['rename']) and empty($changes['change']) ){//if only rename or add changes are required, we can use ALTER TABLE + if (empty($changes['remove']) and empty($changes['rename']) and empty($changes['change']) ) {//if only rename or add changes are required, we can use ALTER TABLE $query = ''; if (!empty($changes['name'])) { $change_name = $db->quoteIdentifier($changes['name'], true); diff --git a/lib/MDB2/Driver/sqlite3.php b/lib/MDB2/Driver/sqlite3.php index 6bfccadad9a..9757e4faf94 100644 --- a/lib/MDB2/Driver/sqlite3.php +++ b/lib/MDB2/Driver/sqlite3.php @@ -150,7 +150,7 @@ class MDB2_Driver_sqlite3 extends MDB2_Driver_Common */ public function escape($text, $escape_wildcards = false) { - if($this->connection){ + if($this->connection) { return $this->connection->escapeString($text); }else{ return str_replace("'","''",$text);//TODO; more @@ -324,7 +324,7 @@ class MDB2_Driver_sqlite3 extends MDB2_Driver_Common **/ function connect() { - if($this->connection instanceof SQLite3){ + if($this->connection instanceof SQLite3) { return MDB2_OK; } $datadir=OC_Config::getValue( "datadirectory", OC::$SERVERROOT."/data" ); @@ -351,7 +351,7 @@ class MDB2_Driver_sqlite3 extends MDB2_Driver_Common } if ($database_file !== ':memory:') { - if(!strpos($database_file,'.db')){ + if(!strpos($database_file,'.db')) { $database_file="$datadir/$database_file.db"; } if (!file_exists($database_file)) { @@ -387,7 +387,7 @@ class MDB2_Driver_sqlite3 extends MDB2_Driver_Common $php_errormsg = ''; $this->connection = new SQLite3($database_file); - if(is_callable(array($this->connection,'busyTimeout'))){//busy timout is only available in php>=5.3 + if(is_callable(array($this->connection,'busyTimeout'))) {//busy timout is only available in php>=5.3 $this->connection->busyTimeout(100); } $this->_lasterror = $this->connection->lastErrorMsg(); @@ -1055,7 +1055,7 @@ class MDB2_BufferedResult_sqlite3 extends MDB2_Result_sqlite3 function seek($rownum = 0) { $this->result->reset(); - for($i=0;$i<$rownum;$i++){ + for($i=0;$i<$rownum;$i++) { $this->result->fetchArray(); } $this->rownum = $rownum - 1; @@ -1093,7 +1093,7 @@ class MDB2_BufferedResult_sqlite3 extends MDB2_Result_sqlite3 { $rows = 0; $this->result->reset(); - while($this->result->fetchArray()){ + while($this->result->fetchArray()) { $rows++; } $this->result->reset(); @@ -1113,8 +1113,8 @@ class MDB2_Statement_sqlite3 extends MDB2_Statement_Common // }}} // {{{ function bindValue($parameter, &$value, $type = null) - private function getParamType($type){ - switch(strtolower($type)){ + private function getParamType($type) { + switch(strtolower($type)) { case 'text': return SQLITE3_TEXT; case 'boolean': @@ -1139,8 +1139,8 @@ class MDB2_Statement_sqlite3 extends MDB2_Statement_Common * * @access public */ - function bindValue($parameter, $value, $type = null){ - if($type){ + function bindValue($parameter, $value, $type = null) { + if($type) { $type=$this->getParamType($type); $this->statement->bindValue($parameter,$value,$type); }else{ @@ -1162,8 +1162,8 @@ class MDB2_Statement_sqlite3 extends MDB2_Statement_Common * * @access public */ - function bindParam($parameter, &$value, $type = null){ - if($type){ + function bindParam($parameter, &$value, $type = null) { + if($type) { $type=$this->getParamType($type); $this->statement->bindParam($parameter,$value,$type); }else{ @@ -1193,7 +1193,7 @@ class MDB2_Statement_sqlite3 extends MDB2_Statement_Common * a MDB2 error on failure * @access private */ - function _execute($result_class = true, $result_wrap_class = false){ + function _execute($result_class = true, $result_wrap_class = false) { if (is_null($this->statement)) { $result =& parent::_execute($result_class, $result_wrap_class); return $result; @@ -1313,7 +1313,7 @@ class MDB2_Statement_sqlite3 extends MDB2_Statement_Common } $values = (array)$values; if (!empty($values)) { - if(count($this->types)){ + if(count($this->types)) { $types=$this->types; }else{ $types=null; diff --git a/lib/app.php b/lib/app.php index e772704b7d2..f5c328afe7c 100755 --- a/lib/app.php +++ b/lib/app.php @@ -48,12 +48,12 @@ class OC_App{ * * if $types is set, only apps of those types will be loaded */ - public static function loadApps($types=null){ + public static function loadApps($types=null) { // Load the enabled apps here $apps = self::getEnabledApps(); // prevent app.php from printing output ob_start(); - foreach( $apps as $app ){ + foreach( $apps as $app ) { if((is_null($types) or self::isType($app, $types)) && !in_array($app, self::$loadedApps)) { self::loadApp($app); self::$loadedApps[] = $app; @@ -94,12 +94,12 @@ class OC_App{ * @param string $app * @param string/array $types */ - public static function isType($app,$types){ + public static function isType($app,$types) { if(is_string($types)) { $types=array($types); } $appTypes=self::getAppTypes($app); - foreach($types as $type){ + foreach($types as $type) { if(array_search($type, $appTypes)!==false) { return true; } @@ -112,7 +112,7 @@ class OC_App{ * @param string $app * @return array */ - private static function getAppTypes($app){ + private static function getAppTypes($app) { //load the cache if(count(self::$appTypes)==0) { self::$appTypes=OC_Appconfig::getValues(false, 'types'); @@ -128,7 +128,7 @@ class OC_App{ /** * read app types from info.xml and cache them in the database */ - public static function setAppTypes($app){ + public static function setAppTypes($app) { $appData=self::getAppInfo($app); if(isset($appData['types'])) { @@ -143,13 +143,13 @@ class OC_App{ /** * get all enabled apps */ - public static function getEnabledApps(){ + public static function getEnabledApps() { if(!OC_Config::getValue('installed', false)) return array(); $apps=array('files'); $query = OC_DB::prepare( 'SELECT `appid` FROM `*PREFIX*appconfig` WHERE `configkey` = \'enabled\' AND `configvalue`=\'yes\'' ); $result=$query->execute(); - while($row=$result->fetchRow()){ + while($row=$result->fetchRow()) { if(array_search($row['appid'], $apps)===false) { $apps[]=$row['appid']; } @@ -164,7 +164,7 @@ class OC_App{ * * This function checks whether or not an app is enabled. */ - public static function isEnabled( $app ){ + public static function isEnabled( $app ) { if( 'files'==$app or 'yes' == OC_Appconfig::getValue( $app, 'enabled' )) { return true; } @@ -179,7 +179,7 @@ class OC_App{ * * This function set an app as enabled in appconfig. */ - public static function enable( $app ){ + public static function enable( $app ) { if(!OC_Installer::isInstalled($app)) { // check if app is a shipped app or not. OCS apps have an integer as id, shipped apps use a string if(!is_numeric($app)) { @@ -215,7 +215,7 @@ class OC_App{ * * This function set an app as disabled in appconfig. */ - public static function disable( $app ){ + public static function disable( $app ) { // check if app is a shiped app or not. if not delete OC_Appconfig::setValue( $app, 'enabled', 'no' ); } @@ -237,7 +237,7 @@ class OC_App{ * - order: integer, that influences the position of your application in * the navigation. Lower values come first. */ - public static function addNavigationEntry( $data ){ + public static function addNavigationEntry( $data ) { $data['active']=false; if(!isset($data['icon'])) { $data['icon']=''; @@ -255,7 +255,7 @@ class OC_App{ * property from all other entries. The templates can use this for * highlighting the current position of the user. */ - public static function setActiveNavigationEntry( $id ){ + public static function setActiveNavigationEntry( $id ) { self::$activeapp = $id; return true; } @@ -267,7 +267,7 @@ class OC_App{ * This function returns the id of the active navigation entry (set by * setActiveNavigationEntry */ - public static function getActiveNavigationEntry(){ + public static function getActiveNavigationEntry() { return self::$activeapp; } @@ -278,7 +278,7 @@ class OC_App{ * This function returns an array containing all settings pages added. The * entries are sorted by the key 'order' ascending. */ - public static function getSettingsNavigation(){ + public static function getSettingsNavigation() { $l=OC_L10N::get('lib'); $settings = array(); @@ -320,8 +320,8 @@ class OC_App{ } /// This is private as well. It simply works, so don't ask for more details - private static function proceedNavigation( $list ){ - foreach( $list as &$naventry ){ + private static function proceedNavigation( $list ) { + foreach( $list as &$naventry ) { $naventry['subnavigation'] = array(); if( $naventry['id'] == self::$activeapp ) { $naventry['active'] = true; @@ -331,7 +331,7 @@ class OC_App{ } } unset( $naventry ); - usort( $list, create_function( '$a, $b', 'if( $a["order"] == $b["order"] ){return 0;}elseif( $a["order"] < $b["order"] ){return -1;}else{return 1;}' )); + usort( $list, create_function( '$a, $b', 'if( $a["order"] == $b["order"] ) {return 0;}elseif( $a["order"] < $b["order"] ) {return -1;}else{return 1;}' )); return $list; } @@ -388,7 +388,7 @@ class OC_App{ /** * get the last version of the app, either from appinfo/version or from appinfo/info.xml */ - public static function getAppVersion($appid){ + public static function getAppVersion($appid) { $file= self::getAppPath($appid).'/appinfo/version'; $version=@file_get_contents($file); if($version) { @@ -405,7 +405,7 @@ class OC_App{ * @param boolean path (optional) * @returns array */ - public static function getAppInfo($appid,$path=false){ + public static function getAppInfo($appid,$path=false) { if($path) { $file=$appid; }else{ @@ -423,18 +423,18 @@ class OC_App{ $data['info']=array(); $data['remote']=array(); $data['public']=array(); - foreach($xml->children() as $child){ + foreach($xml->children() as $child) { if($child->getName()=='remote') { - foreach($child->children() as $remote){ + foreach($child->children() as $remote) { $data['remote'][$remote->getName()]=(string)$remote; } }elseif($child->getName()=='public') { - foreach($child->children() as $public){ + foreach($child->children() as $public) { $data['public'][$public->getName()]=(string)$public; } }elseif($child->getName()=='types') { $data['types']=array(); - foreach($child->children() as $type){ + foreach($child->children() as $type) { $data['types'][]=$type->getName(); } }elseif($child->getName()=='description') { @@ -459,7 +459,7 @@ class OC_App{ * - children: array that is empty if the key 'active' is false or * contains the subentries if the key 'active' is true */ - public static function getNavigation(){ + public static function getNavigation() { $navigation = self::proceedNavigation( self::$navigation ); return $navigation; } @@ -468,7 +468,7 @@ class OC_App{ * get the id of loaded app * @return string */ - public static function getCurrentApp(){ + public static function getCurrentApp() { $script=substr($_SERVER["SCRIPT_NAME"], strlen(OC::$WEBROOT)+1); $topFolder=substr($script, 0, strpos($script, '/')); if($topFolder=='apps') { @@ -483,9 +483,9 @@ class OC_App{ /** * get the forms for either settings, admin or personal */ - public static function getForms($type){ + public static function getForms($type) { $forms=array(); - switch($type){ + switch($type) { case 'settings': $source=self::$settingsForms; break; @@ -496,7 +496,7 @@ class OC_App{ $source=self::$personalForms; break; } - foreach($source as $form){ + foreach($source as $form) { $forms[]=include $form; } return $forms; @@ -505,32 +505,32 @@ class OC_App{ /** * register a settings form to be shown */ - public static function registerSettings($app,$page){ + public static function registerSettings($app,$page) { self::$settingsForms[]= $app.'/'.$page.'.php'; } /** * register an admin form to be shown */ - public static function registerAdmin($app,$page){ + public static function registerAdmin($app,$page) { self::$adminForms[]= $app.'/'.$page.'.php'; } /** * register a personal form to be shown */ - public static function registerPersonal($app,$page){ + public static function registerPersonal($app,$page) { self::$personalForms[]= $app.'/'.$page.'.php'; } /** * get a list of all apps in the apps folder */ - public static function getAllApps(){ + public static function getAllApps() { $apps=array(); foreach(OC::$APPSROOTS as $apps_dir) { $dh=opendir($apps_dir['path']); - while($file=readdir($dh)){ + while($file=readdir($dh)) { if($file[0]!='.' and is_file($apps_dir['path'].'/'.$file.'/appinfo/app.php')) { $apps[]=$file; } @@ -565,7 +565,7 @@ class OC_App{ * This is important if you upgrade ownCloud and have non ported 3rd * party apps installed. */ - public static function checkAppsRequirements($apps = array()){ + public static function checkAppsRequirements($apps = array()) { if (empty($apps)) { $apps = OC_App::getEnabledApps(); } @@ -583,7 +583,7 @@ class OC_App{ /** * get the installed version of all apps */ - public static function getAppVersions(){ + public static function getAppVersions() { static $versions; if (isset($versions)) { // simple cache, needs to be fixed return $versions; // when function is used besides in checkUpgrade @@ -591,7 +591,7 @@ class OC_App{ $versions=array(); $query = OC_DB::prepare( 'SELECT `appid`, `configvalue` FROM `*PREFIX*appconfig` WHERE `configkey` = \'installed_version\'' ); $result = $query->execute(); - while($row = $result->fetchRow()){ + while($row = $result->fetchRow()) { $versions[$row['appid']]=$row['configvalue']; } return $versions; @@ -601,7 +601,7 @@ class OC_App{ * update the database for the app and call the update script * @param string appid */ - public static function updateApp($appid){ + public static function updateApp($appid) { if(file_exists(self::getAppPath($appid).'/appinfo/database.xml')) { OC_DB::updateDbFromStructure(self::getAppPath($appid).'/appinfo/database.xml'); } @@ -615,10 +615,10 @@ class OC_App{ //set remote/public handelers $appData=self::getAppInfo($appid); - foreach($appData['remote'] as $name=>$path){ + foreach($appData['remote'] as $name=>$path) { OCP\CONFIG::setAppValue('core', 'remote_'.$name, $appid.'/'.$path); } - foreach($appData['public'] as $name=>$path){ + foreach($appData['public'] as $name=>$path) { OCP\CONFIG::setAppValue('core', 'public_'.$name, $appid.'/'.$path); } @@ -629,7 +629,7 @@ class OC_App{ * @param string appid * @return OC_FilesystemView */ - public static function getStorage($appid){ + public static function getStorage($appid) { if(OC_App::isEnabled($appid)) {//sanity check if(OC_User::isLoggedIn()) { $view = new OC_FilesystemView('/'.OC_User::getUser()); diff --git a/lib/appconfig.php b/lib/appconfig.php index 0e608b540bd..7f58b878504 100644 --- a/lib/appconfig.php +++ b/lib/appconfig.php @@ -45,13 +45,13 @@ class OC_Appconfig{ * This function returns a list of all apps that have at least one * entry in the appconfig table. */ - public static function getApps(){ + public static function getApps() { // No magic in here! $query = OC_DB::prepare( 'SELECT DISTINCT `appid` FROM `*PREFIX*appconfig`' ); $result = $query->execute(); $apps = array(); - while( $row = $result->fetchRow()){ + while( $row = $result->fetchRow()) { $apps[] = $row["appid"]; } @@ -66,13 +66,13 @@ class OC_Appconfig{ * This function gets all keys of an app. Please note that the values are * not returned. */ - public static function getKeys( $app ){ + public static function getKeys( $app ) { // No magic in here as well $query = OC_DB::prepare( 'SELECT `configkey` FROM `*PREFIX*appconfig` WHERE `appid` = ?' ); $result = $query->execute( array( $app )); $keys = array(); - while( $row = $result->fetchRow()){ + while( $row = $result->fetchRow()) { $keys[] = $row["configkey"]; } @@ -89,12 +89,12 @@ class OC_Appconfig{ * This function gets a value from the appconfig table. If the key does * not exist the default value will be returnes */ - public static function getValue( $app, $key, $default = null ){ + public static function getValue( $app, $key, $default = null ) { // At least some magic in here :-) $query = OC_DB::prepare( 'SELECT `configvalue` FROM `*PREFIX*appconfig` WHERE `appid` = ? AND `configkey` = ?' ); $result = $query->execute( array( $app, $key )); $row = $result->fetchRow(); - if($row){ + if($row) { return $row["configvalue"]; }else{ return $default; @@ -107,7 +107,7 @@ class OC_Appconfig{ * @param string $key * @return bool */ - public static function hasKey($app,$key){ + public static function hasKey($app,$key) { $exists = self::getKeys( $app ); return in_array( $key, $exists ); } @@ -121,9 +121,9 @@ class OC_Appconfig{ * * Sets a value. If the key did not exist before it will be created. */ - public static function setValue( $app, $key, $value ){ + public static function setValue( $app, $key, $value ) { // Does the key exist? yes: update. No: insert - if(! self::hasKey($app,$key)){ + if(! self::hasKey($app,$key)) { $query = OC_DB::prepare( 'INSERT INTO `*PREFIX*appconfig` ( `appid`, `configkey`, `configvalue` ) VALUES( ?, ?, ? )' ); $query->execute( array( $app, $key, $value )); } @@ -141,7 +141,7 @@ class OC_Appconfig{ * * Deletes a key. */ - public static function deleteKey( $app, $key ){ + public static function deleteKey( $app, $key ) { // Boring! $query = OC_DB::prepare( 'DELETE FROM `*PREFIX*appconfig` WHERE `appid` = ? AND `configkey` = ?' ); $query->execute( array( $app, $key )); @@ -156,7 +156,7 @@ class OC_Appconfig{ * * Removes all keys in appconfig belonging to the app. */ - public static function deleteApp( $app ){ + public static function deleteApp( $app ) { // Nothing special $query = OC_DB::prepare( 'DELETE FROM `*PREFIX*appconfig` WHERE `appid` = ?' ); $query->execute( array( $app )); @@ -170,14 +170,14 @@ class OC_Appconfig{ * @param key * @return array */ - public static function getValues($app,$key){ - if($app!==false and $key!==false){ + public static function getValues($app,$key) { + if($app!==false and $key!==false) { return false; } $fields='`configvalue`'; $where='WHERE'; $params=array(); - if($app!==false){ + if($app!==false) { $fields.=', `configkey`'; $where.=' `appid` = ?'; $params[]=$app; @@ -192,7 +192,7 @@ class OC_Appconfig{ $query=OC_DB::prepare($queryString); $result=$query->execute($params); $values=array(); - while($row=$result->fetchRow()){ + while($row=$result->fetchRow()) { $values[$row[$key]]=$row['configvalue']; } return $values; diff --git a/lib/archive.php b/lib/archive.php index 5ac4edbfd1e..b4459c2b6ce 100644 --- a/lib/archive.php +++ b/lib/archive.php @@ -12,15 +12,15 @@ abstract class OC_Archive{ * @param string path * @return OC_Archive */ - public static function open($path){ + public static function open($path) { $ext=substr($path,strrpos($path,'.')); - switch($ext){ + switch($ext) { case '.zip': return new OC_Archive_ZIP($path); case '.gz': case '.bz': case '.bz2': - if(strpos($path,'.tar.')){ + if(strpos($path,'.tar.')) { return new OC_Archive_TAR($path); } break; @@ -118,14 +118,14 @@ abstract class OC_Archive{ * @param string source * @return bool */ - function addRecursive($path,$source){ - if($dh=opendir($source)){ + function addRecursive($path,$source) { + if($dh=opendir($source)) { $this->addFolder($path); - while($file=readdir($dh)){ - if($file=='.' or $file=='..'){ + while($file=readdir($dh)) { + if($file=='.' or $file=='..') { continue; } - if(is_dir($source.'/'.$file)){ + if(is_dir($source.'/'.$file)) { $this->addRecursive($path.'/'.$file,$source.'/'.$file); }else{ $this->addFile($path.'/'.$file,$source.'/'.$file); diff --git a/lib/archive/tar.php b/lib/archive/tar.php index 095362d0cd6..ebd581fc162 100644 --- a/lib/archive/tar.php +++ b/lib/archive/tar.php @@ -21,7 +21,7 @@ class OC_Archive_TAR extends OC_Archive{ private $tar=null; private $path; - function __construct($source){ + function __construct($source) { $types=array(null,'gz','bz'); $this->path=$source; $this->tar=new Archive_Tar($source,$types[self::getTarType($source)]); @@ -32,10 +32,10 @@ class OC_Archive_TAR extends OC_Archive{ * @param string file * @return str */ - static public function getTarType($file){ - if(strpos($file,'.')){ + static public function getTarType($file) { + if(strpos($file,'.')) { $extension=substr($file,strrpos($file,'.')); - switch($extension){ + switch($extension) { case 'gz': case 'tgz': return self::GZIP; @@ -55,19 +55,19 @@ class OC_Archive_TAR extends OC_Archive{ * @param string path * @return bool */ - function addFolder($path){ + function addFolder($path) { $tmpBase=OC_Helper::tmpFolder(); - if(substr($path,-1,1)!='/'){ + if(substr($path,-1,1)!='/') { $path.='/'; } - if($this->fileExists($path)){ + if($this->fileExists($path)) { return false; } $parts=explode('/',$path); $folder=$tmpBase; - foreach($parts as $part){ + foreach($parts as $part) { $folder.='/'.$part; - if(!is_dir($folder)){ + if(!is_dir($folder)) { mkdir($folder); } } @@ -82,11 +82,11 @@ class OC_Archive_TAR extends OC_Archive{ * @param string source either a local file or string data * @return bool */ - function addFile($path,$source=''){ - if($this->fileExists($path)){ + function addFile($path,$source='') { + if($this->fileExists($path)) { $this->remove($path); } - if($source and $source[0]=='/' and file_exists($source)){ + if($source and $source[0]=='/' and file_exists($source)) { $header=array(); $dummy=''; $this->tar->_openAppend(); @@ -104,7 +104,7 @@ class OC_Archive_TAR extends OC_Archive{ * @param string dest * @return bool */ - function rename($source,$dest){ + function rename($source,$dest) { //no proper way to delete, rename entire archive, rename file and remake archive $tmp=OCP\Files::tmpFolder(); $this->tar->extract($tmp); @@ -118,10 +118,10 @@ class OC_Archive_TAR extends OC_Archive{ return true; } - private function getHeader($file){ + private function getHeader($file) { $headers=$this->tar->listContent(); - foreach($headers as $header){ - if($file==$header['filename'] or $file.'/'==$header['filename'] or '/'.$file.'/'==$header['filename'] or '/'.$file==$header['filename']){ + foreach($headers as $header) { + if($file==$header['filename'] or $file.'/'==$header['filename'] or '/'.$file.'/'==$header['filename'] or '/'.$file==$header['filename']) { return $header; } } @@ -133,7 +133,7 @@ class OC_Archive_TAR extends OC_Archive{ * @param string path * @return int */ - function filesize($path){ + function filesize($path) { $stat=$this->getHeader($path); return $stat['size']; } @@ -142,7 +142,7 @@ class OC_Archive_TAR extends OC_Archive{ * @param string path * @return int */ - function mtime($path){ + function mtime($path) { $stat=$this->getHeader($path); return $stat['mtime']; } @@ -152,20 +152,20 @@ class OC_Archive_TAR extends OC_Archive{ * @param path * @return array */ - function getFolder($path){ + function getFolder($path) { $files=$this->getFiles(); $folderContent=array(); $pathLength=strlen($path); - foreach($files as $file){ - if($file[0]=='/'){ + foreach($files as $file) { + if($file[0]=='/') { $file=substr($file,1); } - if(substr($file,0,$pathLength)==$path and $file!=$path){ + if(substr($file,0,$pathLength)==$path and $file!=$path) { $result=substr($file,$pathLength); - if($pos=strpos($result,'/')){ + if($pos=strpos($result,'/')) { $result=substr($result,0,$pos+1); } - if(array_search($result,$folderContent)===false){ + if(array_search($result,$folderContent)===false) { $folderContent[]=$result; } } @@ -176,13 +176,13 @@ class OC_Archive_TAR extends OC_Archive{ *get all files in the archive * @return array */ - function getFiles(){ - if($this->fileList){ + function getFiles() { + if($this->fileList) { return $this->fileList; } $headers=$this->tar->listContent(); $files=array(); - foreach($headers as $header){ + foreach($headers as $header) { $files[]=$header['filename']; } $this->fileList=$files; @@ -193,7 +193,7 @@ class OC_Archive_TAR extends OC_Archive{ * @param string path * @return string */ - function getFile($path){ + function getFile($path) { return $this->tar->extractInString($path); } /** @@ -202,17 +202,17 @@ class OC_Archive_TAR extends OC_Archive{ * @param string dest * @return bool */ - function extractFile($path,$dest){ + function extractFile($path,$dest) { $tmp=OCP\Files::tmpFolder(); - if(!$this->fileExists($path)){ + if(!$this->fileExists($path)) { return false; } - if($this->fileExists('/'.$path)){ + if($this->fileExists('/'.$path)) { $success=$this->tar->extractList(array('/'.$path),$tmp); }else{ $success=$this->tar->extractList(array($path),$tmp); } - if($success){ + if($success) { rename($tmp.$path,$dest); } OCP\Files::rmdirr($tmp); @@ -224,7 +224,7 @@ class OC_Archive_TAR extends OC_Archive{ * @param string dest * @return bool */ - function extract($dest){ + function extract($dest) { return $this->tar->extract($dest); } /** @@ -232,23 +232,23 @@ class OC_Archive_TAR extends OC_Archive{ * @param string path * @return bool */ - function fileExists($path){ + function fileExists($path) { $files=$this->getFiles(); - if((array_search($path,$files)!==false) or (array_search($path.'/',$files)!==false)){ + if((array_search($path,$files)!==false) or (array_search($path.'/',$files)!==false)) { return true; }else{ $folderPath=$path; - if(substr($folderPath,-1,1)!='/'){ + if(substr($folderPath,-1,1)!='/') { $folderPath.='/'; } $pathLength=strlen($folderPath); - foreach($files as $file){ - if(strlen($file)>$pathLength and substr($file,0,$pathLength)==$folderPath){ + foreach($files as $file) { + if(strlen($file)>$pathLength and substr($file,0,$pathLength)==$folderPath) { return true; } } } - if($path[0]!='/'){//not all programs agree on the use of a leading / + if($path[0]!='/') {//not all programs agree on the use of a leading / return $this->fileExists('/'.$path); }else{ return false; @@ -260,8 +260,8 @@ class OC_Archive_TAR extends OC_Archive{ * @param string path * @return bool */ - function remove($path){ - if(!$this->fileExists($path)){ + function remove($path) { + if(!$this->fileExists($path)) { return false; } $this->fileList=false; @@ -281,19 +281,19 @@ class OC_Archive_TAR extends OC_Archive{ * @param string mode * @return resource */ - function getStream($path,$mode){ - if(strrpos($path,'.')!==false){ + function getStream($path,$mode) { + if(strrpos($path,'.')!==false) { $ext=substr($path,strrpos($path,'.')); }else{ $ext=''; } $tmpFile=OCP\Files::tmpFile($ext); - if($this->fileExists($path)){ + if($this->fileExists($path)) { $this->extractFile($path,$tmpFile); - }elseif($mode=='r' or $mode=='rb'){ + }elseif($mode=='r' or $mode=='rb') { return false; } - if($mode=='r' or $mode=='rb'){ + if($mode=='r' or $mode=='rb') { return fopen($tmpFile,$mode); }else{ OC_CloseStreamWrapper::$callBacks[$tmpFile]=array($this,'writeBack'); @@ -306,8 +306,8 @@ class OC_Archive_TAR extends OC_Archive{ /** * write back temporary files */ - function writeBack($tmpFile){ - if(isset(self::$tempFiles[$tmpFile])){ + function writeBack($tmpFile) { + if(isset(self::$tempFiles[$tmpFile])) { $this->addFile(self::$tempFiles[$tmpFile],$tmpFile); unlink($tmpFile); } @@ -316,8 +316,8 @@ class OC_Archive_TAR extends OC_Archive{ /** * reopen the archive to ensure everything is written */ - private function reopen(){ - if($this->tar){ + private function reopen() { + if($this->tar) { $this->tar->_close(); $this->tar=null; } diff --git a/lib/archive/zip.php b/lib/archive/zip.php index 396b1f6c054..45992ee3d89 100644 --- a/lib/archive/zip.php +++ b/lib/archive/zip.php @@ -13,10 +13,10 @@ class OC_Archive_ZIP extends OC_Archive{ private $zip=null; private $path; - function __construct($source){ + function __construct($source) { $this->path=$source; $this->zip=new ZipArchive(); - if($this->zip->open($source,ZipArchive::CREATE)){ + if($this->zip->open($source,ZipArchive::CREATE)) { }else{ OCP\Util::writeLog('files_archive','Error while opening archive '.$source,OCP\Util::WARN); } @@ -26,7 +26,7 @@ class OC_Archive_ZIP extends OC_Archive{ * @param string path * @return bool */ - function addFolder($path){ + function addFolder($path) { return $this->zip->addEmptyDir($path); } /** @@ -35,13 +35,13 @@ class OC_Archive_ZIP extends OC_Archive{ * @param string source either a local file or string data * @return bool */ - function addFile($path,$source=''){ - if($source and $source[0]=='/' and file_exists($source)){ + function addFile($path,$source='') { + if($source and $source[0]=='/' and file_exists($source)) { $result=$this->zip->addFile($source,$path); }else{ $result=$this->zip->addFromString($path,$source); } - if($result){ + if($result) { $this->zip->close();//close and reopen to save the zip $this->zip->open($this->path); } @@ -53,7 +53,7 @@ class OC_Archive_ZIP extends OC_Archive{ * @param string dest * @return bool */ - function rename($source,$dest){ + function rename($source,$dest) { $source=$this->stripPath($source); $dest=$this->stripPath($dest); $this->zip->renameName($source,$dest); @@ -63,7 +63,7 @@ class OC_Archive_ZIP extends OC_Archive{ * @param string path * @return int */ - function filesize($path){ + function filesize($path) { $stat=$this->zip->statName($path); return $stat['size']; } @@ -72,7 +72,7 @@ class OC_Archive_ZIP extends OC_Archive{ * @param string path * @return int */ - function mtime($path){ + function mtime($path) { return filemtime($this->path); } /** @@ -80,13 +80,13 @@ class OC_Archive_ZIP extends OC_Archive{ * @param path * @return array */ - function getFolder($path){ + function getFolder($path) { $files=$this->getFiles(); $folderContent=array(); $pathLength=strlen($path); - foreach($files as $file){ - if(substr($file,0,$pathLength)==$path and $file!=$path){ - if(strrpos(substr($file,0,-1),'/')<=$pathLength){ + foreach($files as $file) { + if(substr($file,0,$pathLength)==$path and $file!=$path) { + if(strrpos(substr($file,0,-1),'/')<=$pathLength) { $folderContent[]=substr($file,$pathLength); } } @@ -97,10 +97,10 @@ class OC_Archive_ZIP extends OC_Archive{ *get all files in the archive * @return array */ - function getFiles(){ + function getFiles() { $fileCount=$this->zip->numFiles; $files=array(); - for($i=0;$i<$fileCount;$i++){ + for($i=0;$i<$fileCount;$i++) { $files[]=$this->zip->getNameIndex($i); } return $files; @@ -110,7 +110,7 @@ class OC_Archive_ZIP extends OC_Archive{ * @param string path * @return string */ - function getFile($path){ + function getFile($path) { return $this->zip->getFromName($path); } /** @@ -119,7 +119,7 @@ class OC_Archive_ZIP extends OC_Archive{ * @param string dest * @return bool */ - function extractFile($path,$dest){ + function extractFile($path,$dest) { $fp = $this->zip->getStream($path); file_put_contents($dest,$fp); } @@ -129,7 +129,7 @@ class OC_Archive_ZIP extends OC_Archive{ * @param string dest * @return bool */ - function extract($dest){ + function extract($dest) { return $this->zip->extractTo($dest); } /** @@ -137,7 +137,7 @@ class OC_Archive_ZIP extends OC_Archive{ * @param string path * @return bool */ - function fileExists($path){ + function fileExists($path) { return ($this->zip->locateName($path)!==false) or ($this->zip->locateName($path.'/')!==false); } /** @@ -145,8 +145,8 @@ class OC_Archive_ZIP extends OC_Archive{ * @param string path * @return bool */ - function remove($path){ - if($this->fileExists($path.'/')){ + function remove($path) { + if($this->fileExists($path.'/')) { return $this->zip->deleteName($path.'/'); }else{ return $this->zip->deleteName($path); @@ -158,18 +158,18 @@ class OC_Archive_ZIP extends OC_Archive{ * @param string mode * @return resource */ - function getStream($path,$mode){ - if($mode=='r' or $mode=='rb'){ + function getStream($path,$mode) { + if($mode=='r' or $mode=='rb') { return $this->zip->getStream($path); }else{//since we cant directly get a writable stream, make a temp copy of the file and put it back in the archive when the stream is closed - if(strrpos($path,'.')!==false){ + if(strrpos($path,'.')!==false) { $ext=substr($path,strrpos($path,'.')); }else{ $ext=''; } $tmpFile=OCP\Files::tmpFile($ext); OC_CloseStreamWrapper::$callBacks[$tmpFile]=array($this,'writeBack'); - if($this->fileExists($path)){ + if($this->fileExists($path)) { $this->extractFile($path,$tmpFile); } self::$tempFiles[$tmpFile]=$path; @@ -181,15 +181,15 @@ class OC_Archive_ZIP extends OC_Archive{ /** * write back temporary files */ - function writeBack($tmpFile){ - if(isset(self::$tempFiles[$tmpFile])){ + function writeBack($tmpFile) { + if(isset(self::$tempFiles[$tmpFile])) { $this->addFile(self::$tempFiles[$tmpFile],$tmpFile); unlink($tmpFile); } } - private function stripPath($path){ - if(!$path || $path[0]=='/'){ + private function stripPath($path) { + if(!$path || $path[0]=='/') { return substr($path,1); }else{ return $path; diff --git a/lib/backgroundjob/queuedtask.php b/lib/backgroundjob/queuedtask.php index a7ec3efbf33..8264e1a0ae6 100644 --- a/lib/backgroundjob/queuedtask.php +++ b/lib/backgroundjob/queuedtask.php @@ -29,7 +29,7 @@ class OC_BackgroundJob_QueuedTask{ * @param $id ID of the task * @return associative array */ - public static function find( $id ){ + public static function find( $id ) { $stmt = OC_DB::prepare( 'SELECT * FROM `*PREFIX*queuedtasks` WHERE `id` = ?' ); $result = $stmt->execute(array($id)); return $result->fetchRow(); @@ -39,14 +39,14 @@ class OC_BackgroundJob_QueuedTask{ * @brief Gets all queued tasks * @return array with associative arrays */ - public static function all(){ + public static function all() { // Array for objects $return = array(); // Get Data $stmt = OC_DB::prepare( 'SELECT * FROM `*PREFIX*queuedtasks`' ); $result = $stmt->execute(array()); - while( $row = $result->fetchRow()){ + while( $row = $result->fetchRow()) { $return[] = $row; } @@ -58,14 +58,14 @@ class OC_BackgroundJob_QueuedTask{ * @param $app app name * @return array with associative arrays */ - public static function whereAppIs( $app ){ + public static function whereAppIs( $app ) { // Array for objects $return = array(); // Get Data $stmt = OC_DB::prepare( 'SELECT * FROM `*PREFIX*queuedtasks` WHERE `app` = ?' ); $result = $stmt->execute(array($app)); - while( $row = $result->fetchRow()){ + while( $row = $result->fetchRow()) { $return[] = $row; } @@ -81,7 +81,7 @@ class OC_BackgroundJob_QueuedTask{ * @param $parameters all useful data as text * @return id of task */ - public static function add( $app, $klass, $method, $parameters ){ + public static function add( $app, $klass, $method, $parameters ) { $stmt = OC_DB::prepare( 'INSERT INTO `*PREFIX*queuedtasks` (`app`, `klass`, `method`, `parameters`) VALUES(?,?,?,?)' ); $result = $stmt->execute(array($app, $klass, $method, $parameters )); @@ -95,7 +95,7 @@ class OC_BackgroundJob_QueuedTask{ * * Deletes a report */ - public static function delete( $id ){ + public static function delete( $id ) { $stmt = OC_DB::prepare( 'DELETE FROM `*PREFIX*queuedtasks` WHERE `id` = ?' ); $result = $stmt->execute(array($id)); diff --git a/lib/backgroundjob/regulartask.php b/lib/backgroundjob/regulartask.php index 53bd4eb5e9b..9976872ee13 100644 --- a/lib/backgroundjob/regulartask.php +++ b/lib/backgroundjob/regulartask.php @@ -32,7 +32,7 @@ class OC_BackgroundJob_RegularTask{ * @param $method method name * @return true */ - static public function register( $klass, $method ){ + static public function register( $klass, $method ) { // Create the data structure self::$registered["$klass-$method"] = array( $klass, $method ); @@ -46,7 +46,7 @@ class OC_BackgroundJob_RegularTask{ * * key is string "$klass-$method", value is array( $klass, $method ) */ - static public function all(){ + static public function all() { return self::$registered; } } diff --git a/lib/backgroundjob/worker.php b/lib/backgroundjob/worker.php index 8684e0df117..e966ac9647c 100644 --- a/lib/backgroundjob/worker.php +++ b/lib/backgroundjob/worker.php @@ -34,14 +34,14 @@ class OC_BackgroundJob_Worker{ * This method should be called by cli scripts that do not let the user * wait. */ - public static function doAllSteps(){ + public static function doAllSteps() { // Do our regular work $lasttask = OC_Appconfig::getValue( 'core', 'backgroundjobs_task', '' ); $regular_tasks = OC_BackgroundJob_RegularTask::all(); ksort( $regular_tasks ); - foreach( $regular_tasks as $key => $value ){ - if( strcmp( $key, $lasttask ) > 0 ){ + foreach( $regular_tasks as $key => $value ) { + if( strcmp( $key, $lasttask ) > 0 ) { // Set "restart here" config value OC_Appconfig::setValue( 'core', 'backgroundjobs_task', $key ); call_user_func( $value ); @@ -52,7 +52,7 @@ class OC_BackgroundJob_Worker{ // Do our queued tasks $queued_tasks = OC_BackgroundJob_QueuedTask::all(); - foreach( $queued_tasks as $task ){ + foreach( $queued_tasks as $task ) { OC_BackgroundJob_QueuedTask::delete( $task['id'] ); call_user_func( array( $task['klass'], $task['method'] ), $task['parameters'] ); } @@ -68,10 +68,10 @@ class OC_BackgroundJob_Worker{ * with the next step. This method should be used by webcron and ajax * services. */ - public static function doNextStep(){ + public static function doNextStep() { $laststep = OC_Appconfig::getValue( 'core', 'backgroundjobs_step', 'regular_tasks' ); - if( $laststep == 'regular_tasks' ){ + if( $laststep == 'regular_tasks' ) { // get last app $lasttask = OC_Appconfig::getValue( 'core', 'backgroundjobs_task', '' ); @@ -81,8 +81,8 @@ class OC_BackgroundJob_Worker{ $done = false; // search for next background job - foreach( $regular_tasks as $key => $value ){ - if( strcmp( $key, $lasttask ) > 0 ){ + foreach( $regular_tasks as $key => $value ) { + if( strcmp( $key, $lasttask ) > 0 ) { OC_Appconfig::setValue( 'core', 'backgroundjobs_task', $key ); $done = true; call_user_func( $value ); @@ -90,14 +90,14 @@ class OC_BackgroundJob_Worker{ } } - if( $done == false ){ + if( $done == false ) { // Next time load queued tasks OC_Appconfig::setValue( 'core', 'backgroundjobs_step', 'queued_tasks' ); } } else{ $tasks = OC_BackgroundJob_QueuedTask::all(); - if( count( $tasks )){ + if( count( $tasks )) { $task = $tasks[0]; // delete job before we execute it. This prevents endless loops // of failing jobs. diff --git a/lib/base.php b/lib/base.php index a145fd1cf23..1c6cc70b0e8 100644 --- a/lib/base.php +++ b/lib/base.php @@ -70,7 +70,7 @@ class OC{ /** * SPL autoload */ - public static function autoload($className){ + public static function autoload($className) { if(array_key_exists($className, OC::$CLASSPATH)) { /** @TODO: Remove this when necessary Remove "apps/" from inclusion path for smooth migration to mutli app dir @@ -102,7 +102,7 @@ class OC{ return false; } - public static function initPaths(){ + public static function initPaths() { // calculate the root directories OC::$SERVERROOT=str_replace("\\", '/', substr(__FILE__, 0, -13)); OC::$SUBURI= str_replace("\\", "/", substr(realpath($_SERVER["SCRIPT_FILENAME"]), strlen(OC::$SERVERROOT))); @@ -260,7 +260,7 @@ class OC{ session_start(); } - public static function init(){ + public static function init() { // register autoloader spl_autoload_register(array('OC','autoload')); setlocale(LC_ALL, 'en_US.UTF-8'); @@ -556,7 +556,7 @@ class OC{ protected static function tryBasicAuthLogin() { if (!isset($_SERVER["PHP_AUTH_USER"]) - || !isset($_SERVER["PHP_AUTH_PW"])){ + || !isset($_SERVER["PHP_AUTH_PW"])) { return false; } OC_App::loadApps(array('authentication')); diff --git a/lib/cache/apc.php b/lib/cache/apc.php index c192fe2f196..6dda0a0ff8c 100644 --- a/lib/cache/apc.php +++ b/lib/cache/apc.php @@ -43,7 +43,7 @@ class OC_Cache_APC { return apc_delete($this->getNamespace().$key); } - public function clear($prefix=''){ + public function clear($prefix='') { $ns = $this->getNamespace().$prefix; $cache = apc_cache_info('user'); foreach($cache['cache_list'] as $entry) { diff --git a/lib/cache/broker.php b/lib/cache/broker.php index c2aceabaf53..a161dbfa3bb 100644 --- a/lib/cache/broker.php +++ b/lib/cache/broker.php @@ -46,7 +46,7 @@ class OC_Cache_Broker { return $this->slow_cache->remove($key); } - public function clear($prefix=''){ + public function clear($prefix='') { $this->fast_cache->clear($prefix); $this->slow_cache->clear($prefix); } diff --git a/lib/cache/file.php b/lib/cache/file.php index b9073dee09a..a4f83f76c94 100644 --- a/lib/cache/file.php +++ b/lib/cache/file.php @@ -13,7 +13,7 @@ class OC_Cache_File{ if (isset($this->storage)) { return $this->storage; } - if(OC_User::isLoggedIn()){ + if(OC_User::isLoggedIn()) { $subdir = 'cache'; $view = new OC_FilesystemView('/'.OC_User::getUser()); if(!$view->file_exists($subdir)) { @@ -61,18 +61,18 @@ class OC_Cache_File{ public function remove($key) { $storage = $this->getStorage(); - if(!$storage){ + if(!$storage) { return false; } return $storage->unlink($key); } - public function clear($prefix=''){ + public function clear($prefix='') { $storage = $this->getStorage(); - if($storage and $storage->is_dir('/')){ + if($storage and $storage->is_dir('/')) { $dh=$storage->opendir('/'); - while($file=readdir($dh)){ - if($file!='.' and $file!='..' and ($prefix==='' || strpos($file, $prefix) === 0)){ + while($file=readdir($dh)) { + if($file!='.' and $file!='..' and ($prefix==='' || strpos($file, $prefix) === 0)) { $storage->unlink('/'.$file); } } diff --git a/lib/cache/fileglobal.php b/lib/cache/fileglobal.php index e551ad472a2..6d01964e185 100644 --- a/lib/cache/fileglobal.php +++ b/lib/cache/fileglobal.php @@ -57,20 +57,20 @@ class OC_Cache_FileGlobal{ public function remove($key) { $cache_dir = self::getCacheDir(); - if(!$cache_dir){ + if(!$cache_dir) { return false; } $key = $this->fixKey($key); return unlink($cache_dir.$key); } - public function clear($prefix=''){ + public function clear($prefix='') { $cache_dir = self::getCacheDir(); $prefix = $this->fixKey($prefix); - if($cache_dir and is_dir($cache_dir)){ + if($cache_dir and is_dir($cache_dir)) { $dh=opendir($cache_dir); - while($file=readdir($dh)){ - if($file!='.' and $file!='..' and ($prefix==='' || strpos($file, $prefix) === 0)){ + while($file=readdir($dh)) { + if($file!='.' and $file!='..' and ($prefix==='' || strpos($file, $prefix) === 0)) { unlink($cache_dir.$file); } } diff --git a/lib/cache/xcache.php b/lib/cache/xcache.php index 951f9b47545..0739e4a2fa2 100644 --- a/lib/cache/xcache.php +++ b/lib/cache/xcache.php @@ -28,7 +28,7 @@ class OC_Cache_XCache { } public function set($key, $value, $ttl=0) { - if($ttl>0){ + if($ttl>0) { return xcache_set($this->getNamespace().$key,$value,$ttl); }else{ return xcache_set($this->getNamespace().$key,$value); @@ -43,7 +43,7 @@ class OC_Cache_XCache { return xcache_unset($this->getNamespace().$key); } - public function clear($prefix=''){ + public function clear($prefix='') { xcache_unset_by_prefix($this->getNamespace().$prefix); return true; } diff --git a/lib/config.php b/lib/config.php index 390469beacf..032d401264c 100644 --- a/lib/config.php +++ b/lib/config.php @@ -52,7 +52,7 @@ class OC_Config{ * This function returns all keys saved in config.php. Please note that it * does not return the values. */ - public static function getKeys(){ + public static function getKeys() { self::readData(); return array_keys( self::$cache ); @@ -67,7 +67,7 @@ class OC_Config{ * This function gets the value from config.php. If it does not exist, * $default will be returned. */ - public static function getValue( $key, $default = null ){ + public static function getValue( $key, $default = null ) { self::readData(); if( array_key_exists( $key, self::$cache )) { @@ -86,7 +86,7 @@ class OC_Config{ * This function sets the value and writes the config.php. If the file can * not be written, false will be returned. */ - public static function setValue( $key, $value ){ + public static function setValue( $key, $value ) { self::readData(); // Add change @@ -105,7 +105,7 @@ class OC_Config{ * This function removes a key from the config.php. If owncloud has no * write access to config.php, the function will return false. */ - public static function deleteKey( $key ){ + public static function deleteKey( $key ) { self::readData(); if( array_key_exists( $key, self::$cache )) { @@ -125,7 +125,7 @@ class OC_Config{ * * Reads the config file and saves it to the cache */ - private static function readData(){ + private static function readData() { if( self::$init ) { return true; } @@ -153,7 +153,7 @@ class OC_Config{ * Saves the config to the config file. * */ - public static function writeData(){ + public static function writeData() { // Create a php file ... $content = "<?php\n\$CONFIG = "; $content .= var_export(self::$cache, true); diff --git a/lib/connector/sabre/auth.php b/lib/connector/sabre/auth.php index 8197571e949..34fc5fee50c 100644 --- a/lib/connector/sabre/auth.php +++ b/lib/connector/sabre/auth.php @@ -30,13 +30,13 @@ class OC_Connector_Sabre_Auth extends Sabre_DAV_Auth_Backend_AbstractBasic { * * @return bool */ - protected function validateUserPass($username, $password){ + protected function validateUserPass($username, $password) { if (OC_User::isLoggedIn()) { OC_Util::setupFS($username); return true; } else { OC_Util::setUpFS();//login hooks may need early access to the filesystem - if(OC_User::login($username,$password)){ + if(OC_User::login($username,$password)) { OC_Util::setUpFS($username); return true; } diff --git a/lib/connector/sabre/directory.php b/lib/connector/sabre/directory.php index a7502446152..8fff77ac749 100644 --- a/lib/connector/sabre/directory.php +++ b/lib/connector/sabre/directory.php @@ -119,7 +119,7 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa $paths[] = $this->path.'/'.$info['name']; } $properties = array_fill_keys($paths, array()); - if(count($paths)>0){ + if(count($paths)>0) { $placeholders = join(',', array_fill(0, count($paths), '?')); $query = OC_DB::prepare( 'SELECT * FROM `*PREFIX*properties` WHERE `userid` = ?' . ' AND `propertypath` IN ('.$placeholders.')' ); array_unshift($paths, OC_User::getUser()); // prepend userid diff --git a/lib/connector/sabre/locks.php b/lib/connector/sabre/locks.php index a01653d960a..dbcc57558e0 100644 --- a/lib/connector/sabre/locks.php +++ b/lib/connector/sabre/locks.php @@ -77,7 +77,7 @@ class OC_Connector_Sabre_Locks extends Sabre_DAV_Locks_Backend_Abstract { $result = $stmt->execute( $params ); $lockList = array(); - while( $row = $result->fetchRow()){ + while( $row = $result->fetchRow()) { $lockInfo = new Sabre_DAV_Locks_LockInfo(); $lockInfo->owner = $row['owner']; diff --git a/lib/connector/sabre/node.php b/lib/connector/sabre/node.php index afcabe7bef6..2916575e2d5 100644 --- a/lib/connector/sabre/node.php +++ b/lib/connector/sabre/node.php @@ -145,7 +145,7 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr $propertyName = preg_replace("/^{.*}/", "", $propertyName); // remove leading namespace from property name // If it was null, we need to delete the property if (is_null($propertyValue)) { - if(array_key_exists( $propertyName, $existing )){ + if(array_key_exists( $propertyName, $existing )) { $query = OC_DB::prepare( 'DELETE FROM `*PREFIX*properties` WHERE `userid` = ? AND `propertypath` = ? AND `propertyname` = ?' ); $query->execute( array( OC_User::getUser(), $this->path, $propertyName )); } @@ -154,7 +154,7 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr if( strcmp( $propertyName, "lastmodified") === 0) { $this->touch($propertyValue); } else { - if(!array_key_exists( $propertyName, $existing )){ + if(!array_key_exists( $propertyName, $existing )) { $query = OC_DB::prepare( 'INSERT INTO `*PREFIX*properties` (`userid`,`propertypath`,`propertyname`,`propertyvalue`) VALUES(?,?,?,?)' ); $query->execute( array( OC_User::getUser(), $this->path, $propertyName,$propertyValue )); } else { @@ -186,13 +186,13 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr $result = $query->execute( array( OC_User::getUser(), $this->path )); $this->property_cache = array(); - while( $row = $result->fetchRow()){ + while( $row = $result->fetchRow()) { $this->property_cache[$row['propertyname']] = $row['propertyvalue']; } } // if the array was empty, we need to return everything - if(count($properties) == 0){ + if(count($properties) == 0) { return $this->property_cache; } diff --git a/lib/connector/sabre/principal.php b/lib/connector/sabre/principal.php index d1456f7c642..cfc72eda9f9 100644 --- a/lib/connector/sabre/principal.php +++ b/lib/connector/sabre/principal.php @@ -115,6 +115,6 @@ class OC_Connector_Sabre_Principal implements Sabre_DAVACL_IPrincipalBackend { public function setGroupMemberSet($principal, array $members) { throw new Sabre_DAV_Exception('Setting members of the group is not supported yet'); } - function updatePrincipal($path, $mutations){return 0;} - function searchPrincipals($prefixPath, array $searchProperties){return 0;} + function updatePrincipal($path, $mutations) {return 0;} + function searchPrincipals($prefixPath, array $searchProperties) {return 0;} } diff --git a/lib/db.php b/lib/db.php index bd3afe2b06e..ee69e5f8299 100644 --- a/lib/db.php +++ b/lib/db.php @@ -41,7 +41,7 @@ class OC_DB { * check which backend we should use * @return BACKEND_MDB2 or BACKEND_PDO */ - private static function getDBBackend(){ + private static function getDBBackend() { //check if we can use PDO, else use MDB2 (installation always needs to be done my mdb2) if(class_exists('PDO') && OC_Config::getValue('installed', false)) { $type = OC_Config::getValue( "dbtype", "sqlite" ); @@ -63,7 +63,7 @@ class OC_DB { * * Connects to the database as specified in config.php */ - public static function connect($backend=null){ + public static function connect($backend=null) { if(self::$connection) { return; } @@ -84,7 +84,7 @@ class OC_DB { /** * connect to the database using pdo */ - public static function connectPDO(){ + public static function connectPDO() { if(self::$connection) { if(self::$backend==self::BACKEND_MDB2) { self::disconnect(); @@ -149,7 +149,7 @@ class OC_DB { } try{ self::$PDO=new PDO($dsn, $user, $pass, $opts); - }catch(PDOException $e){ + }catch(PDOException $e) { echo( '<b>can not connect to database, using '.$type.'. ('.$e->getMessage().')</center>'); die(); } @@ -194,7 +194,7 @@ class OC_DB { 'quote_identifier' => true ); // Add the dsn according to the database type - switch($type){ + switch($type) { case 'sqlite': case 'sqlite3': $dsn = array( @@ -262,7 +262,7 @@ class OC_DB { * * 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 ) { if (!is_null($limit) && $limit != -1) { if (self::$backend == self::BACKEND_MDB2) { @@ -305,7 +305,7 @@ class OC_DB { }else{ try{ $result=self::$connection->prepare($query); - }catch(PDOException $e){ + }catch(PDOException $e) { $entry = 'DB Error: "'.$e->getMessage().'"<br />'; $entry .= 'Offending command was: '.$query.'<br />'; OC_Log::write('core', $entry,OC_Log::FATAL); @@ -327,7 +327,7 @@ class OC_DB { * Call this method right after the insert command or other functions may * cause trouble! */ - public static function insertid($table=null){ + public static function insertid($table=null) { self::connect(); if($table !== null) { $prefix = OC_Config::getValue( "dbtableprefix", "oc_" ); @@ -343,7 +343,7 @@ class OC_DB { * * This is good bye, good bye, yeah! */ - public static function disconnect(){ + public static function disconnect() { // Cut connection if required if(self::$connection) { if(self::$backend==self::BACKEND_MDB2) { @@ -364,7 +364,7 @@ class OC_DB { * * TODO: write more documentation */ - public static function getDbStructure( $file ,$mode=MDB2_SCHEMA_DUMP_STRUCTURE){ + public static function getDbStructure( $file ,$mode=MDB2_SCHEMA_DUMP_STRUCTURE) { self::connectScheme(); // write the scheme @@ -386,7 +386,7 @@ class OC_DB { * * TODO: write more documentation */ - public static function createDbFromStructure( $file ){ + public static function createDbFromStructure( $file ) { $CONFIG_DBNAME = OC_Config::getValue( "dbname", "owncloud" ); $CONFIG_DBTABLEPREFIX = OC_Config::getValue( "dbtableprefix", "oc_" ); $CONFIG_DBTYPE = OC_Config::getValue( "dbtype", "sqlite" ); @@ -445,7 +445,7 @@ class OC_DB { * @brief update the database scheme * @param $file file to read structure from */ - public static function updateDbFromStructure($file){ + public static function updateDbFromStructure($file) { $CONFIG_DBTABLEPREFIX = OC_Config::getValue( "dbtableprefix", "oc_" ); $CONFIG_DBTYPE = OC_Config::getValue( "dbtype", "sqlite" ); @@ -471,7 +471,7 @@ class OC_DB { * http://www.postgresql.org/docs/8.1/static/functions-datetime.html * http://www.sqlite.org/lang_createtable.html * http://docs.oracle.com/cd/B19306_01/server.102/b14200/functions037.htm - if( $CONFIG_DBTYPE == 'pgsql' ){ //mysql support it too but sqlite doesn't + if( $CONFIG_DBTYPE == 'pgsql' ) { //mysql support it too but sqlite doesn't $content = str_replace( '<default>0000-00-00 00:00:00</default>', '<default>CURRENT_TIMESTAMP</default>', $content ); } */ @@ -496,7 +496,7 @@ class OC_DB { * * Connects to a MDB2 database scheme */ - private static function connectScheme(){ + private static function connectScheme() { // We need a mdb2 database connection self::connectMDB2(); self::$MDB2->loadModule('Manager'); @@ -519,7 +519,7 @@ class OC_DB { * This function replaces *PREFIX* with the value of $CONFIG_DBTABLEPREFIX * and replaces the ` woth ' or " according to the database driver. */ - private static function processQuery( $query ){ + private static function processQuery( $query ) { self::connect(); // We need Database type and table prefix if(is_null(self::$type)) { @@ -554,7 +554,7 @@ class OC_DB { * @brief drop a table * @param string $tableNamme the table to drop */ - public static function dropTable($tableName){ + public static function dropTable($tableName) { self::connectMDB2(); self::$MDB2->loadModule('Manager'); self::$MDB2->dropTable($tableName); @@ -564,7 +564,7 @@ class OC_DB { * remove all tables defined in a database structure xml file * @param string $file the xml file describing the tables */ - public static function removeDBStructure($file){ + public static function removeDBStructure($file) { $CONFIG_DBNAME = OC_Config::getValue( "dbname", "owncloud" ); $CONFIG_DBTABLEPREFIX = OC_Config::getValue( "dbtableprefix", "oc_" ); self::connectScheme(); @@ -584,7 +584,7 @@ class OC_DB { // Delete our temporary file unlink( $file2 ); $tables=array_keys($definition['tables']); - foreach($tables as $table){ + foreach($tables as $table) { self::dropTable($table); } } @@ -593,13 +593,13 @@ class OC_DB { * @brief replaces the owncloud tables with a new set * @param $file string path to the MDB2 xml db export file */ - public static function replaceDB( $file ){ + public static function replaceDB( $file ) { $apps = OC_App::getAllApps(); self::beginTransaction(); // Delete the old tables self::removeDBStructure( OC::$SERVERROOT . '/db_structure.xml' ); - foreach($apps as $app){ + foreach($apps as $app) { $path = OC_App::getAppPath($app).'/appinfo/database.xml'; if(file_exists($path)) { self::removeDBStructure( $path ); @@ -614,7 +614,7 @@ class OC_DB { /** * Start a transaction */ - public static function beginTransaction(){ + public static function beginTransaction() { self::connect(); if (self::$backend==self::BACKEND_MDB2 && !self::$connection->supports('transactions')) { return false; @@ -640,10 +640,10 @@ class OC_DB { * @param mixed $result * @return bool */ - public static function isError($result){ + public static function isError($result) { if(!$result) { return true; - }elseif(self::$backend==self::BACKEND_MDB2 and PEAR::isError($result)){ + }elseif(self::$backend==self::BACKEND_MDB2 and PEAR::isError($result)) { return true; }else{ return false; @@ -658,16 +658,16 @@ class PDOStatementWrapper{ private $statement=null; private $lastArguments=array(); - public function __construct($statement){ + public function __construct($statement) { $this->statement=$statement; } /** * make execute return the result instead of a bool */ - public function execute($input=array()){ + public function execute($input=array()) { $this->lastArguments=$input; - if(count($input)>0){ + if(count($input)>0) { $result=$this->statement->execute($input); }else{ $result=$this->statement->execute(); @@ -682,7 +682,7 @@ class PDOStatementWrapper{ /** * provide numRows */ - public function numRows(){ + public function numRows() { $regex = '/^SELECT\s+(?:ALL\s+|DISTINCT\s+)?(?:.*?)\s+FROM\s+(.*)$/i'; if (preg_match($regex, $this->statement->queryString, $output) > 0) { $query = OC_DB::prepare("SELECT COUNT(*) FROM {$output[1]}", PDO::FETCH_NUM); @@ -695,14 +695,14 @@ class PDOStatementWrapper{ /** * provide an alias for fetch */ - public function fetchRow(){ + public function fetchRow() { return $this->statement->fetch(); } /** * pass all other function directly to the PDOStatement */ - public function __call($name,$arguments){ + public function __call($name,$arguments) { return call_user_func_array(array($this->statement,$name), $arguments); } @@ -711,7 +711,7 @@ class PDOStatementWrapper{ * fetch single column from the next row * @param int $colnum the column number to fetch */ - public function fetchOne($colnum = 0){ + public function fetchOne($colnum = 0) { return $this->statement->fetchColumn($colnum); } } diff --git a/lib/eventsource.php b/lib/eventsource.php index 45a20806b6e..900b5b101e6 100644 --- a/lib/eventsource.php +++ b/lib/eventsource.php @@ -31,18 +31,18 @@ class OC_EventSource{ private $fallback; private $fallBackId=0; - public function __construct(){ + public function __construct() { @ob_end_clean(); header('Cache-Control: no-cache'); $this->fallback=isset($_GET['fallback']) and $_GET['fallback']=='true'; - if($this->fallback){ + if($this->fallback) { $this->fallBackId=$_GET['fallback_id']; header("Content-Type: text/html"); echo str_repeat('<span></span>'.PHP_EOL,10); //dummy data to keep IE happy }else{ header("Content-Type: text/event-stream"); } - if( !OC_Util::isCallRegistered()){ + if( !OC_Util::isCallRegistered()) { exit(); } flush(); @@ -56,16 +56,16 @@ class OC_EventSource{ * * if only one paramater is given, a typeless message will be send with that paramater as data */ - public function send($type,$data=null){ - if(is_null($data)){ + public function send($type,$data=null) { + if(is_null($data)) { $data=$type; $type=null; } - if($this->fallback){ + if($this->fallback) { $response='<script type="text/javascript">window.parent.OC.EventSource.fallBackCallBack('.$this->fallBackId.',"'.$type.'",'.json_encode($data).')</script>'.PHP_EOL; echo $response; }else{ - if($type){ + if($type) { echo 'event: '.$type.PHP_EOL; } echo 'data: '.json_encode($data).PHP_EOL; @@ -77,7 +77,7 @@ class OC_EventSource{ /** * close the connection of the even source */ - public function close(){ + public function close() { $this->send('__internal__','close');//server side closing can be an issue, let the client do it } } \ No newline at end of file diff --git a/lib/filecache.php b/lib/filecache.php index de38ad99e8e..adcf97753ed 100644 --- a/lib/filecache.php +++ b/lib/filecache.php @@ -42,9 +42,9 @@ class OC_FileCache{ * - encrypted * - versioned */ - public static function get($path,$root=false){ - if(OC_FileCache_Update::hasUpdated($path,$root)){ - if($root===false){//filesystem hooks are only valid for the default root + public static function get($path,$root=false) { + if(OC_FileCache_Update::hasUpdated($path,$root)) { + if($root===false) {//filesystem hooks are only valid for the default root OC_Hook::emit('OC_Filesystem','post_write',array('path'=>$path)); }else{ OC_FileCache_Update::update($path,$root); @@ -61,18 +61,18 @@ class OC_FileCache{ * * $data is an assiciative array in the same format as returned by get */ - public static function put($path,$data,$root=false){ - if($root===false){ + public static function put($path,$data,$root=false) { + if($root===false) { $root=OC_Filesystem::getRoot(); } $fullpath=$root.$path; $parent=self::getParentId($fullpath); $id=self::getId($fullpath,''); - if(isset(OC_FileCache_Cached::$savedData[$fullpath])){ + if(isset(OC_FileCache_Cached::$savedData[$fullpath])) { $data=array_merge(OC_FileCache_Cached::$savedData[$fullpath],$data); unset(OC_FileCache_Cached::$savedData[$fullpath]); } - if($id!=-1){ + if($id!=-1) { self::update($id,$data); return; } @@ -84,14 +84,14 @@ class OC_FileCache{ $parent = self::getParentId($fullpath); } - if(!isset($data['size']) or !isset($data['mtime'])){//save incomplete data for the next time we write it + if(!isset($data['size']) or !isset($data['mtime'])) {//save incomplete data for the next time we write it OC_FileCache_Cached::$savedData[$fullpath]=$data; return; } - if(!isset($data['encrypted'])){ + if(!isset($data['encrypted'])) { $data['encrypted']=false; } - if(!isset($data['versioned'])){ + if(!isset($data['versioned'])) { $data['versioned']=false; } $mimePart=dirname($data['mimetype']); @@ -103,11 +103,11 @@ class OC_FileCache{ $user=OC_User::getUser(); $query=OC_DB::prepare('INSERT INTO `*PREFIX*fscache`(`parent`, `name`, `path`, `path_hash`, `size`, `mtime`, `ctime`, `mimetype`, `mimepart`,`user`,`writable`,`encrypted`,`versioned`) VALUES(?,?,?,?,?,?,?,?,?,?,?,?,?)'); $result=$query->execute(array($parent,basename($fullpath),$fullpath,md5($fullpath),$data['size'],$data['mtime'],$data['ctime'],$data['mimetype'],$mimePart,$user,$data['writable'],$data['encrypted'],$data['versioned'])); - if(OC_DB::isError($result)){ + if(OC_DB::isError($result)) { OC_Log::write('files','error while writing file('.$fullpath.') to cache',OC_Log::ERROR); } - if($cache=OC_Cache::getUserCache(true)){ + if($cache=OC_Cache::getUserCache(true)) { $cache->remove('fileid/'.$fullpath);//ensure we don't have -1 cached } } @@ -117,13 +117,13 @@ class OC_FileCache{ * @param int $id * @param array $data */ - private static function update($id,$data){ + private static function update($id,$data) { $arguments=array(); $queryParts=array(); - foreach(array('size','mtime','ctime','mimetype','encrypted','versioned','writable') as $attribute){ - if(isset($data[$attribute])){ + foreach(array('size','mtime','ctime','mimetype','encrypted','versioned','writable') as $attribute) { + if(isset($data[$attribute])) { //Convert to int it args are false - if($data[$attribute] === false){ + if($data[$attribute] === false) { $arguments[] = 0; }else{ $arguments[] = $data[$attribute]; @@ -131,7 +131,7 @@ class OC_FileCache{ $queryParts[]='`'.$attribute.'`=?'; } } - if(isset($data['mimetype'])){ + if(isset($data['mimetype'])) { $arguments[]=dirname($data['mimetype']); $queryParts[]='`mimepart`=?'; } @@ -140,7 +140,7 @@ class OC_FileCache{ $sql = 'UPDATE `*PREFIX*fscache` SET '.implode(' , ',$queryParts).' WHERE `id`=?'; $query=OC_DB::prepare($sql); $result=$query->execute($arguments); - if(OC_DB::isError($result)){ + if(OC_DB::isError($result)) { OC_Log::write('files','error while updating file('.$id.') in cache',OC_Log::ERROR); } } @@ -151,8 +151,8 @@ class OC_FileCache{ * @param string newPath * @param string root (optional) */ - public static function move($oldPath,$newPath,$root=false){ - if($root===false){ + public static function move($oldPath,$newPath,$root=false) { + if($root===false) { $root=OC_Filesystem::getRoot(); } // If replacing an existing file, delete the file @@ -165,7 +165,7 @@ class OC_FileCache{ $query=OC_DB::prepare('UPDATE `*PREFIX*fscache` SET `parent`=? ,`name`=?, `path`=?, `path_hash`=? WHERE `path_hash`=?'); $query->execute(array($newParent,basename($newPath),$newPath,md5($newPath),md5($oldPath))); - if(($cache=OC_Cache::getUserCache(true)) && $cache->hasKey('fileid/'.$oldPath)){ + if(($cache=OC_Cache::getUserCache(true)) && $cache->hasKey('fileid/'.$oldPath)) { $cache->set('fileid/'.$newPath,$cache->get('fileid/'.$oldPath)); $cache->remove('fileid/'.$oldPath); } @@ -173,12 +173,12 @@ class OC_FileCache{ $query=OC_DB::prepare('SELECT `path` FROM `*PREFIX*fscache` WHERE `path` LIKE ?'); $oldLength=strlen($oldPath); $updateQuery=OC_DB::prepare('UPDATE `*PREFIX*fscache` SET `path`=?, `path_hash`=? WHERE `path_hash`=?'); - while($row= $query->execute(array($oldPath.'/%'))->fetchRow()){ + while($row= $query->execute(array($oldPath.'/%'))->fetchRow()) { $old=$row['path']; $new=$newPath.substr($old,$oldLength); $updateQuery->execute(array($new,md5($new),md5($old))); - if(($cache=OC_Cache::getUserCache(true)) && $cache->hasKey('fileid/'.$old)){ + if(($cache=OC_Cache::getUserCache(true)) && $cache->hasKey('fileid/'.$old)) { $cache->set('fileid/'.$new,$cache->get('fileid/'.$old)); $cache->remove('fileid/'.$old); } @@ -190,8 +190,8 @@ class OC_FileCache{ * @param string path * @param string root (optional) */ - public static function delete($path,$root=false){ - if($root===false){ + public static function delete($path,$root=false) { + if($root===false) { $root=OC_Filesystem::getRoot(); } $query=OC_DB::prepare('DELETE FROM `*PREFIX*fscache` WHERE `path_hash`=?'); @@ -211,20 +211,20 @@ class OC_FileCache{ * @param string root (optional) * @return array of filepaths */ - public static function search($search,$returnData=false,$root=false){ - if($root===false){ + public static function search($search,$returnData=false,$root=false) { + if($root===false) { $root=OC_Filesystem::getRoot(); } $rootLen=strlen($root); - if(!$returnData){ + if(!$returnData) { $query=OC_DB::prepare('SELECT `path` FROM `*PREFIX*fscache` WHERE `name` LIKE ? AND `user`=?'); }else{ $query=OC_DB::prepare('SELECT * FROM `*PREFIX*fscache` WHERE `name` LIKE ? AND `user`=?'); } $result=$query->execute(array("%$search%",OC_User::getUser())); $names=array(); - while($row=$result->fetchRow()){ - if(!$returnData){ + while($row=$result->fetchRow()) { + if(!$returnData) { $names[]=substr($row['path'],$rootLen); }else{ $row['path']=substr($row['path'],$rootLen); @@ -249,8 +249,8 @@ class OC_FileCache{ * - encrypted * - versioned */ - public static function getFolderContent($path,$root=false,$mimetype_filter=''){ - if(OC_FileCache_Update::hasUpdated($path,$root,true)){ + public static function getFolderContent($path,$root=false,$mimetype_filter='') { + if(OC_FileCache_Update::hasUpdated($path,$root,true)) { OC_FileCache_Update::updateFolder($path,$root); } return OC_FileCache_Cached::getFolderContent($path,$root,$mimetype_filter); @@ -262,7 +262,7 @@ class OC_FileCache{ * @param string root (optional) * @return bool */ - public static function inCache($path,$root=false){ + public static function inCache($path,$root=false) { return self::getId($path,$root)!=-1; } @@ -272,30 +272,30 @@ class OC_FileCache{ * @param string root (optional) * @return int */ - public static function getId($path,$root=false){ - if($root===false){ + public static function getId($path,$root=false) { + if($root===false) { $root=OC_Filesystem::getRoot(); } $fullPath=$root.$path; - if(($cache=OC_Cache::getUserCache(true)) && $cache->hasKey('fileid/'.$fullPath)){ + if(($cache=OC_Cache::getUserCache(true)) && $cache->hasKey('fileid/'.$fullPath)) { return $cache->get('fileid/'.$fullPath); } $query=OC_DB::prepare('SELECT `id` FROM `*PREFIX*fscache` WHERE `path_hash`=?'); $result=$query->execute(array(md5($fullPath))); - if(OC_DB::isError($result)){ + if(OC_DB::isError($result)) { OC_Log::write('files','error while getting file id of '.$path,OC_Log::ERROR); return -1; } $result=$result->fetchRow(); - if(is_array($result)){ + if(is_array($result)) { $id=$result['id']; }else{ $id=-1; } - if($cache=OC_Cache::getUserCache(true)){ + if($cache=OC_Cache::getUserCache(true)) { $cache->set('fileid/'.$fullPath,$id); } @@ -308,8 +308,8 @@ class OC_FileCache{ * @param string user (optional) * @return string */ - public static function getPath($id,$user=''){ - if(!$user){ + public static function getPath($id,$user='') { + if(!$user) { $user=OC_User::getUser(); } $query=OC_DB::prepare('SELECT `path` FROM `*PREFIX*fscache` WHERE `id`=? AND `user`=?'); @@ -317,7 +317,7 @@ class OC_FileCache{ $row=$result->fetchRow(); $path=$row['path']; $root='/'.$user.'/files'; - if(substr($path,0,strlen($root))!=$root){ + if(substr($path,0,strlen($root))!=$root) { return false; } return substr($path,strlen($root)); @@ -328,8 +328,8 @@ class OC_FileCache{ * @param string $path * @return int */ - private static function getParentId($path){ - if($path=='/'){ + private static function getParentId($path) { + if($path=='/') { return -1; }else{ return self::getId(dirname($path),''); @@ -342,10 +342,10 @@ class OC_FileCache{ * @param int $sizeDiff * @param string root (optinal) */ - public static function increaseSize($path,$sizeDiff, $root=false){ + public static function increaseSize($path,$sizeDiff, $root=false) { if($sizeDiff==0) return; $id=self::getId($path,$root); - while($id!=-1){//walk up the filetree increasing the size of all parent folders + while($id!=-1) {//walk up the filetree increasing the size of all parent folders $query=OC_DB::prepare('UPDATE `*PREFIX*fscache` SET `size`=`size`+? WHERE `id`=?'); $query->execute(array($sizeDiff,$id)); $id=self::getParentId($path); @@ -360,8 +360,8 @@ class OC_FileCache{ * @param int count (optional) * @param string root (optional) */ - public static function scan($path,$eventSource=false,&$count=0,$root=false){ - if($eventSource){ + public static function scan($path,$eventSource=false,&$count=0,$root=false) { + if($eventSource) { $eventSource->send('scanning',array('file'=>$path,'count'=>$count)); } $lastSend=$count; @@ -369,7 +369,7 @@ class OC_FileCache{ if (substr($path, 0, 7) == '/Shared') { return; } - if($root===false){ + if($root===false) { $view=OC_Filesystem::getView(); }else{ $view=new OC_FilesystemView($root); @@ -377,16 +377,16 @@ class OC_FileCache{ self::scanFile($path,$root); $dh=$view->opendir($path.'/'); $totalSize=0; - if($dh){ + if($dh) { while (($filename = readdir($dh)) !== false) { - if($filename != '.' and $filename != '..'){ + if($filename != '.' and $filename != '..') { $file=$path.'/'.$filename; - if($view->is_dir($file.'/')){ + if($view->is_dir($file.'/')) { self::scan($file,$eventSource,$count,$root); }else{ $totalSize+=self::scanFile($file,$root); $count++; - if($count>$lastSend+25 and $eventSource){ + if($count>$lastSend+25 and $eventSource) { $lastSend=$count; $eventSource->send('scanning',array('file'=>$path,'count'=>$count)); } @@ -405,12 +405,12 @@ class OC_FileCache{ * @param string root (optional) * @return int size of the scanned file */ - public static function scanFile($path,$root=false){ + public static function scanFile($path,$root=false) { // NOTE: Ugly hack to prevent shared files from going into the cache (the source already exists somewhere in the cache) if (substr($path, 0, 7) == '/Shared') { return; } - if($root===false){ + if($root===false) { $view=OC_Filesystem::getView(); }else{ $view=new OC_FilesystemView($root); @@ -419,14 +419,14 @@ class OC_FileCache{ clearstatcache(); $mimetype=$view->getMimeType($path); $stat=$view->stat($path); - if($mimetype=='httpd/unix-directory'){ + if($mimetype=='httpd/unix-directory') { $writable=$view->is_writable($path.'/'); }else{ $writable=$view->is_writable($path); } $stat['mimetype']=$mimetype; $stat['writable']=$writable; - if($path=='/'){ + if($path=='/') { $path=''; } self::put($path,$stat,$root); @@ -446,14 +446,14 @@ class OC_FileCache{ * seccond mimetype part can be ommited * e.g. searchByMime('audio') */ - public static function searchByMime($part1,$part2=null,$root=false){ - if($root===false){ + public static function searchByMime($part1,$part2=null,$root=false) { + if($root===false) { $root=OC_Filesystem::getRoot(); } $rootLen=strlen($root); $root .= '%'; $user=OC_User::getUser(); - if(!$part2){ + if(!$part2) { $query=OC_DB::prepare('SELECT `path` FROM `*PREFIX*fscache` WHERE `mimepart`=? AND `user`=? AND `path` LIKE ?'); $result=$query->execute(array($part1,$user, $root)); }else{ @@ -461,7 +461,7 @@ class OC_FileCache{ $result=$query->execute(array($part1.'/'.$part2,$user, $root)); } $names=array(); - while($row=$result->fetchRow()){ + while($row=$result->fetchRow()) { $names[]=substr($row['path'],$rootLen); } return $names; @@ -470,7 +470,7 @@ class OC_FileCache{ /** * clean old pre-path_hash entries */ - public static function clean(){ + public static function clean() { $query=OC_DB::prepare('DELETE FROM `*PREFIX*fscache` WHERE LENGTH(`path_hash`)<30'); $query->execute(); } @@ -479,8 +479,8 @@ class OC_FileCache{ * clear filecache entries * @param string user (optonal) */ - public static function clear($user=''){ - if($user){ + public static function clear($user='') { + if($user) { $query=OC_DB::prepare('DELETE FROM `*PREFIX*fscache` WHERE user=?'); $query->execute(array($user)); }else{ diff --git a/lib/filecache/cached.php b/lib/filecache/cached.php index 505f1a5e2a0..261bd2f572b 100644 --- a/lib/filecache/cached.php +++ b/lib/filecache/cached.php @@ -13,20 +13,20 @@ class OC_FileCache_Cached{ public static $savedData=array(); - public static function get($path,$root=false){ - if($root===false){ + public static function get($path,$root=false) { + if($root===false) { $root=OC_Filesystem::getRoot(); } $path=$root.$path; $query=OC_DB::prepare('SELECT `path`,`ctime`,`mtime`,`mimetype`,`size`,`encrypted`,`versioned`,`writable` FROM `*PREFIX*fscache` WHERE `path_hash`=?'); $result=$query->execute(array(md5($path)))->fetchRow(); - if(is_array($result)){ - if(isset(self::$savedData[$path])){ + if(is_array($result)) { + if(isset(self::$savedData[$path])) { $result=array_merge($result,self::$savedData[$path]); } return $result; }else{ - if(isset(self::$savedData[$path])){ + if(isset(self::$savedData[$path])) { return self::$savedData[$path]; }else{ return array(); @@ -50,17 +50,17 @@ class OC_FileCache_Cached{ * - encrypted * - versioned */ - public static function getFolderContent($path,$root=false,$mimetype_filter=''){ - if($root===false){ + public static function getFolderContent($path,$root=false,$mimetype_filter='') { + if($root===false) { $root=OC_Filesystem::getRoot(); } $parent=OC_FileCache::getId($path,$root); - if($parent==-1){ + if($parent==-1) { return array(); } $query=OC_DB::prepare('SELECT `id`,`path`,`name`,`ctime`,`mtime`,`mimetype`,`size`,`encrypted`,`versioned`,`writable` FROM `*PREFIX*fscache` WHERE `parent`=? AND (`mimetype` LIKE ? OR `mimetype` = ?)'); $result=$query->execute(array($parent, $mimetype_filter.'%', 'httpd/unix-directory'))->fetchAll(); - if(is_array($result)){ + if(is_array($result)) { return $result; }else{ OC_Log::write('files','getFolderContent(): file not found in cache ('.$path.')',OC_Log::DEBUG); diff --git a/lib/filecache/update.php b/lib/filecache/update.php index 7b5f18fe5c1..3d10f5ea7b6 100644 --- a/lib/filecache/update.php +++ b/lib/filecache/update.php @@ -18,25 +18,25 @@ class OC_FileCache_Update{ * @param boolean folder * @return bool */ - public static function hasUpdated($path,$root=false,$folder=false){ - if($root===false){ + public static function hasUpdated($path,$root=false,$folder=false) { + if($root===false) { $view=OC_Filesystem::getView(); }else{ $view=new OC_FilesystemView($root); } - if(!$view->file_exists($path)){ + if(!$view->file_exists($path)) { return false; } $cachedData=OC_FileCache_Cached::get($path,$root); - if(isset($cachedData['mtime'])){ + if(isset($cachedData['mtime'])) { $cachedMTime=$cachedData['mtime']; - if($folder){ + if($folder) { return $view->hasUpdated($path.'/',$cachedMTime); }else{ return $view->hasUpdated($path,$cachedMTime); } }else{//file not in cache, so it has to be updated - if(($path=='/' or $path=='') and $root===false){//dont auto update the home folder, it will be scanned + if(($path=='/' or $path=='') and $root===false) {//dont auto update the home folder, it will be scanned return false; } return true; @@ -46,19 +46,19 @@ class OC_FileCache_Update{ /** * delete non existing files from the cache */ - public static function cleanFolder($path,$root=false){ - if($root===false){ + public static function cleanFolder($path,$root=false) { + if($root===false) { $view=OC_Filesystem::getView(); }else{ $view=new OC_FilesystemView($root); } $cachedContent=OC_FileCache_Cached::getFolderContent($path,$root); - foreach($cachedContent as $fileData){ + foreach($cachedContent as $fileData) { $path=$fileData['path']; $file=$view->getRelativePath($path); - if(!$view->file_exists($file)){ - if($root===false){//filesystem hooks are only valid for the default root + if(!$view->file_exists($file)) { + if($root===false) {//filesystem hooks are only valid for the default root OC_Hook::emit('OC_Filesystem','post_delete',array('path'=>$file)); }else{ self::delete($file,$root); @@ -72,19 +72,19 @@ class OC_FileCache_Update{ * @param string path * @param string root (optional) */ - public static function updateFolder($path,$root=false){ - if($root===false){ + public static function updateFolder($path,$root=false) { + if($root===false) { $view=OC_Filesystem::getView(); }else{ $view=new OC_FilesystemView($root); } $dh=$view->opendir($path.'/'); - if($dh){//check for changed/new files + if($dh) {//check for changed/new files while (($filename = readdir($dh)) !== false) { - if($filename != '.' and $filename != '..'){ + if($filename != '.' and $filename != '..') { $file=$path.'/'.$filename; - if(self::hasUpdated($file,$root)){ - if($root===false){//filesystem hooks are only valid for the default root + if(self::hasUpdated($file,$root)) { + if($root===false) {//filesystem hooks are only valid for the default root OC_Hook::emit('OC_Filesystem','post_write',array('path'=>$file)); }else{ self::update($file,$root); @@ -97,7 +97,7 @@ class OC_FileCache_Update{ self::cleanFolder($path,$root); //update the folder last, so we can calculate the size correctly - if($root===false){//filesystem hooks are only valid for the default root + if($root===false) {//filesystem hooks are only valid for the default root OC_Hook::emit('OC_Filesystem','post_write',array('path'=>$path)); }else{ self::update($path,$root); @@ -109,7 +109,7 @@ class OC_FileCache_Update{ * @param array $params * @param string root (optional) */ - public static function fileSystemWatcherWrite($params){ + public static function fileSystemWatcherWrite($params) { $path=$params['path']; self::update($path); } @@ -119,7 +119,7 @@ class OC_FileCache_Update{ * @param array $params * @param string root (optional) */ - public static function fileSystemWatcherDelete($params){ + public static function fileSystemWatcherDelete($params) { $path=$params['path']; self::delete($path); } @@ -129,7 +129,7 @@ class OC_FileCache_Update{ * @param array $params * @param string root (optional) */ - public static function fileSystemWatcherRename($params){ + public static function fileSystemWatcherRename($params) { $oldPath=$params['oldpath']; $newPath=$params['newpath']; self::rename($oldPath,$newPath); @@ -140,8 +140,8 @@ class OC_FileCache_Update{ * @param string path * @param string root (optional) */ - public static function update($path,$root=false){ - if($root===false){ + public static function update($path,$root=false) { + if($root===false) { $view=OC_Filesystem::getView(); }else{ $view=new OC_FilesystemView($root); @@ -153,10 +153,10 @@ class OC_FileCache_Update{ $cached=OC_FileCache_Cached::get($path,$root); $cachedSize=isset($cached['size'])?$cached['size']:0; - if($view->is_dir($path.'/')){ - if(OC_FileCache::inCache($path,$root)){ + if($view->is_dir($path.'/')) { + if(OC_FileCache::inCache($path,$root)) { $cachedContent=OC_FileCache_Cached::getFolderContent($path,$root); - foreach($cachedContent as $file){ + foreach($cachedContent as $file) { $size+=$file['size']; } $mtime=$view->filemtime($path.'/'); @@ -179,9 +179,9 @@ class OC_FileCache_Update{ * @param string path * @param string root (optional) */ - public static function delete($path,$root=false){ + public static function delete($path,$root=false) { $cached=OC_FileCache_Cached::get($path,$root); - if(!isset($cached['size'])){ + if(!isset($cached['size'])) { return; } $size=$cached['size']; @@ -195,11 +195,11 @@ class OC_FileCache_Update{ * @param string newPath * @param string root (optional) */ - public static function rename($oldPath,$newPath,$root=false){ - if(!OC_FileCache::inCache($oldPath,$root)){ + public static function rename($oldPath,$newPath,$root=false) { + if(!OC_FileCache::inCache($oldPath,$root)) { return; } - if($root===false){ + if($root===false) { $view=OC_Filesystem::getView(); }else{ $view=new OC_FilesystemView($root); diff --git a/lib/fileproxy.php b/lib/fileproxy.php index a1c79874bf7..17380c656a3 100644 --- a/lib/fileproxy.php +++ b/lib/fileproxy.php @@ -51,8 +51,8 @@ class OC_FileProxy{ * * this implements a dummy proxy for all operations */ - public function __call($function,$arguments){ - if(substr($function,0,3)=='pre'){ + public function __call($function,$arguments) { + if(substr($function,0,3)=='pre') { return true; }else{ return $arguments[1]; @@ -63,33 +63,33 @@ class OC_FileProxy{ * register a proxy to be used * @param OC_FileProxy $proxy */ - public static function register($proxy){ + public static function register($proxy) { self::$proxies[]=$proxy; } - public static function getProxies($operation){ + public static function getProxies($operation) { $proxies=array(); - foreach(self::$proxies as $proxy){ - if(method_exists($proxy,$operation)){ + foreach(self::$proxies as $proxy) { + if(method_exists($proxy,$operation)) { $proxies[]=$proxy; } } return $proxies; } - public static function runPreProxies($operation,&$filepath,&$filepath2=null){ - if(!self::$enabled){ + public static function runPreProxies($operation,&$filepath,&$filepath2=null) { + if(!self::$enabled) { return true; } $operation='pre'.$operation; $proxies=self::getProxies($operation); - foreach($proxies as $proxy){ - if(!is_null($filepath2)){ - if($proxy->$operation($filepath,$filepath2)===false){ + foreach($proxies as $proxy) { + if(!is_null($filepath2)) { + if($proxy->$operation($filepath,$filepath2)===false) { return false; } }else{ - if($proxy->$operation($filepath)===false){ + if($proxy->$operation($filepath)===false) { return false; } } @@ -97,19 +97,19 @@ class OC_FileProxy{ return true; } - public static function runPostProxies($operation,$path,$result){ - if(!self::$enabled){ + public static function runPostProxies($operation,$path,$result) { + if(!self::$enabled) { return $result; } $operation='post'.$operation; $proxies=self::getProxies($operation); - foreach($proxies as $proxy){ + foreach($proxies as $proxy) { $result=$proxy->$operation($path,$result); } return $result; } - public static function clearProxies(){ + public static function clearProxies() { self::$proxies=array(); } } diff --git a/lib/fileproxy/quota.php b/lib/fileproxy/quota.php index 4c6261fc514..adbff3d301a 100644 --- a/lib/fileproxy/quota.php +++ b/lib/fileproxy/quota.php @@ -32,15 +32,15 @@ class OC_FileProxy_Quota extends OC_FileProxy{ * get the quota for the current user * @return int */ - private function getQuota(){ - if($this->userQuota!=-1){ + private function getQuota() { + if($this->userQuota!=-1) { return $this->userQuota; } $userQuota=OC_Preferences::getValue(OC_User::getUser(),'files','quota','default'); - if($userQuota=='default'){ + if($userQuota=='default') { $userQuota=OC_AppConfig::getValue('files','default_quota','none'); } - if($userQuota=='none'){ + if($userQuota=='none') { $this->userQuota=0; }else{ $this->userQuota=OC_Helper::computerFileSize($userQuota); @@ -53,7 +53,7 @@ class OC_FileProxy_Quota extends OC_FileProxy{ * get the free space in the users home folder * @return int */ - private function getFreeSpace(){ + private function getFreeSpace() { $rootInfo=OC_FileCache_Cached::get(''); // TODO Remove after merge of share_api if (OC_FileCache::inCache('/Shared')) { @@ -64,36 +64,36 @@ class OC_FileProxy_Quota extends OC_FileProxy{ $usedSpace=isset($rootInfo['size'])?$rootInfo['size']:0; $usedSpace=isset($sharedInfo['size'])?$usedSpace-$sharedInfo['size']:$usedSpace; $totalSpace=$this->getQuota(); - if($totalSpace==0){ + if($totalSpace==0) { return 0; } return $totalSpace-$usedSpace; } - public function postFree_space($path,$space){ + public function postFree_space($path,$space) { $free=$this->getFreeSpace(); - if($free==0){ + if($free==0) { return $space; } return min($free,$space); } - public function preFile_put_contents($path,$data){ + public function preFile_put_contents($path,$data) { if (is_resource($data)) { $data = '';//TODO: find a way to get the length of the stream without emptying it } return (strlen($data)<$this->getFreeSpace() or $this->getFreeSpace()==0); } - public function preCopy($path1,$path2){ + public function preCopy($path1,$path2) { return (OC_Filesystem::filesize($path1)<$this->getFreeSpace() or $this->getFreeSpace()==0); } - public function preFromTmpFile($tmpfile,$path){ + public function preFromTmpFile($tmpfile,$path) { return (filesize($tmpfile)<$this->getFreeSpace() or $this->getFreeSpace()==0); } - public function preFromUploadedFile($tmpfile,$path){ + public function preFromUploadedFile($tmpfile,$path) { return (filesize($tmpfile)<$this->getFreeSpace() or $this->getFreeSpace()==0); } } \ No newline at end of file diff --git a/lib/files.php b/lib/files.php index 00cbc63aba0..63dd96b9509 100644 --- a/lib/files.php +++ b/lib/files.php @@ -32,9 +32,9 @@ class OC_Files { * get the content of a directory * @param dir $directory path under datadirectory */ - public static function getDirectoryContent($directory, $mimetype_filter = ''){ + public static function getDirectoryContent($directory, $mimetype_filter = '') { $directory=OC_Filesystem::normalizePath($directory); - if($directory=='/'){ + if($directory=='/') { $directory=''; } $files = array(); @@ -87,12 +87,12 @@ class OC_Files { * @param file $file ; seperated list of files to download * @param boolean $only_header ; boolean to only send header of the request */ - public static function get($dir,$files, $only_header = false){ - if(strpos($files,';')){ + public static function get($dir,$files, $only_header = false) { + if(strpos($files,';')) { $files=explode(';',$files); } - if(is_array($files)){ + if(is_array($files)) { self::validateZipDownload($dir,$files); $executionTime = intval(ini_get('max_execution_time')); set_time_limit(0); @@ -101,19 +101,19 @@ class OC_Files { if ($zip->open($filename, ZIPARCHIVE::CREATE | ZIPARCHIVE::OVERWRITE)!==TRUE) { exit("cannot open <$filename>\n"); } - foreach($files as $file){ + foreach($files as $file) { $file=$dir.'/'.$file; - if(OC_Filesystem::is_file($file)){ + if(OC_Filesystem::is_file($file)) { $tmpFile=OC_Filesystem::toTmpFile($file); self::$tmpFiles[]=$tmpFile; $zip->addFile($tmpFile,basename($file)); - }elseif(OC_Filesystem::is_dir($file)){ + }elseif(OC_Filesystem::is_dir($file)) { self::zipAddDir($file,$zip); } } $zip->close(); set_time_limit($executionTime); - }elseif(OC_Filesystem::is_dir($dir.'/'.$files)){ + }elseif(OC_Filesystem::is_dir($dir.'/'.$files)) { self::validateZipDownload($dir,$files); $executionTime = intval(ini_get('max_execution_time')); set_time_limit(0); @@ -131,18 +131,18 @@ class OC_Files { $filename=$dir.'/'.$files; } @ob_end_clean(); - if($zip or OC_Filesystem::is_readable($filename)){ + if($zip or OC_Filesystem::is_readable($filename)) { header('Content-Disposition: attachment; filename="'.basename($filename).'"'); header('Content-Transfer-Encoding: binary'); OC_Response::disableCaching(); - if($zip){ + if($zip) { ini_set('zlib.output_compression', 'off'); header('Content-Type: application/zip'); header('Content-Length: ' . filesize($filename)); }else{ header('Content-Type: '.OC_Filesystem::getMimeType($filename)); } - }elseif($zip or !OC_Filesystem::file_exists($filename)){ + }elseif($zip or !OC_Filesystem::file_exists($filename)) { header("HTTP/1.0 404 Not Found"); $tmpl = new OC_Template( '', '404', 'guest' ); $tmpl->assign('file',$filename); @@ -151,12 +151,12 @@ class OC_Files { header("HTTP/1.0 403 Forbidden"); die('403 Forbidden'); } - if($only_header){ + if($only_header) { if(!$zip) header("Content-Length: ".OC_Filesystem::filesize($filename)); return ; } - if($zip){ + if($zip) { $handle=fopen($filename,'r'); if ($handle) { $chunkSize = 8*1024;// 1 MB chunks @@ -169,26 +169,26 @@ class OC_Files { }else{ OC_Filesystem::readfile($filename); } - foreach(self::$tmpFiles as $tmpFile){ - if(file_exists($tmpFile) and is_file($tmpFile)){ + foreach(self::$tmpFiles as $tmpFile) { + if(file_exists($tmpFile) and is_file($tmpFile)) { unlink($tmpFile); } } } - public static function zipAddDir($dir,$zip,$internalDir=''){ + public static function zipAddDir($dir,$zip,$internalDir='') { $dirname=basename($dir); $zip->addEmptyDir($internalDir.$dirname); $internalDir.=$dirname.='/'; $files=OC_Files::getdirectorycontent($dir); - foreach($files as $file){ + foreach($files as $file) { $filename=$file['name']; $file=$dir.'/'.$filename; - if(OC_Filesystem::is_file($file)){ + if(OC_Filesystem::is_file($file)) { $tmpFile=OC_Filesystem::toTmpFile($file); OC_Files::$tmpFiles[]=$tmpFile; $zip->addFile($tmpFile,$internalDir.$filename); - }elseif(OC_Filesystem::is_dir($file)){ + }elseif(OC_Filesystem::is_dir($file)) { self::zipAddDir($file,$zip,$internalDir); } } @@ -201,8 +201,8 @@ class OC_Files { * @param dir $targetDir * @param file $target */ - public static function move($sourceDir,$source,$targetDir,$target){ - if(OC_User::isLoggedIn() && ($sourceDir != '' || $source != 'Shared')){ + public static function move($sourceDir,$source,$targetDir,$target) { + if(OC_User::isLoggedIn() && ($sourceDir != '' || $source != 'Shared')) { $targetFile=self::normalizePath($targetDir.'/'.$target); $sourceFile=self::normalizePath($sourceDir.'/'.$source); return OC_Filesystem::rename($sourceFile,$targetFile); @@ -219,8 +219,8 @@ class OC_Files { * @param dir $targetDir * @param file $target */ - public static function copy($sourceDir,$source,$targetDir,$target){ - if(OC_User::isLoggedIn()){ + public static function copy($sourceDir,$source,$targetDir,$target) { + if(OC_User::isLoggedIn()) { $targetFile=$targetDir.'/'.$target; $sourceFile=$sourceDir.'/'.$source; return OC_Filesystem::copy($sourceFile,$targetFile); @@ -234,14 +234,14 @@ class OC_Files { * @param file $name * @param type $type */ - public static function newFile($dir,$name,$type){ - if(OC_User::isLoggedIn()){ + public static function newFile($dir,$name,$type) { + if(OC_User::isLoggedIn()) { $file=$dir.'/'.$name; - if($type=='dir'){ + if($type=='dir') { return OC_Filesystem::mkdir($file); - }elseif($type=='file'){ + }elseif($type=='file') { $fileHandle=OC_Filesystem::fopen($file, 'w'); - if($fileHandle){ + if($fileHandle) { fclose($fileHandle); return true; }else{ @@ -257,7 +257,7 @@ class OC_Files { * @param dir $dir * @param file $name */ - public static function delete($dir,$file){ + public static function delete($dir,$file) { if(OC_User::isLoggedIn() && ($dir!= '' || $file != 'Shared')) { $file=$dir.'/'.$file; return OC_Filesystem::unlink($file); @@ -289,8 +289,8 @@ class OC_Files { $zipLimit = OC_Config::getValue('maxZipInputSize', OC_Helper::computerFileSize('800 MB')); if($zipLimit > 0) { $totalsize = 0; - if(is_array($files)){ - foreach($files as $file){ + if(is_array($files)) { + foreach($files as $file) { $totalsize += OC_Filesystem::filesize($dir.'/'.$file); } }else{ @@ -319,7 +319,7 @@ class OC_Files { * @param string path * @return string guessed mime type */ - static function getMimeType($path){ + static function getMimeType($path) { return OC_Filesystem::getMimeType($path); } @@ -329,7 +329,7 @@ class OC_Files { * @param string path * @return array */ - static function getTree($path){ + static function getTree($path) { return OC_Filesystem::getTree($path); } @@ -341,7 +341,7 @@ class OC_Files { * @param string file * @return string guessed mime type */ - static function pull($source,$token,$dir,$file){ + static function pull($source,$token,$dir,$file) { $tmpfile=tempnam(get_temp_dir(),'remoteCloudFile'); $fp=fopen($tmpfile,'w+'); $url=$source.="/files/pull.php?token=$token"; @@ -353,7 +353,7 @@ class OC_Files { $info=curl_getinfo($ch); $httpCode=$info['http_code']; curl_close($ch); - if($httpCode==200 or $httpCode==0){ + if($httpCode==200 or $httpCode==0) { OC_Filesystem::fromTmpFile($tmpfile,$dir.'/'.$file); return true; }else{ @@ -366,7 +366,7 @@ class OC_Files { * @param int size filesisze in bytes * @return false on failure, size on success */ - static function setUploadLimit($size){ + static function setUploadLimit($size) { //don't allow user to break his config -- upper boundary if($size > PHP_INT_MAX) { //max size is always 1 byte lower than computerFileSize returns @@ -421,10 +421,10 @@ class OC_Files { * @param string $path * @return string */ - static public function normalizePath($path){ + static public function normalizePath($path) { $path='/'.$path; $old=''; - while($old!=$path){//replace any multiplicity of slashes with a single one + while($old!=$path) {//replace any multiplicity of slashes with a single one $old=$path; $path=str_replace('//','/',$path); } @@ -432,10 +432,10 @@ class OC_Files { } } -function fileCmp($a,$b){ - if($a['type']=='dir' and $b['type']!='dir'){ +function fileCmp($a,$b) { + if($a['type']=='dir' and $b['type']!='dir') { return -1; - }elseif($a['type']!='dir' and $b['type']=='dir'){ + }elseif($a['type']!='dir' and $b['type']=='dir') { return 1; }else{ return strnatcasecmp($a['name'],$b['name']); diff --git a/lib/filestorage/common.php b/lib/filestorage/common.php index e2828e56170..351714437c5 100644 --- a/lib/filestorage/common.php +++ b/lib/filestorage/common.php @@ -34,20 +34,20 @@ abstract class OC_Filestorage_Common extends OC_Filestorage { - public function __construct($parameters){} + public function __construct($parameters) {} // abstract public function mkdir($path); // abstract public function rmdir($path); // abstract public function opendir($path); - public function is_dir($path){ + public function is_dir($path) { return $this->filetype($path)=='dir'; } - public function is_file($path){ + public function is_file($path) { return $this->filetype($path)=='file'; } // abstract public function stat($path); // abstract public function filetype($path); public function filesize($path) { - if($this->is_dir($path)){ + if($this->is_dir($path)) { return 0;//by definition }else{ $stat = $this->stat($path); @@ -80,11 +80,11 @@ abstract class OC_Filestorage_Common extends OC_Filestorage { } public function file_get_contents($path) { $handle = $this->fopen($path, "r"); - if(!$handle){ + if(!$handle) { return false; } $size=$this->filesize($path); - if($size==0){ + if($size==0) { return ''; } return fread($handle, $size); @@ -94,8 +94,8 @@ abstract class OC_Filestorage_Common extends OC_Filestorage { return fwrite($handle, $data); } // abstract public function unlink($path); - public function rename($path1,$path2){ - if($this->copy($path1,$path2)){ + public function rename($path1,$path2) { + if($this->copy($path1,$path2)) { return $this->unlink($path1); }else{ return false; @@ -181,19 +181,19 @@ abstract class OC_Filestorage_Common extends OC_Filestorage { } } - public function getMimeType($path){ - if(!$this->file_exists($path)){ + public function getMimeType($path) { + if(!$this->file_exists($path)) { return false; } - if($this->is_dir($path)){ + if($this->is_dir($path)) { return 'httpd/unix-directory'; } $source=$this->fopen($path,'r'); - if(!$source){ + if(!$source) { return false; } $head=fread($source,8192);//8kb should suffice to determine a mimetype - if($pos=strrpos($path,'.')){ + if($pos=strrpos($path,'.')) { $extension=substr($path,$pos); }else{ $extension=''; @@ -204,25 +204,25 @@ abstract class OC_Filestorage_Common extends OC_Filestorage { unlink($tmpFile); return $mime; } - public function hash($type,$path,$raw = false){ + public function hash($type,$path,$raw = false) { $tmpFile=$this->getLocalFile(); $hash=hash($type,$tmpFile,$raw); unlink($tmpFile); return $hash; } // abstract public function free_space($path); - public function search($query){ + public function search($query) { return $this->searchInDir($query); } - public function getLocalFile($path){ + public function getLocalFile($path) { return $this->toTmpFile($path); } - private function toTmpFile($path){//no longer in the storage api, still usefull here + private function toTmpFile($path) {//no longer in the storage api, still usefull here $source=$this->fopen($path,'r'); - if(!$source){ + if(!$source) { return false; } - if($pos=strrpos($path,'.')){ + if($pos=strrpos($path,'.')) { $extension=substr($path,$pos); }else{ $extension=''; @@ -232,16 +232,16 @@ abstract class OC_Filestorage_Common extends OC_Filestorage { OC_Helper::streamCopy($source,$target); return $tmpFile; } - public function getLocalFolder($path){ + public function getLocalFolder($path) { $baseDir=OC_Helper::tmpFolder(); $this->addLocalFolder($path,$baseDir); return $baseDir; } - private function addLocalFolder($path,$target){ - if($dh=$this->opendir($path)){ - while($file=readdir($dh)){ - if($file!=='.' and $file!=='..'){ - if($this->is_dir($path.'/'.$file)){ + private function addLocalFolder($path,$target) { + if($dh=$this->opendir($path)) { + while($file=readdir($dh)) { + if($file!=='.' and $file!=='..') { + if($this->is_dir($path.'/'.$file)) { mkdir($target.'/'.$file); $this->addLocalFolder($path.'/'.$file,$target.'/'.$file); }else{ @@ -254,16 +254,16 @@ abstract class OC_Filestorage_Common extends OC_Filestorage { } // abstract public function touch($path, $mtime=null); - protected function searchInDir($query,$dir=''){ + protected function searchInDir($query,$dir='') { $files=array(); $dh=$this->opendir($dir); - if($dh){ - while($item=readdir($dh)){ + if($dh) { + while($item=readdir($dh)) { if ($item == '.' || $item == '..') continue; - if(strstr(strtolower($item),strtolower($query))!==false){ + if(strstr(strtolower($item),strtolower($query))!==false) { $files[]=$dir.'/'.$item; } - if($this->is_dir($dir.'/'.$item)){ + if($this->is_dir($dir.'/'.$item)) { $files=array_merge($files,$this->searchInDir($query,$dir.'/'.$item)); } } @@ -276,7 +276,7 @@ abstract class OC_Filestorage_Common extends OC_Filestorage { * @param int $time * @return bool */ - public function hasUpdated($path,$time){ + public function hasUpdated($path,$time) { return $this->filemtime($path)>$time; } } diff --git a/lib/filestorage/commontest.php b/lib/filestorage/commontest.php index 4d06e4fa321..b88bb232c36 100644 --- a/lib/filestorage/commontest.php +++ b/lib/filestorage/commontest.php @@ -32,44 +32,44 @@ class OC_Filestorage_CommonTest extends OC_Filestorage_Common{ */ private $storage; - public function __construct($params){ + public function __construct($params) { $this->storage=new OC_Filestorage_Local($params); } - public function mkdir($path){ + public function mkdir($path) { return $this->storage->mkdir($path); } - public function rmdir($path){ + public function rmdir($path) { return $this->storage->rmdir($path); } - public function opendir($path){ + public function opendir($path) { return $this->storage->opendir($path); } - public function stat($path){ + public function stat($path) { return $this->storage->stat($path); } - public function filetype($path){ + public function filetype($path) { return $this->storage->filetype($path); } - public function isReadable($path){ + public function isReadable($path) { return $this->storage->isReadable($path); } - public function isUpdatable($path){ + public function isUpdatable($path) { return $this->storage->isUpdatable($path); } - public function file_exists($path){ + public function file_exists($path) { return $this->storage->file_exists($path); } - public function unlink($path){ + public function unlink($path) { return $this->storage->unlink($path); } - public function fopen($path,$mode){ + public function fopen($path,$mode) { return $this->storage->fopen($path,$mode); } - public function free_space($path){ + public function free_space($path) { return $this->storage->free_space($path); } - public function touch($path, $mtime=null){ + public function touch($path, $mtime=null) { return $this->storage->touch($path,$mtime); } } \ No newline at end of file diff --git a/lib/filestorage/local.php b/lib/filestorage/local.php index b19205f45b1..e26d3d3ef91 100644 --- a/lib/filestorage/local.php +++ b/lib/filestorage/local.php @@ -4,67 +4,67 @@ */ class OC_Filestorage_Local extends OC_Filestorage_Common{ protected $datadir; - public function __construct($arguments){ + public function __construct($arguments) { $this->datadir=$arguments['datadir']; - if(substr($this->datadir,-1)!=='/'){ + if(substr($this->datadir,-1)!=='/') { $this->datadir.='/'; } } - public function mkdir($path){ + public function mkdir($path) { return @mkdir($this->datadir.$path); } - public function rmdir($path){ + public function rmdir($path) { return @rmdir($this->datadir.$path); } - public function opendir($path){ + public function opendir($path) { return opendir($this->datadir.$path); } - public function is_dir($path){ - if(substr($path,-1)=='/'){ + public function is_dir($path) { + if(substr($path,-1)=='/') { $path=substr($path,0,-1); } return is_dir($this->datadir.$path); } - public function is_file($path){ + public function is_file($path) { return is_file($this->datadir.$path); } - public function stat($path){ + public function stat($path) { return stat($this->datadir.$path); } - public function filetype($path){ + public function filetype($path) { $filetype=filetype($this->datadir.$path); - if($filetype=='link'){ + if($filetype=='link') { $filetype=filetype(realpath($this->datadir.$path)); } return $filetype; } - public function filesize($path){ - if($this->is_dir($path)){ + public function filesize($path) { + if($this->is_dir($path)) { return 0; }else{ return filesize($this->datadir.$path); } } - public function isReadable($path){ + public function isReadable($path) { return is_readable($this->datadir.$path); } - public function isUpdatable($path){ + public function isUpdatable($path) { return is_writable($this->datadir.$path); } - public function file_exists($path){ + public function file_exists($path) { return file_exists($this->datadir.$path); } - public function filectime($path){ + public function filectime($path) { return filectime($this->datadir.$path); } - public function filemtime($path){ + public function filemtime($path) { return filemtime($this->datadir.$path); } - public function touch($path, $mtime=null){ + public function touch($path, $mtime=null) { // sets the modification time of the file to the given value. // If mtime is nil the current time is set. // note that the access time of the file always changes to the current time. - if(!is_null($mtime)){ + if(!is_null($mtime)) { $result=touch( $this->datadir.$path, $mtime ); }else{ $result=touch( $this->datadir.$path); @@ -75,32 +75,32 @@ class OC_Filestorage_Local extends OC_Filestorage_Common{ return $result; } - public function file_get_contents($path){ + public function file_get_contents($path) { return file_get_contents($this->datadir.$path); } - public function file_put_contents($path,$data){ + public function file_put_contents($path,$data) { return file_put_contents($this->datadir.$path,$data); } - public function unlink($path){ + public function unlink($path) { return $this->delTree($path); } - public function rename($path1,$path2){ + public function rename($path1,$path2) { if (!$this->isUpdatable($path1)) { OC_Log::write('core','unable to rename, file is not writable : '.$path1,OC_Log::ERROR); return false; } - if(! $this->file_exists($path1)){ + if(! $this->file_exists($path1)) { OC_Log::write('core','unable to rename, file does not exists : '.$path1,OC_Log::ERROR); return false; } - if($return=rename($this->datadir.$path1,$this->datadir.$path2)){ + if($return=rename($this->datadir.$path1,$this->datadir.$path2)) { } return $return; } - public function copy($path1,$path2){ - if($this->is_dir($path2)){ - if(!$this->file_exists($path2)){ + public function copy($path1,$path2) { + if($this->is_dir($path2)) { + if(!$this->file_exists($path2)) { $this->mkdir($path2); } $source=substr($path1,strrpos($path1,'/')+1); @@ -108,9 +108,9 @@ class OC_Filestorage_Local extends OC_Filestorage_Common{ } return copy($this->datadir.$path1,$this->datadir.$path2); } - public function fopen($path,$mode){ - if($return=fopen($this->datadir.$path,$mode)){ - switch($mode){ + public function fopen($path,$mode) { + if($return=fopen($this->datadir.$path,$mode)) { + switch($mode) { case 'r': break; case 'r+': @@ -127,8 +127,8 @@ class OC_Filestorage_Local extends OC_Filestorage_Common{ return $return; } - public function getMimeType($path){ - if($this->isReadable($path)){ + public function getMimeType($path) { + if($this->isReadable($path)) { return OC_Helper::getMimeType($this->datadir.$path); }else{ return false; @@ -142,46 +142,46 @@ class OC_Filestorage_Local extends OC_Filestorage_Common{ if (!is_dir($dir) || is_link($dir)) return unlink($dir); foreach (scandir($dir) as $item) { if ($item == '.' || $item == '..') continue; - if(is_file($dir.'/'.$item)){ - if(unlink($dir.'/'.$item)){ + if(is_file($dir.'/'.$item)) { + if(unlink($dir.'/'.$item)) { } - }elseif(is_dir($dir.'/'.$item)){ - if (!$this->delTree($dirRelative. "/" . $item)){ + }elseif(is_dir($dir.'/'.$item)) { + if (!$this->delTree($dirRelative. "/" . $item)) { return false; }; } } - if($return=rmdir($dir)){ + if($return=rmdir($dir)) { } return $return; } - public function hash($path,$type,$raw=false){ + public function hash($path,$type,$raw=false) { return hash_file($type,$this->datadir.$path,$raw); } - public function free_space($path){ + public function free_space($path) { return disk_free_space($this->datadir.$path); } - public function search($query){ + public function search($query) { return $this->searchInDir($query); } - public function getLocalFile($path){ + public function getLocalFile($path) { return $this->datadir.$path; } - public function getLocalFolder($path){ + public function getLocalFolder($path) { return $this->datadir.$path; } - protected function searchInDir($query,$dir=''){ + protected function searchInDir($query,$dir='') { $files=array(); foreach (scandir($this->datadir.$dir) as $item) { if ($item == '.' || $item == '..') continue; - if(strstr(strtolower($item),strtolower($query))!==false){ + if(strstr(strtolower($item),strtolower($query))!==false) { $files[]=$dir.'/'.$item; } - if(is_dir($this->datadir.$dir.'/'.$item)){ + if(is_dir($this->datadir.$dir.'/'.$item)) { $files=array_merge($files,$this->searchInDir($query,$dir.'/'.$item)); } } @@ -193,7 +193,7 @@ class OC_Filestorage_Local extends OC_Filestorage_Common{ * @param int $time * @return bool */ - public function hasUpdated($path,$time){ + public function hasUpdated($path,$time) { return $this->filemtime($path)>$time; } } diff --git a/lib/filestorage/temporary.php b/lib/filestorage/temporary.php index 8f2373c8e95..876ba045a63 100644 --- a/lib/filestorage/temporary.php +++ b/lib/filestorage/temporary.php @@ -3,15 +3,15 @@ * local storage backnd in temporary folder for testing purpores */ class OC_Filestorage_Temporary extends OC_Filestorage_Local{ - public function __construct($arguments){ + public function __construct($arguments) { $this->datadir=OC_Helper::tmpFolder(); } - public function cleanUp(){ + public function cleanUp() { OC_Helper::rmdirr($this->datadir); } - public function __destruct(){ + public function __destruct() { $this->cleanUp(); } } diff --git a/lib/filesystem.php b/lib/filesystem.php index 01467b54c8d..92eb4fa4778 100644 --- a/lib/filesystem.php +++ b/lib/filesystem.php @@ -146,22 +146,22 @@ class OC_Filesystem{ * @param string path * @return string */ - static public function getMountPoint($path){ + static public function getMountPoint($path) { OC_Hook::emit(self::CLASSNAME,'get_mountpoint',array('path'=>$path)); - if(!$path){ + if(!$path) { $path='/'; } - if($path[0]!=='/'){ + if($path[0]!=='/') { $path='/'.$path; } $path=str_replace('//', '/',$path); $foundMountPoint=''; $mountPoints=array_keys(OC_Filesystem::$mounts); - foreach($mountPoints as $mountpoint){ - if($mountpoint==$path){ + foreach($mountPoints as $mountpoint) { + if($mountpoint==$path) { return $mountpoint; } - if(strpos($path,$mountpoint)===0 and strlen($mountpoint)>strlen($foundMountPoint)){ + if(strpos($path,$mountpoint)===0 and strlen($mountpoint)>strlen($foundMountPoint)) { $foundMountPoint=$mountpoint; } } @@ -173,7 +173,7 @@ class OC_Filesystem{ * @param string path * @return bool */ - static public function getInternalPath($path){ + static public function getInternalPath($path) { $mountPoint=self::getMountPoint($path); $internalPath=substr($path,strlen($mountPoint)); return $internalPath; @@ -183,10 +183,10 @@ class OC_Filesystem{ * @param string path * @return OC_Filestorage */ - static public function getStorage($path){ + static public function getStorage($path) { $mountpoint=self::getMountPoint($path); - if($mountpoint){ - if(!isset(OC_Filesystem::$storages[$mountpoint])){ + if($mountpoint) { + if(!isset(OC_Filesystem::$storages[$mountpoint])) { $mount=OC_Filesystem::$mounts[$mountpoint]; OC_Filesystem::$storages[$mountpoint]=OC_Filesystem::createStorage($mount['class'],$mount['arguments']); } @@ -194,27 +194,27 @@ class OC_Filesystem{ } } - static public function init($root){ - if(self::$defaultInstance){ + static public function init($root) { + if(self::$defaultInstance) { return false; } self::$defaultInstance=new OC_FilesystemView($root); //load custom mount config - if(is_file(OC::$SERVERROOT.'/config/mount.php')){ + if(is_file(OC::$SERVERROOT.'/config/mount.php')) { $mountConfig=include(OC::$SERVERROOT.'/config/mount.php'); - if(isset($mountConfig['global'])){ - foreach($mountConfig['global'] as $mountPoint=>$options){ + if(isset($mountConfig['global'])) { + foreach($mountConfig['global'] as $mountPoint=>$options) { self::mount($options['class'],$options['options'],$mountPoint); } } - if(isset($mountConfig['group'])){ - foreach($mountConfig['group'] as $group=>$mounts){ - if(OC_Group::inGroup(OC_User::getUser(),$group)){ - foreach($mounts as $mountPoint=>$options){ + if(isset($mountConfig['group'])) { + foreach($mountConfig['group'] as $group=>$mounts) { + if(OC_Group::inGroup(OC_User::getUser(),$group)) { + foreach($mounts as $mountPoint=>$options) { $mountPoint=self::setUserVars($mountPoint); - foreach($options as &$option){ + foreach($options as &$option) { $option=self::setUserVars($option); } self::mount($options['class'],$options['options'],$mountPoint); @@ -223,12 +223,12 @@ class OC_Filesystem{ } } - if(isset($mountConfig['user'])){ - foreach($mountConfig['user'] as $user=>$mounts){ - if($user==='all' or strtolower($user)===strtolower(OC_User::getUser())){ - foreach($mounts as $mountPoint=>$options){ + if(isset($mountConfig['user'])) { + foreach($mountConfig['user'] as $user=>$mounts) { + if($user==='all' or strtolower($user)===strtolower(OC_User::getUser())) { + foreach($mounts as $mountPoint=>$options) { $mountPoint=self::setUserVars($mountPoint); - foreach($options as &$option){ + foreach($options as &$option) { $option=self::setUserVars($option); } self::mount($options['class'],$options['options'],$mountPoint); @@ -239,7 +239,7 @@ class OC_Filesystem{ $mtime=filemtime(OC::$SERVERROOT.'/config/mount.php'); $previousMTime=OC_Appconfig::getValue('files','mountconfigmtime',0); - if($mtime>$previousMTime){//mount config has changed, filecache needs to be updated + if($mtime>$previousMTime) {//mount config has changed, filecache needs to be updated OC_FileCache::clear(); OC_Appconfig::setValue('files','mountconfigmtime',$mtime); } @@ -253,7 +253,7 @@ class OC_Filesystem{ * @param string intput * @return string */ - private static function setUserVars($input){ + private static function setUserVars($input) { return str_replace('$user',OC_User::getUser(),$input); } @@ -261,14 +261,14 @@ class OC_Filesystem{ * get the default filesystem view * @return OC_FilesystemView */ - static public function getView(){ + static public function getView() { return self::$defaultInstance; } /** * tear down the filesystem, removing all storage providers */ - static public function tearDown(){ + static public function tearDown() { self::$storages=array(); } @@ -278,8 +278,8 @@ class OC_Filesystem{ * @param array arguments * @return OC_Filestorage */ - static private function createStorage($class,$arguments){ - if(class_exists($class)){ + static private function createStorage($class,$arguments) { + if(class_exists($class)) { try { return new $class($arguments); } catch (Exception $exception) { @@ -297,7 +297,7 @@ class OC_Filesystem{ * @param string fakeRoot * @return bool */ - static public function chroot($fakeRoot){ + static public function chroot($fakeRoot) { return self::$defaultInstance->chroot($fakeRoot); } @@ -307,14 +307,14 @@ class OC_Filesystem{ * * Returns path like /admin/files */ - static public function getRoot(){ + static public function getRoot() { return self::$defaultInstance->getRoot(); } /** * clear all mounts and storage backends */ - public static function clearMounts(){ + public static function clearMounts() { self::$mounts=array(); self::$storages=array(); } @@ -324,11 +324,11 @@ class OC_Filesystem{ * @param OC_Filestorage storage * @param string mountpoint */ - static public function mount($class,$arguments,$mountpoint){ - if($mountpoint[0]!='/'){ + static public function mount($class,$arguments,$mountpoint) { + if($mountpoint[0]!='/') { $mountpoint='/'.$mountpoint; } - if(substr($mountpoint,-1)!=='/'){ + if(substr($mountpoint,-1)!=='/') { $mountpoint=$mountpoint.'/'; } self::$mounts[$mountpoint]=array('class'=>$class,'arguments'=>$arguments); @@ -340,14 +340,14 @@ class OC_Filesystem{ * @param string path * @return string */ - static public function getLocalFile($path){ + static public function getLocalFile($path) { return self::$defaultInstance->getLocalFile($path); } /** * @param string path * @return string */ - static public function getLocalFolder($path){ + static public function getLocalFolder($path) { return self::$defaultInstance->getLocalFolder($path); } @@ -370,11 +370,11 @@ class OC_Filesystem{ * @param string path * @return bool */ - static public function isValidPath($path){ - if(!$path || $path[0]!=='/'){ + static public function isValidPath($path) { + if(!$path || $path[0]!=='/') { $path='/'.$path; } - if(strstr($path,'/../') || strrchr($path, '/') === '/..' ){ + if(strstr($path,'/../') || strrchr($path, '/') === '/..' ) { return false; } return true; @@ -385,7 +385,7 @@ class OC_Filesystem{ * Listens to write and rename hooks * @param array $data from hook */ - static public function isBlacklisted($data){ + static public function isBlacklisted($data) { $blacklist = array('.htaccess'); if (isset($data['path'])) { $path = $data['path']; @@ -403,46 +403,46 @@ class OC_Filesystem{ /** * following functions are equivilent to their php buildin equivilents for arguments/return values. */ - static public function mkdir($path){ + static public function mkdir($path) { return self::$defaultInstance->mkdir($path); } - static public function rmdir($path){ + static public function rmdir($path) { return self::$defaultInstance->rmdir($path); } - static public function opendir($path){ + static public function opendir($path) { return self::$defaultInstance->opendir($path); } - static public function readdir($path){ + static public function readdir($path) { return self::$defaultInstance->readdir($path); } - static public function is_dir($path){ + static public function is_dir($path) { return self::$defaultInstance->is_dir($path); } - static public function is_file($path){ + static public function is_file($path) { return self::$defaultInstance->is_file($path); } - static public function stat($path){ + static public function stat($path) { return self::$defaultInstance->stat($path); } - static public function filetype($path){ + static public function filetype($path) { return self::$defaultInstance->filetype($path); } - static public function filesize($path){ + static public function filesize($path) { return self::$defaultInstance->filesize($path); } - static public function readfile($path){ + static public function readfile($path) { return self::$defaultInstance->readfile($path); } /** * @deprecated Replaced by isReadable() as part of CRUDS */ - static public function is_readable($path){ + static public function is_readable($path) { return self::$defaultInstance->is_readable($path); } /** * @deprecated Replaced by isCreatable(), isUpdatable(), isDeletable() as part of CRUDS */ - static public function is_writable($path){ + static public function is_writable($path) { return self::$defaultInstance->is_writable($path); } static public function isCreatable($path) { @@ -460,55 +460,55 @@ class OC_Filesystem{ static public function isSharable($path) { return self::$defaultInstance->isSharable($path); } - static public function file_exists($path){ + static public function file_exists($path) { return self::$defaultInstance->file_exists($path); } - static public function filectime($path){ + static public function filectime($path) { return self::$defaultInstance->filectime($path); } - static public function filemtime($path){ + static public function filemtime($path) { return self::$defaultInstance->filemtime($path); } - static public function touch($path, $mtime=null){ + static public function touch($path, $mtime=null) { return self::$defaultInstance->touch($path, $mtime); } - static public function file_get_contents($path){ + static public function file_get_contents($path) { return self::$defaultInstance->file_get_contents($path); } - static public function file_put_contents($path,$data){ + static public function file_put_contents($path,$data) { return self::$defaultInstance->file_put_contents($path,$data); } - static public function unlink($path){ + static public function unlink($path) { return self::$defaultInstance->unlink($path); } - static public function rename($path1,$path2){ + static public function rename($path1,$path2) { return self::$defaultInstance->rename($path1,$path2); } - static public function copy($path1,$path2){ + static public function copy($path1,$path2) { return self::$defaultInstance->copy($path1,$path2); } - static public function fopen($path,$mode){ + static public function fopen($path,$mode) { return self::$defaultInstance->fopen($path,$mode); } - static public function toTmpFile($path){ + static public function toTmpFile($path) { return self::$defaultInstance->toTmpFile($path); } - static public function fromTmpFile($tmpFile,$path){ + static public function fromTmpFile($tmpFile,$path) { return self::$defaultInstance->fromTmpFile($tmpFile,$path); } - static public function getMimeType($path){ + static public function getMimeType($path) { return self::$defaultInstance->getMimeType($path); } - static public function hash($type,$path, $raw = false){ + static public function hash($type,$path, $raw = false) { return self::$defaultInstance->hash($type,$path, $raw); } - static public function free_space($path='/'){ + static public function free_space($path='/') { return self::$defaultInstance->free_space($path); } - static public function search($query){ + static public function search($query) { return OC_FileCache::search($query); } @@ -517,7 +517,7 @@ class OC_Filesystem{ * @param int $time * @return bool */ - static public function hasUpdated($path,$time){ + static public function hasUpdated($path,$time) { return self::$defaultInstance->hasUpdated($path,$time); } @@ -536,26 +536,26 @@ class OC_Filesystem{ * @param bool $stripTrailingSlash * @return string */ - public static function normalizePath($path,$stripTrailingSlash=true){ - if($path==''){ + public static function normalizePath($path,$stripTrailingSlash=true) { + if($path=='') { return '/'; } //no windows style slashes $path=str_replace('\\','/',$path); //add leading slash - if($path[0]!=='/'){ + if($path[0]!=='/') { $path='/'.$path; } //remove trainling slash - if($stripTrailingSlash and strlen($path)>1 and substr($path,-1,1)==='/'){ + if($stripTrailingSlash and strlen($path)>1 and substr($path,-1,1)==='/') { $path=substr($path,0,-1); } //remove duplicate slashes - while(strpos($path,'//')!==false){ + while(strpos($path,'//')!==false) { $path=str_replace('//','/',$path); } //normalize unicode if possible - if(class_exists('Normalizer')){ + if(class_exists('Normalizer')) { $path=Normalizer::normalize($path); } return $path; diff --git a/lib/filesystemview.php b/lib/filesystemview.php index 461a0262560..743f9403011 100644 --- a/lib/filesystemview.php +++ b/lib/filesystemview.php @@ -48,10 +48,10 @@ class OC_FilesystemView { } public function getAbsolutePath($path) { - if(!$path){ + if(!$path) { $path='/'; } - if($path[0]!=='/'){ + if($path[0]!=='/') { $path='/'.$path; } return $this->fakeRoot.$path; @@ -63,7 +63,7 @@ class OC_FilesystemView { * @return bool */ public function chroot($fakeRoot) { - if(!$fakeRoot==''){ + if(!$fakeRoot=='') { if($fakeRoot[0]!=='/') { $fakeRoot='/'.$fakeRoot; } @@ -104,7 +104,7 @@ class OC_FilesystemView { return null; }else{ $path=substr($path, strlen($this->fakeRoot)); - if(strlen($path)===0){ + if(strlen($path)===0) { return '/'; }else{ return $path; @@ -177,13 +177,13 @@ class OC_FilesystemView { return $fsLocal->readdir( $handle ); } public function is_dir($path) { - if($path=='/'){ + if($path=='/') { return true; } return $this->basicOperation('is_dir', $path); } public function is_file($path) { - if($path=='/'){ + if($path=='/') { return false; } return $this->basicOperation('is_file', $path); @@ -214,13 +214,13 @@ class OC_FilesystemView { /** * @deprecated Replaced by isReadable() as part of CRUDS */ - public function is_readable($path){ + public function is_readable($path) { return $this->basicOperation('isReadable',$path); } /** * @deprecated Replaced by isCreatable(), isUpdatable(), isDeletable() as part of CRUDS */ - public function is_writable($path){ + public function is_writable($path) { return $this->basicOperation('isUpdatable',$path); } public function isCreatable($path) { @@ -239,7 +239,7 @@ class OC_FilesystemView { return $this->basicOperation('isSharable', $path); } public function file_exists($path) { - if($path=='/'){ + if($path=='/') { return true; } return $this->basicOperation('file_exists', $path); @@ -411,7 +411,7 @@ class OC_FilesystemView { if($run) { $mp1=$this->getMountPoint($path1.$postFix1); $mp2=$this->getMountPoint($path2.$postFix2); - if($mp1 == $mp2){ + if($mp1 == $mp2) { if($storage = $this->getStorage($path1.$postFix1)) { $result=$storage->copy($this->getInternalPath($path1.$postFix1), $this->getInternalPath($path2.$postFix2)); } @@ -579,7 +579,7 @@ class OC_FilesystemView { return null; } - private function runHooks($hooks,$path,$post=false){ + private function runHooks($hooks,$path,$post=false) { $prefix=($post)?'post_':''; $run=true; if(OC_Filesystem::$loaded and $this->fakeRoot==OC_Filesystem::getRoot()) { diff --git a/lib/geo.php b/lib/geo.php index 964605b1c1c..4eb785da355 100644 --- a/lib/geo.php +++ b/lib/geo.php @@ -12,11 +12,11 @@ class OC_Geo{ * @param (string) $longitude - Longitude * @return (string) $timezone - closest timezone */ - public static function timezone($latitude, $longitude){ + public static function timezone($latitude, $longitude) { $alltimezones = DateTimeZone::listIdentifiers(); $variances = array(); //calculate for all timezones the system know - foreach($alltimezones as $timezone){ + foreach($alltimezones as $timezone) { $datetimezoneobj = new DateTimeZone($timezone); $locationinformations = $datetimezoneobj->getLocation(); $latitudeoftimezone = $locationinformations['latitude']; diff --git a/lib/group.php b/lib/group.php index dd70a94eb0d..b56a4ad456c 100644 --- a/lib/group.php +++ b/lib/group.php @@ -42,8 +42,8 @@ class OC_Group { * @param string $backend The backend to use for user managment * @returns true/false */ - public static function useBackend( $backend ){ - if($backend instanceof OC_Group_Interface){ + public static function useBackend( $backend ) { + if($backend instanceof OC_Group_Interface) { self::$_usedBackends[]=$backend; } } @@ -51,7 +51,7 @@ class OC_Group { /** * remove all used backends */ - public static function clearBackends(){ + public static function clearBackends() { self::$_usedBackends=array(); } @@ -65,27 +65,27 @@ class OC_Group { * * Allowed characters in the username are: "a-z", "A-Z", "0-9" and "_.@-" */ - public static function createGroup( $gid ){ + public static function createGroup( $gid ) { // Check the name for bad characters // Allowed are: "a-z", "A-Z", "0-9" and "_.@-" - if( preg_match( '/[^a-zA-Z0-9 _\.@\-]/', $gid )){ + if( preg_match( '/[^a-zA-Z0-9 _\.@\-]/', $gid )) { return false; } // No empty group names! - if( !$gid ){ + if( !$gid ) { return false; } // No duplicate group names - if( in_array( $gid, self::getGroups())){ + if( in_array( $gid, self::getGroups())) { return false; } $run = true; OC_Hook::emit( "OC_Group", "pre_createGroup", array( "run" => &$run, "gid" => $gid )); - if($run){ + if($run) { //create the group in the first backend that supports creating groups - foreach(self::$_usedBackends as $backend){ + foreach(self::$_usedBackends as $backend) { if(!$backend->implementsActions(OC_GROUP_BACKEND_CREATE_GROUP)) continue; @@ -106,18 +106,18 @@ class OC_Group { * * Deletes a group and removes it from the group_user-table */ - public static function deleteGroup( $gid ){ + public static function deleteGroup( $gid ) { // Prevent users from deleting group admin - if( $gid == "admin" ){ + if( $gid == "admin" ) { return false; } $run = true; OC_Hook::emit( "OC_Group", "pre_deleteGroup", array( "run" => &$run, "gid" => $gid )); - if($run){ + if($run) { //delete the group from all backends - foreach(self::$_usedBackends as $backend){ + foreach(self::$_usedBackends as $backend) { if(!$backend->implementsActions(OC_GROUP_BACKEND_DELETE_GROUP)) continue; @@ -139,9 +139,9 @@ class OC_Group { * * Checks whether the user is member of a group or not. */ - public static function inGroup( $uid, $gid ){ - foreach(self::$_usedBackends as $backend){ - if($backend->inGroup($uid,$gid)){ + public static function inGroup( $uid, $gid ) { + foreach(self::$_usedBackends as $backend) { + if($backend->inGroup($uid,$gid)) { return true; } } @@ -156,9 +156,9 @@ class OC_Group { * * Adds a user to a group. */ - public static function addToGroup( $uid, $gid ){ + public static function addToGroup( $uid, $gid ) { // Does the group exist? - if( !OC_Group::groupExists($gid)){ + if( !OC_Group::groupExists($gid)) { return false; } @@ -166,19 +166,19 @@ class OC_Group { $run = true; OC_Hook::emit( "OC_Group", "pre_addToGroup", array( "run" => &$run, "uid" => $uid, "gid" => $gid )); - if($run){ + if($run) { $succes=false; //add the user to the all backends that have the group - foreach(self::$_usedBackends as $backend){ + foreach(self::$_usedBackends as $backend) { if(!$backend->implementsActions(OC_GROUP_BACKEND_ADD_TO_GROUP)) continue; - if($backend->groupExists($gid)){ + if($backend->groupExists($gid)) { $succes|=$backend->addToGroup($uid, $gid); } } - if($succes){ + if($succes) { OC_Hook::emit( "OC_User", "post_addToGroup", array( "uid" => $uid, "gid" => $gid )); } return $succes; @@ -195,13 +195,13 @@ class OC_Group { * * removes the user from a group. */ - public static function removeFromGroup( $uid, $gid ){ + public static function removeFromGroup( $uid, $gid ) { $run = true; OC_Hook::emit( "OC_Group", "pre_removeFromGroup", array( "run" => &$run, "uid" => $uid, "gid" => $gid )); - if($run){ + if($run) { //remove the user from the all backends that have the group - foreach(self::$_usedBackends as $backend){ + foreach(self::$_usedBackends as $backend) { if(!$backend->implementsActions(OC_GROUP_BACKEND_REMOVE_FROM_GOUP)) continue; @@ -222,9 +222,9 @@ class OC_Group { * This function fetches all groups a user belongs to. It does not check * if the user exists at all. */ - public static function getUserGroups( $uid ){ + public static function getUserGroups( $uid ) { $groups=array(); - foreach(self::$_usedBackends as $backend){ + foreach(self::$_usedBackends as $backend) { $groups=array_merge($backend->getUserGroups($uid),$groups); } asort($groups); @@ -251,9 +251,9 @@ class OC_Group { * @param string $gid * @return bool */ - public static function groupExists($gid){ - foreach(self::$_usedBackends as $backend){ - if ($backend->groupExists($gid)){ + public static function groupExists($gid) { + foreach(self::$_usedBackends as $backend) { + if ($backend->groupExists($gid)) { return true; } } @@ -266,7 +266,7 @@ class OC_Group { */ public static function usersInGroup($gid, $search = '', $limit = -1, $offset = 0) { $users=array(); - foreach(self::$_usedBackends as $backend){ + foreach(self::$_usedBackends as $backend) { $users = array_merge($backend->usersInGroup($gid, $search, $limit, $offset), $users); } return $users; diff --git a/lib/group/backend.php b/lib/group/backend.php index 5969986c652..1ba34c940cf 100644 --- a/lib/group/backend.php +++ b/lib/group/backend.php @@ -52,9 +52,9 @@ abstract class OC_Group_Backend implements OC_Group_Interface { * Returns the supported actions as int to be * compared with OC_USER_BACKEND_CREATE_USER etc. */ - public function getSupportedActions(){ + public function getSupportedActions() { $actions = 0; - foreach($this->possibleActions AS $action => $methodName){ + foreach($this->possibleActions AS $action => $methodName) { if(method_exists($this, $methodName)) { $actions |= $action; } @@ -71,7 +71,7 @@ abstract class OC_Group_Backend implements OC_Group_Interface { * Returns the supported actions as int to be * compared with OC_GROUP_BACKEND_CREATE_GROUP etc. */ - public function implementsActions($actions){ + public function implementsActions($actions) { return (bool)($this->getSupportedActions() & $actions); } @@ -83,7 +83,7 @@ abstract class OC_Group_Backend implements OC_Group_Interface { * * Checks whether the user is member of a group or not. */ - public function inGroup($uid, $gid){ + public function inGroup($uid, $gid) { return in_array($gid, $this->getUserGroups($uid)); } @@ -95,7 +95,7 @@ abstract class OC_Group_Backend implements OC_Group_Interface { * This function fetches all groups a user belongs to. It does not check * if the user exists at all. */ - public function getUserGroups($uid){ + public function getUserGroups($uid) { return array(); } @@ -115,7 +115,7 @@ abstract class OC_Group_Backend implements OC_Group_Interface { * @param string $gid * @return bool */ - public function groupExists($gid){ + public function groupExists($gid) { return in_array($gid, $this->getGroups($gid, 1)); } diff --git a/lib/group/database.php b/lib/group/database.php index 52608b2db73..f3012563acf 100644 --- a/lib/group/database.php +++ b/lib/group/database.php @@ -50,12 +50,12 @@ class OC_Group_Database extends OC_Group_Backend { * Trys to create a new group. If the group name already exists, false will * be returned. */ - public function createGroup( $gid ){ + public function createGroup( $gid ) { // Check for existence $stmt = OC_DB::prepare( "SELECT `gid` FROM `*PREFIX*groups` WHERE `gid` = ?" ); $result = $stmt->execute( array( $gid )); - if( $result->fetchRow() ){ + if( $result->fetchRow() ) { // Can not add an existing group return false; } @@ -75,7 +75,7 @@ class OC_Group_Database extends OC_Group_Backend { * * Deletes a group and removes it from the group_user-table */ - public function deleteGroup( $gid ){ + public function deleteGroup( $gid ) { // Delete the group $stmt = OC_DB::prepare( "DELETE FROM `*PREFIX*groups` WHERE `gid` = ?" ); $result = $stmt->execute( array( $gid )); @@ -95,7 +95,7 @@ class OC_Group_Database extends OC_Group_Backend { * * Checks whether the user is member of a group or not. */ - public function inGroup( $uid, $gid ){ + public function inGroup( $uid, $gid ) { // check $stmt = OC_DB::prepare( "SELECT `uid` FROM `*PREFIX*group_user` WHERE `gid` = ? AND `uid` = ?" ); $result = $stmt->execute( array( $gid, $uid )); @@ -111,9 +111,9 @@ class OC_Group_Database extends OC_Group_Backend { * * Adds a user to a group. */ - public function addToGroup( $uid, $gid ){ + public function addToGroup( $uid, $gid ) { // No duplicate entries! - if( !$this->inGroup( $uid, $gid )){ + if( !$this->inGroup( $uid, $gid )) { $stmt = OC_DB::prepare( "INSERT INTO `*PREFIX*group_user` ( `uid`, `gid` ) VALUES( ?, ? )" ); $stmt->execute( array( $uid, $gid )); return true; @@ -130,7 +130,7 @@ class OC_Group_Database extends OC_Group_Backend { * * removes the user from a group. */ - public function removeFromGroup( $uid, $gid ){ + public function removeFromGroup( $uid, $gid ) { $stmt = OC_DB::prepare( "DELETE FROM `*PREFIX*group_user` WHERE `uid` = ? AND `gid` = ?" ); $stmt->execute( array( $uid, $gid )); @@ -145,13 +145,13 @@ class OC_Group_Database extends OC_Group_Backend { * This function fetches all groups a user belongs to. It does not check * if the user exists at all. */ - public function getUserGroups( $uid ){ + public function getUserGroups( $uid ) { // No magic! $stmt = OC_DB::prepare( "SELECT `gid` FROM `*PREFIX*group_user` WHERE `uid` = ?" ); $result = $stmt->execute( array( $uid )); $groups = array(); - while( $row = $result->fetchRow()){ + while( $row = $result->fetchRow()) { $groups[] = $row["gid"]; } diff --git a/lib/group/dummy.php b/lib/group/dummy.php index 51eca28f3f4..8116dcbd675 100644 --- a/lib/group/dummy.php +++ b/lib/group/dummy.php @@ -34,8 +34,8 @@ class OC_Group_Dummy extends OC_Group_Backend { * Trys to create a new group. If the group name already exists, false will * be returned. */ - public function createGroup($gid){ - if(!isset($this->groups[$gid])){ + public function createGroup($gid) { + if(!isset($this->groups[$gid])) { $this->groups[$gid]=array(); return true; }else{ @@ -50,8 +50,8 @@ class OC_Group_Dummy extends OC_Group_Backend { * * Deletes a group and removes it from the group_user-table */ - public function deleteGroup($gid){ - if(isset($this->groups[$gid])){ + public function deleteGroup($gid) { + if(isset($this->groups[$gid])) { unset($this->groups[$gid]); return true; }else{ @@ -67,8 +67,8 @@ class OC_Group_Dummy extends OC_Group_Backend { * * Checks whether the user is member of a group or not. */ - public function inGroup($uid, $gid){ - if(isset($this->groups[$gid])){ + public function inGroup($uid, $gid) { + if(isset($this->groups[$gid])) { return (array_search($uid,$this->groups[$gid])!==false); }else{ return false; @@ -83,9 +83,9 @@ class OC_Group_Dummy extends OC_Group_Backend { * * Adds a user to a group. */ - public function addToGroup($uid, $gid){ - if(isset($this->groups[$gid])){ - if(array_search($uid,$this->groups[$gid])===false){ + public function addToGroup($uid, $gid) { + if(isset($this->groups[$gid])) { + if(array_search($uid,$this->groups[$gid])===false) { $this->groups[$gid][]=$uid; return true; }else{ @@ -104,9 +104,9 @@ class OC_Group_Dummy extends OC_Group_Backend { * * removes the user from a group. */ - public function removeFromGroup($uid,$gid){ - if(isset($this->groups[$gid])){ - if(($index=array_search($uid,$this->groups[$gid]))!==false){ + public function removeFromGroup($uid,$gid) { + if(isset($this->groups[$gid])) { + if(($index=array_search($uid,$this->groups[$gid]))!==false) { unset($this->groups[$gid][$index]); }else{ return false; @@ -124,11 +124,11 @@ class OC_Group_Dummy extends OC_Group_Backend { * This function fetches all groups a user belongs to. It does not check * if the user exists at all. */ - public function getUserGroups($uid){ + public function getUserGroups($uid) { $groups=array(); $allGroups=array_keys($this->groups); - foreach($allGroups as $group){ - if($this->inGroup($uid,$group)){ + foreach($allGroups as $group) { + if($this->inGroup($uid,$group)) { $groups[]=$group; } } @@ -150,7 +150,7 @@ class OC_Group_Dummy extends OC_Group_Backend { * @returns array with user ids */ public function usersInGroup($gid, $search = '', $limit = -1, $offset = 0) { - if(isset($this->groups[$gid])){ + if(isset($this->groups[$gid])) { return $this->groups[$gid]; }else{ return array(); diff --git a/lib/helper.php b/lib/helper.php index ea43304da5f..70b2f78862b 100644 --- a/lib/helper.php +++ b/lib/helper.php @@ -37,12 +37,12 @@ class OC_Helper { * * Returns a url to the given app and file. */ - public static function linkTo( $app, $file, $args = array() ){ - if( $app != '' ){ + public static function linkTo( $app, $file, $args = array() ) { + if( $app != '' ) { $app_path = OC_App::getAppPath($app); // Check if the app is in the app folder - if( $app_path && file_exists( $app_path.'/'.$file )){ - if(substr($file, -3) == 'php' || substr($file, -3) == 'css'){ + if( $app_path && file_exists( $app_path.'/'.$file )) { + if(substr($file, -3) == 'php' || substr($file, -3) == 'css') { $urlLinkTo = OC::$WEBROOT . '/?app=' . $app; $urlLinkTo .= ($file!='index.php')?'&getfile=' . urlencode($file):''; }else{ @@ -54,7 +54,7 @@ class OC_Helper { } } else{ - if( file_exists( OC::$SERVERROOT . '/core/'. $file )){ + if( file_exists( OC::$SERVERROOT . '/core/'. $file )) { $urlLinkTo = OC::$WEBROOT . '/core/'.$file; } else{ @@ -125,22 +125,22 @@ class OC_Helper { * * Returns the path to the image. */ - public static function imagePath( $app, $image ){ + public static function imagePath( $app, $image ) { // Read the selected theme from the config file $theme=OC_Config::getValue( "theme" ); // Check if the app is in the app folder - if( file_exists( OC::$SERVERROOT."/themes/$theme/apps/$app/img/$image" )){ + if( file_exists( OC::$SERVERROOT."/themes/$theme/apps/$app/img/$image" )) { return OC::$WEBROOT."/themes/$theme/apps/$app/img/$image"; - }elseif( file_exists(OC_App::getAppPath($app)."/img/$image" )){ + }elseif( file_exists(OC_App::getAppPath($app)."/img/$image" )) { return OC_App::getAppWebPath($app)."/img/$image"; - }elseif( !empty( $app ) and file_exists( OC::$SERVERROOT."/themes/$theme/$app/img/$image" )){ + }elseif( !empty( $app ) and file_exists( OC::$SERVERROOT."/themes/$theme/$app/img/$image" )) { return OC::$WEBROOT."/themes/$theme/$app/img/$image"; - }elseif( !empty( $app ) and file_exists( OC::$SERVERROOT."/$app/img/$image" )){ + }elseif( !empty( $app ) and file_exists( OC::$SERVERROOT."/$app/img/$image" )) { return OC::$WEBROOT."/$app/img/$image"; - }elseif( file_exists( OC::$SERVERROOT."/themes/$theme/core/img/$image" )){ + }elseif( file_exists( OC::$SERVERROOT."/themes/$theme/core/img/$image" )) { return OC::$WEBROOT."/themes/$theme/core/img/$image"; - }elseif( file_exists( OC::$SERVERROOT."/core/img/$image" )){ + }elseif( file_exists( OC::$SERVERROOT."/core/img/$image" )) { return OC::$WEBROOT."/core/img/$image"; }else{ echo('image not found: image:'.$image.' webroot:'.OC::$WEBROOT.' serverroot:'.OC::$SERVERROOT); @@ -155,26 +155,26 @@ class OC_Helper { * * Returns the path to the image of this file type. */ - public static function mimetypeIcon( $mimetype ){ + public static function mimetypeIcon( $mimetype ) { $alias=array('application/xml'=>'code/xml'); - if(isset($alias[$mimetype])){ + if(isset($alias[$mimetype])) { $mimetype=$alias[$mimetype]; } // Replace slash with a minus $mimetype = str_replace( "/", "-", $mimetype ); // Is it a dir? - if( $mimetype == "dir" ){ + if( $mimetype == "dir" ) { return OC::$WEBROOT."/core/img/filetypes/folder.png"; } // Icon exists? - if( file_exists( OC::$SERVERROOT."/core/img/filetypes/$mimetype.png" )){ + if( file_exists( OC::$SERVERROOT."/core/img/filetypes/$mimetype.png" )) { return OC::$WEBROOT."/core/img/filetypes/$mimetype.png"; } //try only the first part of the filetype $mimetype=substr($mimetype,0,strpos($mimetype,'-')); - if( file_exists( OC::$SERVERROOT."/core/img/filetypes/$mimetype.png" )){ + if( file_exists( OC::$SERVERROOT."/core/img/filetypes/$mimetype.png" )) { return OC::$WEBROOT."/core/img/filetypes/$mimetype.png"; } else{ @@ -189,16 +189,16 @@ class OC_Helper { * * Makes 2048 to 2 kB. */ - public static function humanFileSize( $bytes ){ - if( $bytes < 1024 ){ + public static function humanFileSize( $bytes ) { + if( $bytes < 1024 ) { return "$bytes B"; } $bytes = round( $bytes / 1024, 1 ); - if( $bytes < 1024 ){ + if( $bytes < 1024 ) { return "$bytes kB"; } $bytes = round( $bytes / 1024, 1 ); - if( $bytes < 1024 ){ + if( $bytes < 1024 ) { return "$bytes MB"; } @@ -216,7 +216,7 @@ class OC_Helper { * * Inspired by: http://www.php.net/manual/en/function.filesize.php#92418 */ - public static function computerFileSize( $str ){ + public static function computerFileSize( $str ) { $bytes = 0; $str=strtolower($str); @@ -280,17 +280,17 @@ class OC_Helper { * */ static function copyr($src, $dest) { - if(is_dir($src)){ - if(!is_dir($dest)){ + if(is_dir($src)) { + if(!is_dir($dest)) { mkdir($dest); } $files = scandir($src); - foreach ($files as $file){ - if ($file != "." && $file != ".."){ + foreach ($files as $file) { + if ($file != "." && $file != "..") { self::copyr("$src/$file", "$dest/$file"); } } - }elseif(file_exists($src)){ + }elseif(file_exists($src)) { copy($src, $dest); } } @@ -303,13 +303,13 @@ class OC_Helper { static function rmdirr($dir) { if(is_dir($dir)) { $files=scandir($dir); - foreach($files as $file){ - if ($file != "." && $file != ".."){ + foreach($files as $file) { + if ($file != "." && $file != "..") { self::rmdirr("$dir/$file"); } } rmdir($dir); - }elseif(file_exists($dir)){ + }elseif(file_exists($dir)) { unlink($dir); } if(file_exists($dir)) { @@ -323,7 +323,7 @@ class OC_Helper { * @return string * does NOT work for ownClouds filesystem, use OC_FileSystem::getMimeType instead */ - static function getMimeType($path){ + static function getMimeType($path) { $isWrapped=(strpos($path,'://')!==false) and (substr($path,0,7)=='file://'); if (@is_dir($path)) { @@ -331,9 +331,9 @@ class OC_Helper { return "httpd/unix-directory"; } - if(strpos($path,'.')){ + if(strpos($path,'.')) { //try to guess the type by the file extension - if(!self::$mimetypes || self::$mimetypes != include('mimetypes.list.php')){ + if(!self::$mimetypes || self::$mimetypes != include('mimetypes.list.php')) { self::$mimetypes=include('mimetypes.list.php'); } $extension=strtolower(strrchr(basename($path), ".")); @@ -343,9 +343,9 @@ class OC_Helper { $mimeType='application/octet-stream'; } - if($mimeType=='application/octet-stream' and function_exists('finfo_open') and function_exists('finfo_file') and $finfo=finfo_open(FILEINFO_MIME)){ + if($mimeType=='application/octet-stream' and function_exists('finfo_open') and function_exists('finfo_file') and $finfo=finfo_open(FILEINFO_MIME)) { $info = @strtolower(finfo_file($finfo,$path)); - if($info){ + if($info) { $mimeType=substr($info,0,strpos($info,';')); } finfo_close($finfo); @@ -379,8 +379,8 @@ class OC_Helper { * @param string data * @return string */ - static function getStringMimeType($data){ - if(function_exists('finfo_open') and function_exists('finfo_file')){ + static function getStringMimeType($data) { + if(function_exists('finfo_open') and function_exists('finfo_file')) { $finfo=finfo_open(FILEINFO_MIME); return finfo_buffer($finfo, $data); }else{ @@ -429,7 +429,7 @@ class OC_Helper { * @param string optional search path, defaults to $PATH * @return bool true if executable program found in path */ - public static function canExecute($name, $path = false){ + public static function canExecute($name, $path = false) { // path defaults to PATH from environment if not set if ($path === false) { $path = getenv("PATH"); @@ -473,12 +473,12 @@ class OC_Helper { * @param resource target * @return int the number of bytes copied */ - public static function streamCopy($source,$target){ - if(!$source or !$target){ + public static function streamCopy($source,$target) { + if(!$source or !$target) { return false; } $count=0; - while(!feof($source)){ + while(!feof($source)) { $count+=fwrite($target,fread($source,8192)); } return $count; @@ -491,7 +491,7 @@ class OC_Helper { * * temporary files are automatically cleaned up after the script is finished */ - public static function tmpFile($postfix=''){ + public static function tmpFile($postfix='') { $file=get_temp_dir().'/'.md5(time().rand()).$postfix; $fh=fopen($file,'w'); fclose($fh); @@ -505,7 +505,7 @@ class OC_Helper { * * temporary files are automatically cleaned up after the script is finished */ - public static function tmpFolder(){ + public static function tmpFolder() { $path=get_temp_dir().'/'.md5(time().rand()); mkdir($path); self::$tmpFiles[]=$path; @@ -515,9 +515,9 @@ class OC_Helper { /** * remove all files created by self::tmpFile */ - public static function cleanTmp(){ + public static function cleanTmp() { $leftoversFile=get_temp_dir().'/oc-not-deleted'; - if(file_exists($leftoversFile)){ + if(file_exists($leftoversFile)) { $leftovers=file($leftoversFile); foreach($leftovers as $file) { self::rmdirr($file); @@ -525,8 +525,8 @@ class OC_Helper { unlink($leftoversFile); } - foreach(self::$tmpFiles as $file){ - if(file_exists($file)){ + foreach(self::$tmpFiles as $file) { + if(file_exists($file)) { if(!self::rmdirr($file)) { file_put_contents($leftoversFile, $file."\n", FILE_APPEND); } @@ -541,8 +541,8 @@ class OC_Helper { * @param $filename * @return string */ - public static function buildNotExistingFileName($path, $filename){ - if($path==='/'){ + public static function buildNotExistingFileName($path, $filename) { + if($path==='/') { $path=''; } if ($pos = strrpos($filename, '.')) { @@ -571,21 +571,21 @@ class OC_Helper { * @param $parent * @return bool */ - public static function issubdirectory($sub, $parent){ - if($sub == null || $sub == '' || $parent == null || $parent == ''){ + public static function issubdirectory($sub, $parent) { + if($sub == null || $sub == '' || $parent == null || $parent == '') { return false; } $realpath_sub = realpath($sub); $realpath_parent = realpath($parent); - if(($realpath_sub == false && substr_count($realpath_sub, './') != 0) || ($realpath_parent == false && substr_count($realpath_parent, './') != 0)){ //it checks for both ./ and ../ + if(($realpath_sub == false && substr_count($realpath_sub, './') != 0) || ($realpath_parent == false && substr_count($realpath_parent, './') != 0)) { //it checks for both ./ and ../ return false; } - if($realpath_sub && $realpath_sub != '' && $realpath_parent && $realpath_parent != ''){ - if(substr($realpath_sub, 0, strlen($realpath_parent)) == $realpath_parent){ + if($realpath_sub && $realpath_sub != '' && $realpath_parent && $realpath_parent != '') { + if(substr($realpath_sub, 0, strlen($realpath_parent)) == $realpath_parent) { return true; } }else{ - if(substr($sub, 0, strlen($parent)) == $parent){ + if(substr($sub, 0, strlen($parent)) == $parent) { return true; } } @@ -610,7 +610,7 @@ class OC_Helper { * based on http://www.php.net/manual/en/function.array-change-key-case.php#107715 * */ - public static function mb_array_change_key_case($input, $case = MB_CASE_LOWER, $encoding = 'UTF-8'){ + public static function mb_array_change_key_case($input, $case = MB_CASE_LOWER, $encoding = 'UTF-8') { $case = ($case != MB_CASE_UPPER) ? MB_CASE_LOWER : MB_CASE_UPPER; $ret = array(); foreach ($input as $k => $v) { diff --git a/lib/hook.php b/lib/hook.php index ee390d6cd5a..1bf80f604f6 100644 --- a/lib/hook.php +++ b/lib/hook.php @@ -19,12 +19,12 @@ class OC_Hook{ * * TODO: write example */ - static public function connect( $signalclass, $signalname, $slotclass, $slotname ){ + static public function connect( $signalclass, $signalname, $slotclass, $slotname ) { // Create the data structure - if( !array_key_exists( $signalclass, self::$registered )){ + if( !array_key_exists( $signalclass, self::$registered )) { self::$registered[$signalclass] = array(); } - if( !array_key_exists( $signalname, self::$registered[$signalclass] )){ + if( !array_key_exists( $signalname, self::$registered[$signalclass] )) { self::$registered[$signalclass][$signalname] = array(); } @@ -48,17 +48,17 @@ class OC_Hook{ * * TODO: write example */ - static public function emit( $signalclass, $signalname, $params = array()){ + static public function emit( $signalclass, $signalname, $params = array()) { // Return false if there are no slots - if( !array_key_exists( $signalclass, self::$registered )){ + if( !array_key_exists( $signalclass, self::$registered )) { return false; } - if( !array_key_exists( $signalname, self::$registered[$signalclass] )){ + if( !array_key_exists( $signalname, self::$registered[$signalclass] )) { return false; } // Call all slots - foreach( self::$registered[$signalclass][$signalname] as $i ){ + foreach( self::$registered[$signalclass][$signalname] as $i ) { call_user_func( array( $i["class"], $i["name"] ), $params ); } @@ -71,9 +71,9 @@ class OC_Hook{ * @param string signalclass * @param string signalname */ - static public function clear($signalclass='', $signalname=''){ - if($signalclass){ - if($signalname){ + static public function clear($signalclass='', $signalname='') { + if($signalclass) { + if($signalname) { self::$registered[$signalclass][$signalname]=array(); }else{ self::$registered[$signalclass]=array(); diff --git a/lib/image.php b/lib/image.php index e87cf9e16d9..f4b3c2cc071 100644 --- a/lib/image.php +++ b/lib/image.php @@ -262,7 +262,7 @@ class OC_Image { * @returns The orientation or -1 if no EXIF data is available. */ public function getOrientation() { - if(!is_callable('exif_read_data')){ + if(!is_callable('exif_read_data')) { OC_Log::write('core','OC_Image->fixOrientation() Exif module not enabled.', OC_Log::DEBUG); return -1; } @@ -612,7 +612,7 @@ class OC_Image { $y = ($height_orig/2) - ($height/2); $x = 0; } - if($size>0){ + if($size>0) { $targetWidth=$size; $targetHeight=$size; }else{ @@ -666,14 +666,14 @@ class OC_Image { return true; } - public function destroy(){ - if($this->valid()){ + public function destroy() { + if($this->valid()) { imagedestroy($this->resource); } $this->resource=null; } - public function __destruct(){ + public function __destruct() { $this->destroy(); } } diff --git a/lib/installer.php b/lib/installer.php index b8a3226aa0b..9135c60fc05 100644 --- a/lib/installer.php +++ b/lib/installer.php @@ -55,22 +55,22 @@ class OC_Installer{ * It is the task of oc_app_install to create the tables and do whatever is * needed to get the app working. */ - public static function installApp( $data = array()){ - if(!isset($data['source'])){ + public static function installApp( $data = array()) { + if(!isset($data['source'])) { OC_Log::write('core','No source specified when installing app',OC_Log::ERROR); return false; } //download the file if necesary - if($data['source']=='http'){ + if($data['source']=='http') { $path=OC_Helper::tmpFile(); - if(!isset($data['href'])){ + if(!isset($data['href'])) { OC_Log::write('core','No href specified when installing app from http',OC_Log::ERROR); return false; } copy($data['href'],$path); }else{ - if(!isset($data['path'])){ + if(!isset($data['path'])) { OC_Log::write('core','No path specified when installing app from local file',OC_Log::ERROR); return false; } @@ -79,10 +79,10 @@ class OC_Installer{ //detect the archive type $mime=OC_Helper::getMimeType($path); - if($mime=='application/zip'){ + if($mime=='application/zip') { rename($path,$path.'.zip'); $path.='.zip'; - }elseif($mime=='application/x-gzip'){ + }elseif($mime=='application/x-gzip') { rename($path,$path.'.tgz'); $path.='.tgz'; }else{ @@ -94,40 +94,40 @@ class OC_Installer{ $extractDir=OC_Helper::tmpFolder(); OC_Helper::rmdirr($extractDir); mkdir($extractDir); - if($archive=OC_Archive::open($path)){ + if($archive=OC_Archive::open($path)) { $archive->extract($extractDir); } else { OC_Log::write('core','Failed to open archive when installing app',OC_Log::ERROR); OC_Helper::rmdirr($extractDir); - if($data['source']=='http'){ + if($data['source']=='http') { unlink($path); } return false; } //load the info.xml file of the app - if(!is_file($extractDir.'/appinfo/info.xml')){ + if(!is_file($extractDir.'/appinfo/info.xml')) { //try to find it in a subdir $dh=opendir($extractDir); - while($folder=readdir($dh)){ - if($folder[0]!='.' and is_dir($extractDir.'/'.$folder)){ - if(is_file($extractDir.'/'.$folder.'/appinfo/info.xml')){ + while($folder=readdir($dh)) { + if($folder[0]!='.' and is_dir($extractDir.'/'.$folder)) { + if(is_file($extractDir.'/'.$folder.'/appinfo/info.xml')) { $extractDir.='/'.$folder; } } } } - if(!is_file($extractDir.'/appinfo/info.xml')){ + if(!is_file($extractDir.'/appinfo/info.xml')) { OC_Log::write('core','App does not provide an info.xml file',OC_Log::ERROR); OC_Helper::rmdirr($extractDir); - if($data['source']=='http'){ + if($data['source']=='http') { unlink($path); } return false; } $info=OC_App::getAppInfo($extractDir.'/appinfo/info.xml',true); // check the code for not allowed calls - if(!OC_Installer::checkCode($info['id'],$extractDir)){ + if(!OC_Installer::checkCode($info['id'],$extractDir)) { OC_Log::write('core','App can\'t be installed because of not allowed code in the App',OC_Log::ERROR); OC_Helper::rmdirr($extractDir); return false; @@ -135,17 +135,17 @@ class OC_Installer{ // check if the app is compatible with this version of ownCloud $version=OC_Util::getVersion(); - if(!isset($info['require']) or ($version[0]>$info['require'])){ + if(!isset($info['require']) or ($version[0]>$info['require'])) { OC_Log::write('core','App can\'t be installed because it is not compatible with this version of ownCloud',OC_Log::ERROR); OC_Helper::rmdirr($extractDir); return false; } //check if an app with the same id is already installed - if(self::isInstalled( $info['id'] )){ + if(self::isInstalled( $info['id'] )) { OC_Log::write('core','App already installed',OC_Log::WARN); OC_Helper::rmdirr($extractDir); - if($data['source']=='http'){ + if($data['source']=='http') { unlink($path); } return false; @@ -153,24 +153,24 @@ class OC_Installer{ $basedir=OC_App::getInstallPath().'/'.$info['id']; //check if the destination directory already exists - if(is_dir($basedir)){ + if(is_dir($basedir)) { OC_Log::write('core','App directory already exists',OC_Log::WARN); OC_Helper::rmdirr($extractDir); - if($data['source']=='http'){ + if($data['source']=='http') { unlink($path); } return false; } - if(isset($data['pretent']) and $data['pretent']==true){ + if(isset($data['pretent']) and $data['pretent']==true) { return false; } //copy the app to the correct place - if(@!mkdir($basedir)){ + if(@!mkdir($basedir)) { OC_Log::write('core','Can\'t create app folder. Please fix permissions. ('.$basedir.')',OC_Log::ERROR); OC_Helper::rmdirr($extractDir); - if($data['source']=='http'){ + if($data['source']=='http') { unlink($path); } return false; @@ -181,12 +181,12 @@ class OC_Installer{ OC_Helper::rmdirr($extractDir); //install the database - if(is_file($basedir.'/appinfo/database.xml')){ + if(is_file($basedir.'/appinfo/database.xml')) { OC_DB::createDbFromStructure($basedir.'/appinfo/database.xml'); } //run appinfo/install.php - if((!isset($data['noinstall']) or $data['noinstall']==false) and file_exists($basedir.'/appinfo/install.php')){ + if((!isset($data['noinstall']) or $data['noinstall']==false) and file_exists($basedir.'/appinfo/install.php')) { include($basedir.'/appinfo/install.php'); } @@ -195,10 +195,10 @@ class OC_Installer{ OC_Appconfig::setValue($info['id'],'enabled','no'); //set remote/public handelers - foreach($info['remote'] as $name=>$path){ + foreach($info['remote'] as $name=>$path) { OCP\CONFIG::setAppValue('core', 'remote_'.$name, $info['id'].'/'.$path); } - foreach($info['public'] as $name=>$path){ + foreach($info['public'] as $name=>$path) { OCP\CONFIG::setAppValue('core', 'public_'.$name, $info['id'].'/'.$path); } @@ -214,9 +214,9 @@ class OC_Installer{ * * Checks whether or not an app is installed, i.e. registered in apps table. */ - public static function isInstalled( $app ){ + public static function isInstalled( $app ) { - if( null == OC_Appconfig::getValue( $app, "installed_version" )){ + if( null == OC_Appconfig::getValue( $app, "installed_version" )) { return false; } @@ -250,7 +250,7 @@ class OC_Installer{ * * upgrade.php can determine the current installed version of the app using "OC_Appconfig::getValue($appid,'installed_version')" */ - public static function upgradeApp( $data = array()){ + public static function upgradeApp( $data = array()) { // TODO: write function return true; } @@ -275,7 +275,7 @@ class OC_Installer{ * The function will not delete preferences, tables and the configuration, * this has to be done by the function oc_app_uninstall(). */ - public static function removeApp( $name, $options = array()){ + public static function removeApp( $name, $options = array()) { // TODO: write function return true; } @@ -285,16 +285,16 @@ class OC_Installer{ * * This function installs all apps found in the 'apps' directory that should be enabled by default; */ - public static function installShippedApps(){ + public static function installShippedApps() { foreach(OC::$APPSROOTS as $app_dir) { - if($dir = opendir( $app_dir['path'] )){ - while( false !== ( $filename = readdir( $dir ))){ - if( substr( $filename, 0, 1 ) != '.' and is_dir($app_dir['path']."/$filename") ){ - if( file_exists( $app_dir['path']."/$filename/appinfo/app.php" )){ - if(!OC_Installer::isInstalled($filename)){ + if($dir = opendir( $app_dir['path'] )) { + while( false !== ( $filename = readdir( $dir ))) { + if( substr( $filename, 0, 1 ) != '.' and is_dir($app_dir['path']."/$filename") ) { + if( file_exists( $app_dir['path']."/$filename/appinfo/app.php" )) { + if(!OC_Installer::isInstalled($filename)) { $info=OC_App::getAppInfo($filename); $enabled = isset($info['default_enable']); - if( $enabled ){ + if( $enabled ) { OC_Installer::installShippedApp($filename); OC_Appconfig::setValue($filename,'enabled','yes'); } @@ -312,24 +312,24 @@ class OC_Installer{ * @param string $app id of the app to install * @returns array see OC_App::getAppInfo */ - public static function installShippedApp($app){ + public static function installShippedApp($app) { //install the database - if(is_file(OC_App::getAppPath($app)."/appinfo/database.xml")){ + if(is_file(OC_App::getAppPath($app)."/appinfo/database.xml")) { OC_DB::createDbFromStructure(OC_App::getAppPath($app)."/appinfo/database.xml"); } //run appinfo/install.php - if(is_file(OC_App::getAppPath($app)."/appinfo/install.php")){ + if(is_file(OC_App::getAppPath($app)."/appinfo/install.php")) { include(OC_App::getAppPath($app)."/appinfo/install.php"); } $info=OC_App::getAppInfo($app); OC_Appconfig::setValue($app,'installed_version',OC_App::getAppVersion($app)); //set remote/public handelers - foreach($info['remote'] as $name=>$path){ + foreach($info['remote'] as $name=>$path) { OCP\CONFIG::setAppValue('core', 'remote_'.$name, $app.'/'.$path); } - foreach($info['public'] as $name=>$path){ + foreach($info['public'] as $name=>$path) { OCP\CONFIG::setAppValue('core', 'public_'.$name, $app.'/'.$path); } @@ -344,7 +344,7 @@ class OC_Installer{ * @param string $folder the folder of the app to check * @returns true for app is o.k. and false for app is not o.k. */ - public static function checkCode($appname,$folder){ + public static function checkCode($appname,$folder) { $blacklist=array( 'exec(', @@ -355,7 +355,7 @@ class OC_Installer{ ); // is the code checker enabled? - if(OC_Config::getValue('appcodechecker', false)){ + if(OC_Config::getValue('appcodechecker', false)) { // check if grep is installed $grep = exec('which grep'); diff --git a/lib/json.php b/lib/json.php index 12442cc83d7..518c3c87c49 100644 --- a/lib/json.php +++ b/lib/json.php @@ -11,8 +11,8 @@ class OC_JSON{ /** * set Content-Type header to jsonrequest */ - public static function setContentTypeHeader($type='application/json'){ - if (!self::$send_content_type_header){ + public static function setContentTypeHeader($type='application/json') { + if (!self::$send_content_type_header) { // We send json data header( 'Content-Type: '.$type ); self::$send_content_type_header = true; @@ -22,8 +22,8 @@ class OC_JSON{ /** * Check if the app is enabled, send json error msg if not */ - public static function checkAppEnabled($app){ - if( !OC_App::isEnabled($app)){ + public static function checkAppEnabled($app) { + if( !OC_App::isEnabled($app)) { $l = OC_L10N::get('lib'); self::error(array( 'data' => array( 'message' => $l->t('Application is not enabled') ))); exit(); @@ -33,8 +33,8 @@ class OC_JSON{ /** * Check if the user is logged in, send json error msg if not */ - public static function checkLoggedIn(){ - if( !OC_User::isLoggedIn()){ + public static function checkLoggedIn() { + if( !OC_User::isLoggedIn()) { $l = OC_L10N::get('lib'); self::error(array( 'data' => array( 'message' => $l->t('Authentication error') ))); exit(); @@ -45,8 +45,8 @@ class OC_JSON{ * @brief Check an ajax get/post call if the request token is valid. * @return json Error msg if not valid. */ - public static function callCheck(){ - if( !OC_Util::isCallRegistered()){ + public static function callCheck() { + if( !OC_Util::isCallRegistered()) { $l = OC_L10N::get('lib'); self::error(array( 'data' => array( 'message' => $l->t('Token expired. Please reload page.') ))); exit(); @@ -56,9 +56,9 @@ class OC_JSON{ /** * Check if the user is a admin, send json error msg if not */ - public static function checkAdminUser(){ + public static function checkAdminUser() { self::checkLoggedIn(); - if( !OC_Group::inGroup( OC_User::getUser(), 'admin' )){ + if( !OC_Group::inGroup( OC_User::getUser(), 'admin' )) { $l = OC_L10N::get('lib'); self::error(array( 'data' => array( 'message' => $l->t('Authentication error') ))); exit(); @@ -68,9 +68,9 @@ class OC_JSON{ /** * Check if the user is a subadmin, send json error msg if not */ - public static function checkSubAdminUser(){ + public static function checkSubAdminUser() { self::checkLoggedIn(); - if(!OC_Group::inGroup(OC_User::getUser(),'admin') && !OC_SubAdmin::isSubAdmin(OC_User::getUser())){ + if(!OC_Group::inGroup(OC_User::getUser(),'admin') && !OC_SubAdmin::isSubAdmin(OC_User::getUser())) { $l = OC_L10N::get('lib'); self::error(array( 'data' => array( 'message' => $l->t('Authentication error') ))); exit(); @@ -80,7 +80,7 @@ class OC_JSON{ /** * Send json error msg */ - public static function error($data = array()){ + public static function error($data = array()) { $data['status'] = 'error'; self::encodedPrint($data); } @@ -88,7 +88,7 @@ class OC_JSON{ /** * Send json success msg */ - public static function success($data = array()){ + public static function success($data = array()) { $data['status'] = 'success'; self::encodedPrint($data); } @@ -96,7 +96,7 @@ class OC_JSON{ /** * Convert OC_L10N_String to string, for use in json encodings */ - protected static function to_string(&$value){ + protected static function to_string(&$value) { if ($value instanceof OC_L10N_String) { $value = (string)$value; } @@ -105,10 +105,10 @@ class OC_JSON{ /** * Encode and print $data in json format */ - public static function encodedPrint($data,$setContentType=true){ + public static function encodedPrint($data,$setContentType=true) { // Disable mimesniffing, don't move this to setContentTypeHeader! header( 'X-Content-Type-Options: nosniff' ); - if($setContentType){ + if($setContentType) { self::setContentTypeHeader(); } array_walk_recursive($data, array('OC_JSON', 'to_string')); diff --git a/lib/l10n.php b/lib/l10n.php index f8274126136..90877cbd747 100644 --- a/lib/l10n.php +++ b/lib/l10n.php @@ -66,9 +66,9 @@ class OC_L10N{ * get an L10N instance * @return OC_L10N */ - public static function get($app,$lang=null){ - if(is_null($lang)){ - if(!isset(self::$instances[$app])){ + public static function get($app,$lang=null) { + if(is_null($lang)) { + if(!isset(self::$instances[$app])) { self::$instances[$app]=new OC_L10N($app); } return self::$instances[$app]; @@ -86,12 +86,12 @@ class OC_L10N{ * If language is not set, the constructor tries to find the right * language. */ - public function __construct($app, $lang = null){ + public function __construct($app, $lang = null) { $this->app = $app; $this->lang = $lang; } - protected function init(){ + protected function init() { if ($this->app === true) { return; } @@ -104,7 +104,7 @@ class OC_L10N{ } // Use cache if possible - if(array_key_exists($app.'::'.$lang, self::$cache)){ + if(array_key_exists($app.'::'.$lang, self::$cache)) { $this->translations = self::$cache[$app.'::'.$lang]['t']; $this->localizations = self::$cache[$app.'::'.$lang]['l']; @@ -119,15 +119,15 @@ class OC_L10N{ OC_Helper::issubdirectory($i18ndir.$lang.'.php', OC::$SERVERROOT.'/settings')) && file_exists($i18ndir.$lang.'.php')) { // Include the file, save the data from $CONFIG include(strip_tags($i18ndir).strip_tags($lang).'.php'); - if(isset($TRANSLATIONS) && is_array($TRANSLATIONS)){ + if(isset($TRANSLATIONS) && is_array($TRANSLATIONS)) { $this->translations = $TRANSLATIONS; } } - if(file_exists(OC::$SERVERROOT.'/core/l10n/l10n-'.$lang.'.php')){ + if(file_exists(OC::$SERVERROOT.'/core/l10n/l10n-'.$lang.'.php')) { // Include the file, save the data from $CONFIG include(OC::$SERVERROOT.'/core/l10n/l10n-'.$lang.'.php'); - if(isset($LOCALIZATIONS) && is_array($LOCALIZATIONS)){ + if(isset($LOCALIZATIONS) && is_array($LOCALIZATIONS)) { $this->localizations = array_merge($this->localizations, $LOCALIZATIONS); } } @@ -146,7 +146,7 @@ class OC_L10N{ * Returns the translation. If no translation is found, $text will be * returned. */ - public function t($text, $parameters = array()){ + public function t($text, $parameters = array()) { return new OC_L10N_String($this, $text, $parameters); } @@ -164,10 +164,10 @@ class OC_L10N{ * * */ - public function tA($textArray){ + public function tA($textArray) { OC_Log::write('core', 'DEPRECATED: the method tA is deprecated and will be removed soon.',OC_Log::WARN); $result = array(); - foreach($textArray as $key => $text){ + foreach($textArray as $key => $text) { $result[$key] = (string)$this->t($text); } return $result; @@ -179,7 +179,7 @@ class OC_L10N{ * * Returns an associative array with all translations */ - public function getTranslations(){ + public function getTranslations() { $this->init(); return $this->translations; } @@ -206,9 +206,9 @@ class OC_L10N{ * - l10n-field: time * - params: timestamp (int/string) */ - public function l($type, $data){ + public function l($type, $data) { $this->init(); - switch($type){ + switch($type) { // If you add something don't forget to add it to $localizations // at the top of the page case 'date': @@ -233,7 +233,7 @@ class OC_L10N{ * This function is useful to avoid loading thousands of files if only one * simple string is needed, for example in appinfo.php */ - public static function selectLanguage($text){ + public static function selectLanguage($text) { $lang = self::findLanguage(array_keys($text)); return $text[$lang]; } @@ -249,37 +249,37 @@ class OC_L10N{ * * If nothing works it returns 'en' */ - public static function findLanguage($app = null){ - if(!is_array($app) && self::$language != ''){ + public static function findLanguage($app = null) { + if(!is_array($app) && self::$language != '') { return self::$language; } - if(OC_User::getUser() && OC_Preferences::getValue(OC_User::getUser(), 'core', 'lang')){ + if(OC_User::getUser() && OC_Preferences::getValue(OC_User::getUser(), 'core', 'lang')) { $lang = OC_Preferences::getValue(OC_User::getUser(), 'core', 'lang'); self::$language = $lang; - if(is_array($app)){ + if(is_array($app)) { $available = $app; $lang_exists = array_search($lang, $available) !== false; } else { $lang_exists = self::languageExists($app, $lang); } - if($lang_exists){ + if($lang_exists) { return $lang; } } - if(isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])){ + if(isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) { $accepted_languages = preg_split('/,\s*/', $_SERVER['HTTP_ACCEPT_LANGUAGE']); - if(is_array($app)){ + if(is_array($app)) { $available = $app; } else{ $available = self::findAvailableLanguages($app); } - foreach($accepted_languages as $i){ + foreach($accepted_languages as $i) { $temp = explode(';', $i); - if(array_search($temp[0], $available) !== false){ + if(array_search($temp[0], $available) !== false) { return $temp[0]; } } @@ -294,12 +294,12 @@ class OC_L10N{ * @param $app App that needs to be translated * @returns directory */ - protected static function findI18nDir($app){ + protected static function findI18nDir($app) { // find the i18n dir $i18ndir = OC::$SERVERROOT.'/core/l10n/'; - if($app != ''){ + if($app != '') { // Check if the app is in the app folder - if(file_exists(OC_App::getAppPath($app).'/l10n/')){ + if(file_exists(OC_App::getAppPath($app).'/l10n/')) { $i18ndir = OC_App::getAppPath($app).'/l10n/'; } else{ @@ -314,13 +314,13 @@ class OC_L10N{ * @param $app App that needs to be translated * @returns array an array of available languages */ - public static function findAvailableLanguages($app=null){ + public static function findAvailableLanguages($app=null) { $available=array('en');//english is always available $dir = self::findI18nDir($app); - if(is_dir($dir)){ + if(is_dir($dir)) { $files=scandir($dir); - foreach($files as $file){ - if(substr($file, -4, 4) == '.php'){ + foreach($files as $file) { + if(substr($file, -4, 4) == '.php') { $i = substr($file, 0, -4); $available[] = $i; } @@ -329,12 +329,12 @@ class OC_L10N{ return $available; } - public static function languageExists($app, $lang){ - if ($lang == 'en'){//english is always available + public static function languageExists($app, $lang) { + if ($lang == 'en') {//english is always available return true; } $dir = self::findI18nDir($app); - if(is_dir($dir)){ + if(is_dir($dir)) { return file_exists($dir.'/'.$lang.'.php'); } return false; diff --git a/lib/l10n/string.php b/lib/l10n/string.php index 4769790a16d..8eef10071e6 100644 --- a/lib/l10n/string.php +++ b/lib/l10n/string.php @@ -8,16 +8,16 @@ class OC_L10N_String{ protected $l10n; - public function __construct($l10n, $text, $parameters){ + public function __construct($l10n, $text, $parameters) { $this->l10n = $l10n; $this->text = $text; $this->parameters = $parameters; } - public function __toString(){ + public function __toString() { $translations = $this->l10n->getTranslations(); - if(array_key_exists($this->text, $translations)){ + if(array_key_exists($this->text, $translations)) { return vsprintf($translations[$this->text], $this->parameters); } return vsprintf($this->text, $this->parameters); diff --git a/lib/log/owncloud.php b/lib/log/owncloud.php index 9eb21832c55..d4644163ad5 100644 --- a/lib/log/owncloud.php +++ b/lib/log/owncloud.php @@ -45,7 +45,7 @@ class OC_Log_Owncloud { */ public static function write($app, $message, $level) { $minLevel=min(OC_Config::getValue( "loglevel", OC_Log::WARN ),OC_Log::ERROR); - if($level>=$minLevel){ + if($level>=$minLevel) { $entry=array('app'=>$app, 'message'=>$message, 'level'=>$level,'time'=>time()); $fh=fopen(self::$logFile, 'a'); fwrite($fh, json_encode($entry)."\n"); @@ -59,7 +59,7 @@ class OC_Log_Owncloud { * @param int offset * @return array */ - public static function getEntries($limit=50, $offset=0){ + public static function getEntries($limit=50, $offset=0) { self::init(); $minLevel=OC_Config::getValue( "loglevel", OC_Log::WARN ); $entries = array(); diff --git a/lib/mail.php b/lib/mail.php index 15e91158e1c..8d30fff9f28 100644 --- a/lib/mail.php +++ b/lib/mail.php @@ -39,9 +39,9 @@ class OC_Mail { $mailo = new PHPMailer(true); if($SMTPMODE=='sendmail') { $mailo->IsSendmail(); - }elseif($SMTPMODE=='smtp'){ + }elseif($SMTPMODE=='smtp') { $mailo->IsSMTP(); - }elseif($SMTPMODE=='qmail'){ + }elseif($SMTPMODE=='qmail') { $mailo->IsQmail(); }else{ $mailo->IsMail(); diff --git a/lib/migrate.php b/lib/migrate.php index b3ef00cbf6d..823b3574f16 100644 --- a/lib/migrate.php +++ b/lib/migrate.php @@ -52,20 +52,20 @@ class OC_Migrate{ * register a new migration provider * @param OC_Migrate_Provider $provider */ - public static function registerProvider($provider){ + public static function registerProvider($provider) { self::$providers[]=$provider; } /** * @brief finds and loads the providers */ - static private function findProviders(){ + static private function findProviders() { // Find the providers $apps = OC_App::getAllApps(); - foreach($apps as $app){ + foreach($apps as $app) { $path = OC_App::getAppPath($app) . '/appinfo/migrate.php'; - if( file_exists( $path ) ){ + if( file_exists( $path ) ) { include( $path ); } } @@ -78,21 +78,21 @@ class OC_Migrate{ * @param otional $path string path to zip output folder * @return false on error, path to zip on success */ - public static function export( $uid=null, $type='user', $path=null ){ + public static function export( $uid=null, $type='user', $path=null ) { $datadir = OC_Config::getValue( 'datadirectory' ); // Validate export type $types = array( 'user', 'instance', 'system', 'userfiles' ); - if( !in_array( $type, $types ) ){ + if( !in_array( $type, $types ) ) { OC_Log::write( 'migration', 'Invalid export type', OC_Log::ERROR ); return json_encode( array( array( 'success' => false ) ) ); } self::$exporttype = $type; // Userid? - if( self::$exporttype == 'user' ){ + if( self::$exporttype == 'user' ) { // Check user exists - if( !is_null($uid) ){ + if( !is_null($uid) ) { $db = new OC_User_Database; - if( !$db->userExists( $uid ) ){ + if( !$db->userExists( $uid ) ) { OC_Log::write('migration', 'User: '.$uid.' is not in the database and so cannot be exported.', OC_Log::ERROR); return json_encode( array( 'success' => false ) ); } @@ -102,18 +102,18 @@ class OC_Migrate{ } } // Calculate zipname - if( self::$exporttype == 'user' ){ + if( self::$exporttype == 'user' ) { $zipname = 'oc_export_' . self::$uid . '_' . date("y-m-d_H-i-s") . '.zip'; } else { $zipname = 'oc_export_' . self::$exporttype . '_' . date("y-m-d_H-i-s") . '.zip'; } // Calculate path - if( self::$exporttype == 'user' ){ + if( self::$exporttype == 'user' ) { self::$zippath = $datadir . '/' . self::$uid . '/' . $zipname; } else { - if( !is_null( $path ) ){ + if( !is_null( $path ) ) { // Validate custom path - if( !file_exists( $path ) || !is_writeable( $path ) ){ + if( !file_exists( $path ) || !is_writeable( $path ) ) { OC_Log::write( 'migration', 'Path supplied is invalid.', OC_Log::ERROR ); return json_encode( array( 'success' => false ) ); } @@ -124,17 +124,17 @@ class OC_Migrate{ } } // Create the zip object - if( !self::createZip() ){ + if( !self::createZip() ) { return json_encode( array( 'success' => false ) ); } // Do the export self::findProviders(); $exportdata = array(); - switch( self::$exporttype ){ + switch( self::$exporttype ) { case 'user': // Connect to the db self::$dbpath = $datadir . '/' . self::$uid . '/migration.db'; - if( !self::connectDB() ){ + if( !self::connectDB() ) { return json_encode( array( 'success' => false ) ); } self::$content = new OC_Migration_Content( self::$zip, self::$MDB2 ); @@ -158,14 +158,14 @@ class OC_Migrate{ // Add the export to the zip self::$content->addFromString( $dbexport, "dbexport.xml" ); // Add user data - foreach(OC_User::getUsers() as $user){ + foreach(OC_User::getUsers() as $user) { self::$content->addDir(OC_User::getHome($user), true, "/userdata/" ); } break; case 'userfiles': self::$content = new OC_Migration_Content( self::$zip ); // Creates a zip with all of the users files - foreach(OC_User::getUsers() as $user){ + foreach(OC_User::getUsers() as $user) { self::$content->addDir(OC_User::getHome($user), true, "/" ); } break; @@ -178,12 +178,12 @@ class OC_Migrate{ } break; } - if( !$info = self::getExportInfo( $exportdata ) ){ + if( !$info = self::getExportInfo( $exportdata ) ) { return json_encode( array( 'success' => false ) ); } // Add the export info json to the export zip self::$content->addFromString( $info, 'export_info.json' ); - if( !self::$content->finish() ){ + if( !self::$content->finish() ) { return json_encode( array( 'success' => false ) ); } return json_encode( array( 'success' => true, 'data' => self::$zippath ) ); @@ -195,22 +195,22 @@ class OC_Migrate{ * @param optional $type type of import (user or instance) * @param optional $uid userid of new user */ - public static function import( $path, $type='user', $uid=null ){ + public static function import( $path, $type='user', $uid=null ) { $datadir = OC_Config::getValue( 'datadirectory' ); // Extract the zip - if( !$extractpath = self::extractZip( $path ) ){ + if( !$extractpath = self::extractZip( $path ) ) { return json_encode( array( 'success' => false ) ); } // Get export_info.json $scan = scandir( $extractpath ); // Check for export_info.json - if( !in_array( 'export_info.json', $scan ) ){ + if( !in_array( 'export_info.json', $scan ) ) { OC_Log::write( 'migration', 'Invalid import file, export_info.json note found', OC_Log::ERROR ); return json_encode( array( 'success' => false ) ); } $json = json_decode( file_get_contents( $extractpath . 'export_info.json' ) ); - if( $json->exporttype != $type ){ + if( $json->exporttype != $type ) { OC_Log::write( 'migration', 'Invalid import file', OC_Log::ERROR ); return json_encode( array( 'success' => false ) ); } @@ -219,13 +219,13 @@ class OC_Migrate{ $currentuser = OC_User::getUser(); // Have we got a user if type is user - if( self::$exporttype == 'user' ){ + if( self::$exporttype == 'user' ) { self::$uid = !is_null($uid) ? $uid : $currentuser; } // We need to be an admin if we are not importing our own data - if(($type == 'user' && self::$uid != $currentuser) || $type != 'user' ){ - if( !OC_Group::inGroup( OC_User::getUser(), 'admin' )){ + if(($type == 'user' && self::$uid != $currentuser) || $type != 'user' ) { + if( !OC_Group::inGroup( OC_User::getUser(), 'admin' )) { // Naughty. OC_Log::write( 'migration', 'Import not permitted.', OC_Log::ERROR ); return json_encode( array( 'success' => false ) ); @@ -233,23 +233,23 @@ class OC_Migrate{ } // Handle export types - switch( self::$exporttype ){ + switch( self::$exporttype ) { case 'user': // Check user availability - if( !OC_User::userExists( self::$uid ) ){ + if( !OC_User::userExists( self::$uid ) ) { OC_Log::write( 'migration', 'User doesn\'t exist', OC_Log::ERROR ); return json_encode( array( 'success' => false ) ); } // Copy data - if( !self::copy_r( $extractpath . $json->exporteduser, $datadir . '/' . self::$uid ) ){ + if( !self::copy_r( $extractpath . $json->exporteduser, $datadir . '/' . self::$uid ) ) { return json_encode( array( 'success' => false ) ); } // Import user app data - if( !$appsimported = self::importAppData( $extractpath . $json->exporteduser . '/migration.db', $json, self::$uid ) ){ + if( !$appsimported = self::importAppData( $extractpath . $json->exporteduser . '/migration.db', $json, self::$uid ) ) { return json_encode( array( 'success' => false ) ); } // All done! - if( !self::unlink_r( $extractpath ) ){ + if( !self::unlink_r( $extractpath ) ) { OC_Log::write( 'migration', 'Failed to delete the extracted zip', OC_Log::ERROR ); } return json_encode( array( 'success' => true, 'data' => $appsimported ) ); @@ -262,19 +262,19 @@ class OC_Migrate{ // Delete current data folder. OC_Log::write( 'migration', "Deleting current data dir", OC_Log::INFO ); - if( !self::unlink_r( $datadir, false ) ){ + if( !self::unlink_r( $datadir, false ) ) { OC_Log::write( 'migration', 'Failed to delete the current data dir', OC_Log::ERROR ); return json_encode( array( 'success' => false ) ); } // Copy over data - if( !self::copy_r( $extractpath . 'userdata', $datadir ) ){ + if( !self::copy_r( $extractpath . 'userdata', $datadir ) ) { OC_Log::write( 'migration', 'Failed to copy over data directory', OC_Log::ERROR ); return json_encode( array( 'success' => false ) ); } // Import the db - if( !OC_DB::replaceDB( $extractpath . 'dbexport.xml' ) ){ + if( !OC_DB::replaceDB( $extractpath . 'dbexport.xml' ) ) { return json_encode( array( 'success' => false ) ); } // Done @@ -291,15 +291,15 @@ class OC_Migrate{ * $param optional $deleteRootToo bool delete the root directory * @return bool */ - private static function unlink_r( $dir, $deleteRootToo=true ){ - if( !$dh = @opendir( $dir ) ){ + private static function unlink_r( $dir, $deleteRootToo=true ) { + if( !$dh = @opendir( $dir ) ) { return false; } - while (false !== ($obj = readdir($dh))){ + while (false !== ($obj = readdir($dh))) { if($obj == '.' || $obj == '..') { continue; } - if (!@unlink($dir . '/' . $obj)){ + if (!@unlink($dir . '/' . $obj)) { self::unlink_r($dir.'/'.$obj, true); } } @@ -316,16 +316,16 @@ class OC_Migrate{ * @param $dest string path to destination * @return bool */ - private static function copy_r( $path, $dest ){ - if( is_dir($path) ){ + private static function copy_r( $path, $dest ) { + if( is_dir($path) ) { @mkdir( $dest ); $objects = scandir( $path ); - if( sizeof( $objects ) > 0 ){ - foreach( $objects as $file ){ + if( sizeof( $objects ) > 0 ) { + foreach( $objects as $file ) { if( $file == "." || $file == ".." || $file == ".htaccess") continue; // go on - if( is_dir( $path . '/' . $file ) ){ + if( is_dir( $path . '/' . $file ) ) { self::copy_r( $path .'/' . $file, $dest . '/' . $file ); } else { copy( $path . '/' . $file, $dest . '/' . $file ); @@ -334,7 +334,7 @@ class OC_Migrate{ } return true; } - elseif( is_file( $path ) ){ + elseif( is_file( $path ) ) { return copy( $path, $dest ); } else { return false; @@ -346,10 +346,10 @@ class OC_Migrate{ * @param $path string path to the zip * @return string path to extract location (with a trailing slash) or false on failure */ - static private function extractZip( $path ){ + static private function extractZip( $path ) { self::$zip = new ZipArchive; // Validate path - if( !file_exists( $path ) ){ + if( !file_exists( $path ) ) { OC_Log::write( 'migration', 'Zip not found', OC_Log::ERROR ); return false; } @@ -358,7 +358,7 @@ class OC_Migrate{ return false; } $to = get_temp_dir() . '/oc_import_' . self::$exporttype . '_' . date("y-m-d_H-i-s") . '/'; - if( !self::$zip->extractTo( $to ) ){ + if( !self::$zip->extractTo( $to ) ) { return false; } self::$zip->close(); @@ -369,13 +369,13 @@ class OC_Migrate{ * @brief connects to a MDB2 database scheme * @returns bool */ - static private function connectScheme(){ + static private function connectScheme() { // We need a mdb2 database connection self::$MDB2->loadModule( 'Manager' ); self::$MDB2->loadModule( 'Reverse' ); // Connect if this did not happen before - if( !self::$schema ){ + if( !self::$schema ) { require_once 'MDB2/Schema.php'; self::$schema=MDB2_Schema::factory( self::$MDB2 ); } @@ -387,23 +387,23 @@ class OC_Migrate{ * @brief creates a migration.db in the users data dir with their app data in * @return bool whether operation was successfull */ - private static function exportAppData( ){ + private static function exportAppData( ) { $success = true; $return = array(); // Foreach provider - foreach( self::$providers as $provider ){ + foreach( self::$providers as $provider ) { // Check if the app is enabled - if( OC_App::isEnabled( $provider->getID() ) ){ + if( OC_App::isEnabled( $provider->getID() ) ) { $success = true; // Does this app use the database? - if( file_exists( OC_App::getAppPath($provider->getID()).'/appinfo/database.xml' ) ){ + if( file_exists( OC_App::getAppPath($provider->getID()).'/appinfo/database.xml' ) ) { // Create some app tables $tables = self::createAppTables( $provider->getID() ); - if( is_array( $tables ) ){ + if( is_array( $tables ) ) { // Save the table names - foreach($tables as $table){ + foreach($tables as $table) { $return['apps'][$provider->getID()]['tables'][] = $table; } } else { @@ -413,7 +413,7 @@ class OC_Migrate{ } // Run the export function? - if( $success ){ + if( $success ) { // Set the provider properties $provider->setData( self::$uid, self::$content ); $return['apps'][$provider->getID()]['success'] = $provider->export(); @@ -438,7 +438,7 @@ class OC_Migrate{ * @param optional $array array of data to include in the returned json * @return bool */ - static private function getExportInfo( $array=array() ){ + static private function getExportInfo( $array=array() ) { $info = array( 'ocversion' => OC_Util::getVersion(), 'exporttime' => time(), @@ -447,7 +447,7 @@ class OC_Migrate{ 'exporteduser' => self::$uid ); - if( !is_array( $array ) ){ + if( !is_array( $array ) ) { OC_Log::write( 'migration', 'Supplied $array was not an array in getExportInfo()', OC_Log::ERROR ); } // Merge in other data @@ -462,23 +462,23 @@ class OC_Migrate{ * @param $db optional path to migration.db, defaults to user data dir * @return bool whether the operation was successful */ - static private function connectDB( $path=null ){ + static private function connectDB( $path=null ) { // Has the dbpath been set? self::$dbpath = !is_null( $path ) ? $path : self::$dbpath; - if( !self::$dbpath ){ + if( !self::$dbpath ) { OC_Log::write( 'migration', 'connectDB() was called without dbpath being set', OC_Log::ERROR ); return false; } // Already connected - if(!self::$MDB2){ + if(!self::$MDB2) { require_once 'MDB2.php'; $datadir = OC_Config::getValue( "datadirectory", OC::$SERVERROOT."/data" ); // DB type - if( class_exists( 'SQLite3' ) ){ + if( class_exists( 'SQLite3' ) ) { $dbtype = 'sqlite3'; - } else if( is_callable( 'sqlite_open' ) ){ + } else if( is_callable( 'sqlite_open' ) ) { $dbtype = 'sqlite'; } else { OC_Log::write( 'migration', 'SQLite not found', OC_Log::ERROR ); @@ -502,7 +502,7 @@ class OC_Migrate{ // Try to establish connection self::$MDB2 = MDB2::factory( $dsn, $options ); // Die if we could not connect - if( PEAR::isError( self::$MDB2 ) ){ + if( PEAR::isError( self::$MDB2 ) ) { die( self::$MDB2->getMessage() ); OC_Log::write( 'migration', 'Failed to create/connect to migration.db', OC_Log::FATAL ); OC_Log::write( 'migration', self::$MDB2->getUserInfo(), OC_Log::FATAL ); @@ -521,9 +521,9 @@ class OC_Migrate{ * @param $appid string id of the app * @return bool whether the operation was successful */ - static private function createAppTables( $appid ){ + static private function createAppTables( $appid ) { - if( !self::connectScheme() ){ + if( !self::connectScheme() ) { return false; } @@ -538,7 +538,7 @@ class OC_Migrate{ $content = str_replace( '*dbprefix*', '', $content ); $xml = new SimpleXMLElement($content); - foreach($xml->table as $table){ + foreach($xml->table as $table) { $tables[] = (string)$table->name; } @@ -550,7 +550,7 @@ class OC_Migrate{ unlink( $file2 ); // Die in case something went wrong - if( $definition instanceof MDB2_Schema_Error ){ + if( $definition instanceof MDB2_Schema_Error ) { OC_Log::write( 'migration', 'Failed to parse database.xml for: '.$appid, OC_Log::FATAL ); OC_Log::write( 'migration', $definition->getMessage().': '.$definition->getUserInfo(), OC_Log::FATAL ); return false; @@ -561,7 +561,7 @@ class OC_Migrate{ $ret = self::$schema->createDatabase( $definition ); // Die in case something went wrong - if( $ret instanceof MDB2_Error ){ + if( $ret instanceof MDB2_Error ) { OC_Log::write( 'migration', 'Failed to create tables for: '.$appid, OC_Log::FATAL ); OC_Log::write( 'migration', $ret->getMessage().': '.$ret->getUserInfo(), OC_Log::FATAL ); return false; @@ -575,10 +575,10 @@ class OC_Migrate{ * @param $path string path to zip destination * @return bool */ - static private function createZip(){ + static private function createZip() { self::$zip = new ZipArchive; // Check if properties are set - if( !self::$zippath ){ + if( !self::$zippath ) { OC_Log::write('migration', 'createZip() called but $zip and/or $zippath have not been set', OC_Log::ERROR); return false; } @@ -594,11 +594,11 @@ class OC_Migrate{ * @brief returns an array of apps that support migration * @return array */ - static public function getApps(){ + static public function getApps() { $allapps = OC_App::getAllApps(); - foreach($allapps as $app){ + foreach($allapps as $app) { $path = self::getAppPath($app) . '/lib/migrate.php'; - if( file_exists( $path ) ){ + if( file_exists( $path ) ) { $supportsmigration[] = $app; } } @@ -612,11 +612,11 @@ class OC_Migrate{ * @param $uid optional uid to use * @return array of apps with import statuses, or false on failure. */ - public static function importAppData( $db, $info, $uid=null ){ + public static function importAppData( $db, $info, $uid=null ) { // Check if the db exists - if( file_exists( $db ) ){ + if( file_exists( $db ) ) { // Connect to the db - if(!self::connectDB( $db )){ + if(!self::connectDB( $db )) { OC_Log::write('migration','Failed to connect to migration.db',OC_Log::ERROR); return false; } @@ -634,25 +634,25 @@ class OC_Migrate{ 'newuid' => self::$uid ); - foreach( self::$providers as $provider){ + foreach( self::$providers as $provider) { // Is the app in the export? $id = $provider->getID(); - if( isset( $info->apps->$id ) ){ + if( isset( $info->apps->$id ) ) { // Is the app installed - if( !OC_App::isEnabled( $id ) ){ + if( !OC_App::isEnabled( $id ) ) { OC_Log::write( 'migration', 'App: ' . $id . ' is not installed, can\'t import data.', OC_Log::INFO ); $appsstatus[$id] = 'notsupported'; } else { // Did it succeed on export? - if( $info->apps->$id->success ){ + if( $info->apps->$id->success ) { // Give the provider the content object - if( !self::connectDB( $db ) ){ + if( !self::connectDB( $db ) ) { return false; } $content = new OC_Migration_Content( self::$zip, self::$MDB2 ); $provider->setData( self::$uid, $content, $info ); // Then do the import - if( !$appsstatus[$id] = $provider->import( $info->apps->$id, $importinfo ) ){ + if( !$appsstatus[$id] = $provider->import( $info->apps->$id, $importinfo ) ) { // Failed to import app OC_Log::write( 'migration', 'Failed to import app data for user: ' . self::$uid . ' for app: ' . $id, OC_Log::ERROR ); } @@ -674,17 +674,17 @@ class OC_Migrate{ * @param $hash string hash of the user to be created * @return bool result of user creation */ - public static function createUser( $uid, $hash ){ + public static function createUser( $uid, $hash ) { // Check if userid exists - if(OC_User::userExists( $uid )){ + if(OC_User::userExists( $uid )) { return false; } // Create the user $query = OC_DB::prepare( "INSERT INTO `*PREFIX*users` ( `uid`, `password` ) VALUES( ?, ? )" ); $result = $query->execute( array( $uid, $hash)); - if( !$result ){ + if( !$result ) { OC_Log::write('migration', 'Failed to create the new user "'.$uid.""); } return $result ? true : false; diff --git a/lib/migration/content.php b/lib/migration/content.php index e04ac224f79..64b8168cd98 100644 --- a/lib/migration/content.php +++ b/lib/migration/content.php @@ -38,12 +38,12 @@ class OC_Migration_Content{ * @param optional $db a MDB2 database object (required for exporttype user) * @return bool */ - public function __construct( $zip, $db=null ){ + public function __construct( $zip, $db=null ) { $this->zip = $zip; $this->db = $db; - if( !is_null( $db ) ){ + if( !is_null( $db ) ) { // Get db path $db = $this->db->getDatabase(); $this->tmpfiles[] = $db; @@ -53,7 +53,7 @@ class OC_Migration_Content{ // @brief prepares the db // @param $query the sql query to prepare - public function prepare( $query ){ + public function prepare( $query ) { // Optimize the query $query = $this->processQuery( $query ); @@ -78,7 +78,7 @@ class OC_Migration_Content{ * @param $query the query to process * @return string of processed query */ - private function processQuery( $query ){ + private function processQuery( $query ) { $query = str_replace( '`', '\'', $query ); $query = str_replace( 'NOW()', 'datetime(\'now\')', $query ); $query = str_replace( 'now()', 'datetime(\'now\')', $query ); @@ -92,22 +92,22 @@ class OC_Migration_Content{ * @param $options array of options. * @return bool */ - public function copyRows( $options ){ - if( !array_key_exists( 'table', $options ) ){ + public function copyRows( $options ) { + if( !array_key_exists( 'table', $options ) ) { return false; } $return = array(); // Need to include 'where' in the query? - if( array_key_exists( 'matchval', $options ) && array_key_exists( 'matchcol', $options ) ){ + if( array_key_exists( 'matchval', $options ) && array_key_exists( 'matchcol', $options ) ) { // If only one matchval, create an array - if(!is_array($options['matchval'])){ + if(!is_array($options['matchval'])) { $options['matchval'] = array( $options['matchval'] ); } - foreach( $options['matchval'] as $matchval ){ + foreach( $options['matchval'] as $matchval ) { // Run the query for this match value (where x = y value) $sql = 'SELECT * FROM `*PREFIX*' . $options['table'] . '` WHERE `' . $options['matchcol'] . '` LIKE ?'; $query = OC_DB::prepare( $sql ); @@ -135,12 +135,12 @@ class OC_Migration_Content{ * @param $options array of copyRows options * @return void */ - private function insertData( $data, $options ){ + private function insertData( $data, $options ) { $return = array(); // Foreach row of data to insert - while( $row = $data->fetchRow() ){ + while( $row = $data->fetchRow() ) { // Now save all this to the migration.db - foreach($row as $field=>$value){ + foreach($row as $field=>$value) { $fields[] = $field; $values[] = $value; } @@ -153,14 +153,14 @@ class OC_Migration_Content{ $sql .= $valuessql . " )"; // Make the query $query = $this->prepare( $sql ); - if( !$query ){ + if( !$query ) { OC_Log::write( 'migration', 'Invalid sql produced: '.$sql, OC_Log::FATAL ); return false; exit(); } else { $query->execute( $values ); // Do we need to return some values? - if( array_key_exists( 'idcol', $options ) ){ + if( array_key_exists( 'idcol', $options ) ) { // Yes we do $return[] = $row[$options['idcol']]; } else { @@ -185,7 +185,7 @@ class OC_Migration_Content{ $dirname = basename($dir); $this->zip->addEmptyDir($internaldir . $dirname); $internaldir.=$dirname.='/'; - if( !file_exists( $dir ) ){ + if( !file_exists( $dir ) ) { return false; } if ($dirhandle = opendir($dir)) { @@ -214,11 +214,11 @@ class OC_Migration_Content{ * @param $path the relative path inside of the zip to save the file to * @return bool */ - public function addFromString( $data, $path ){ + public function addFromString( $data, $path ) { // Create a temp file $file = tempnam( get_temp_dir(). '/', 'oc_export_tmp_' ); $this->tmpfiles[] = $file; - if( !file_put_contents( $file, $data ) ){ + if( !file_put_contents( $file, $data ) ) { OC_Log::write( 'migation', 'Failed to save data to a temporary file', OC_Log::ERROR ); return false; } @@ -231,8 +231,8 @@ class OC_Migration_Content{ * @brief closes the zip, removes temp files * @return bool */ - public function finish(){ - if( !$this->zip->close() ){ + public function finish() { + if( !$this->zip->close() ) { OC_Log::write( 'migration', 'Failed to write the zip file with error: '.$this->zip->getStatusString(), OC_Log::ERROR ); return false; } @@ -243,9 +243,9 @@ class OC_Migration_Content{ /** * @brief cleans up after the zip */ - private function cleanup(){ + private function cleanup() { // Delete tmp files - foreach($this->tmpfiles as $i){ + foreach($this->tmpfiles as $i) { unlink( $i ); } } diff --git a/lib/migration/provider.php b/lib/migration/provider.php index 259b1fe7ae6..234ab3351f3 100644 --- a/lib/migration/provider.php +++ b/lib/migration/provider.php @@ -10,7 +10,7 @@ abstract class OC_Migration_Provider{ protected $olduid=false; protected $appinfo=false; - public function __construct( $appid ){ + public function __construct( $appid ) { // Set the id $this->id = $appid; OC_Migrate::registerProvider( $this ); @@ -32,11 +32,11 @@ abstract class OC_Migration_Provider{ * @brief sets the OC_Migration_Content object to $this->content * @param $content a OC_Migration_Content object */ - public function setData( $uid, $content, $info=null ){ + public function setData( $uid, $content, $info=null ) { $this->content = $content; $this->uid = $uid; $id = $this->id; - if( !is_null( $info ) ){ + if( !is_null( $info ) ) { $this->olduid = $info->exporteduser; $this->appinfo = $info->apps->$id; } @@ -46,7 +46,7 @@ abstract class OC_Migration_Provider{ * @brief returns the appid of the provider * @return string */ - public function getID(){ + public function getID() { return $this->id; } } diff --git a/lib/minimizer.php b/lib/minimizer.php index ff5f9304d9c..d50ab0d2397 100644 --- a/lib/minimizer.php +++ b/lib/minimizer.php @@ -22,7 +22,7 @@ abstract class OC_Minimizer { $gzout = false; $cache = OC_Cache::getGlobalCache(); - if (!OC_Request::isNoCache() && (!defined('DEBUG') || !DEBUG)){ + if (!OC_Request::isNoCache() && (!defined('DEBUG') || !DEBUG)) { OC_Response::setETagHeader($etag); $gzout = $cache->get($cache_key.'.gz'); } diff --git a/lib/minimizer/css.php b/lib/minimizer/css.php index 41886087199..8d130572e2b 100644 --- a/lib/minimizer/css.php +++ b/lib/minimizer/css.php @@ -30,7 +30,7 @@ class OC_Minimizer_CSS extends OC_Minimizer $remote .= dirname($file_info[2]); $css_out .= CSSMin::remap($css, dirname($file), $remote, true); } - if (!defined('DEBUG') || !DEBUG){ + if (!defined('DEBUG') || !DEBUG) { $css_out = CSSMin::minify($css_out); } return $css_out; diff --git a/lib/minimizer/js.php b/lib/minimizer/js.php index 97d54c8fb97..bd2d836deb0 100644 --- a/lib/minimizer/js.php +++ b/lib/minimizer/js.php @@ -13,7 +13,7 @@ class OC_Minimizer_JS extends OC_Minimizer $js_out .= '/* ' . $file . ' */' . "\n"; $js_out .= file_get_contents($file); } - if (!defined('DEBUG') || !DEBUG){ + if (!defined('DEBUG') || !DEBUG) { $js_out = JavaScriptMinifier::minify($js_out); } return $js_out; diff --git a/lib/ocs.php b/lib/ocs.php index ad01e5c42fa..3a9be4cf09d 100644 --- a/lib/ocs.php +++ b/lib/ocs.php @@ -102,79 +102,79 @@ class OC_OCS { // eventhandler // CONFIG // apiconfig - GET - CONFIG - if(($method=='get') and ($ex[$paracount-3] == 'v1.php') and ($ex[$paracount-2] == 'config')){ + if(($method=='get') and ($ex[$paracount-3] == 'v1.php') and ($ex[$paracount-2] == 'config')) { OC_OCS::apiconfig($format); // PERSON // personcheck - POST - PERSON/CHECK - }elseif(($method=='post') and ($ex[$paracount-4] == 'v1.php') and ($ex[$paracount-3]=='person') and ($ex[$paracount-2] == 'check')){ + }elseif(($method=='post') and ($ex[$paracount-4] == 'v1.php') and ($ex[$paracount-3]=='person') and ($ex[$paracount-2] == 'check')) { $login = self::readData($method, 'login', 'text'); $passwd = self::readData($method, 'password', 'text'); OC_OCS::personcheck($format,$login,$passwd); // ACTIVITY // activityget - GET ACTIVITY page,pagesize als urlparameter - }elseif(($method=='get') and ($ex[$paracount-3] == 'v1.php') and ($ex[$paracount-2] == 'activity')){ + }elseif(($method=='get') and ($ex[$paracount-3] == 'v1.php') and ($ex[$paracount-2] == 'activity')) { $page = self::readData($method, 'page', 'int', 0); $pagesize = self::readData($method, 'pagesize','int', 10); if($pagesize<1 or $pagesize>100) $pagesize=10; OC_OCS::activityget($format,$page,$pagesize); // activityput - POST ACTIVITY - }elseif(($method=='post') and ($ex[$paracount-3] == 'v1.php') and ($ex[$paracount-2] == 'activity')){ + }elseif(($method=='post') and ($ex[$paracount-3] == 'v1.php') and ($ex[$paracount-2] == 'activity')) { $message = self::readData($method, 'message', 'text'); OC_OCS::activityput($format,$message); // PRIVATEDATA // get - GET DATA - }elseif(($method=='get') and ($ex[$paracount-4] == 'v1.php') and ($ex[$paracount-2] == 'getattribute')){ + }elseif(($method=='get') and ($ex[$paracount-4] == 'v1.php') and ($ex[$paracount-2] == 'getattribute')) { OC_OCS::privateDataGet($format); - }elseif(($method=='get') and ($ex[$paracount-5] == 'v1.php') and ($ex[$paracount-3] == 'getattribute')){ + }elseif(($method=='get') and ($ex[$paracount-5] == 'v1.php') and ($ex[$paracount-3] == 'getattribute')) { $app=$ex[$paracount-2]; OC_OCS::privateDataGet($format, $app); - }elseif(($method=='get') and ($ex[$paracount-6] == 'v1.php') and ($ex[$paracount-4] == 'getattribute')){ + }elseif(($method=='get') and ($ex[$paracount-6] == 'v1.php') and ($ex[$paracount-4] == 'getattribute')) { $key=$ex[$paracount-2]; $app=$ex[$paracount-3]; OC_OCS::privateDataGet($format, $app,$key); // set - POST DATA - }elseif(($method=='post') and ($ex[$paracount-6] == 'v1.php') and ($ex[$paracount-4] == 'setattribute')){ + }elseif(($method=='post') and ($ex[$paracount-6] == 'v1.php') and ($ex[$paracount-4] == 'setattribute')) { $key=$ex[$paracount-2]; $app=$ex[$paracount-3]; $value = self::readData($method, 'value', 'text'); OC_OCS::privatedataset($format, $app, $key, $value); // delete - POST DATA - }elseif(($method=='post') and ($ex[$paracount-6] =='v1.php') and ($ex[$paracount-4] == 'deleteattribute')){ + }elseif(($method=='post') and ($ex[$paracount-6] =='v1.php') and ($ex[$paracount-4] == 'deleteattribute')) { $key=$ex[$paracount-2]; $app=$ex[$paracount-3]; OC_OCS::privatedatadelete($format, $app, $key); // CLOUD // systemWebApps - }elseif(($method=='get') and ($ex[$paracount-5] == 'v1.php') and ($ex[$paracount-4]=='cloud') and ($ex[$paracount-3] == 'system') and ($ex[$paracount-2] == 'webapps')){ + }elseif(($method=='get') and ($ex[$paracount-5] == 'v1.php') and ($ex[$paracount-4]=='cloud') and ($ex[$paracount-3] == 'system') and ($ex[$paracount-2] == 'webapps')) { OC_OCS::systemwebapps($format); // quotaget - }elseif(($method=='get') and ($ex[$paracount-6] == 'v1.php') and ($ex[$paracount-5]=='cloud') and ($ex[$paracount-4] == 'user') and ($ex[$paracount-2] == 'quota')){ + }elseif(($method=='get') and ($ex[$paracount-6] == 'v1.php') and ($ex[$paracount-5]=='cloud') and ($ex[$paracount-4] == 'user') and ($ex[$paracount-2] == 'quota')) { $user=$ex[$paracount-3]; OC_OCS::quotaget($format,$user); // quotaset - }elseif(($method=='post') and ($ex[$paracount-6] == 'v1.php') and ($ex[$paracount-5]=='cloud') and ($ex[$paracount-4] == 'user') and ($ex[$paracount-2] == 'quota')){ + }elseif(($method=='post') and ($ex[$paracount-6] == 'v1.php') and ($ex[$paracount-5]=='cloud') and ($ex[$paracount-4] == 'user') and ($ex[$paracount-2] == 'quota')) { $user=$ex[$paracount-3]; $quota = self::readData('post', 'quota', 'int'); OC_OCS::quotaset($format,$user,$quota); // keygetpublic - }elseif(($method=='get') and ($ex[$paracount-6] == 'v1.php') and ($ex[$paracount-5]=='cloud') and ($ex[$paracount-4] == 'user') and ($ex[$paracount-2] == 'publickey')){ + }elseif(($method=='get') and ($ex[$paracount-6] == 'v1.php') and ($ex[$paracount-5]=='cloud') and ($ex[$paracount-4] == 'user') and ($ex[$paracount-2] == 'publickey')) { $user=$ex[$paracount-3]; OC_OCS::publicKeyGet($format,$user); // keygetprivate - }elseif(($method=='get') and ($ex[$paracount-6] == 'v1.php') and ($ex[$paracount-5]=='cloud') and ($ex[$paracount-4] == 'user') and ($ex[$paracount-2] == 'privatekey')){ + }elseif(($method=='get') and ($ex[$paracount-6] == 'v1.php') and ($ex[$paracount-5]=='cloud') and ($ex[$paracount-4] == 'user') and ($ex[$paracount-2] == 'privatekey')) { $user=$ex[$paracount-3]; OC_OCS::privateKeyGet($format,$user); @@ -229,7 +229,7 @@ class OC_OCS { if(isset($_SERVER['PHP_AUTH_PW'])) $authpw=$_SERVER['PHP_AUTH_PW']; else $authpw=''; if(empty($authuser)) { - if($forceuser){ + if($forceuser) { header('WWW-Authenticate: Basic realm="your valid user account or api key"'); header('HTTP/1.0 401 Unauthorized'); exit; @@ -237,8 +237,8 @@ class OC_OCS { $identifieduser=''; } }else{ - if(!OC_User::login($authuser,$authpw)){ - if($forceuser){ + if(!OC_User::login($authuser,$authpw)) { + if($forceuser) { header('WWW-Authenticate: Basic realm="your valid user account or api key"'); header('HTTP/1.0 401 Unauthorized'); exit; @@ -310,7 +310,7 @@ class OC_OCS { xmlwriter_write_attribute($writer,'details',$tagattribute); } foreach($entry as $key=>$value) { - if(is_array($value)){ + if(is_array($value)) { foreach($value as $k=>$v) { xmlwriter_write_element($writer,$k,$v); } @@ -330,7 +330,7 @@ class OC_OCS { xmlwriter_write_attribute($writer,'details',$tagattribute); } foreach($entry as $key=>$value) { - if(is_array($value)){ + if(is_array($value)) { xmlwriter_start_element($writer,$entrykey); foreach($value as $k=>$v) { xmlwriter_write_element($writer,$k,$v); @@ -363,7 +363,7 @@ class OC_OCS { if (is_numeric($key)) { $key = $node; } - if (is_array($value)){ + if (is_array($value)) { xmlwriter_start_element($writer,$key); OC_OCS::toxml($writer,$value,$node); xmlwriter_end_element($writer); @@ -402,8 +402,8 @@ class OC_OCS { * @return string xml/json */ private static function personCheck($format,$login,$passwd) { - if($login<>''){ - if(OC_User::login($login,$passwd)){ + if($login<>'') { + if(OC_User::login($login,$passwd)) { $xml['person']['personid']=$login; echo(OC_OCS::generatexml($format,'ok',100,'',$xml,'person','check',2)); }else{ @@ -480,7 +480,7 @@ class OC_OCS { */ private static function privateDataSet($format, $app, $key, $value) { $user=OC_OCS::checkpassword(); - if(OC_OCS::setData($user,$app,$key,$value)){ + if(OC_OCS::setData($user,$app,$key,$value)) { echo(OC_OCS::generatexml($format,'ok',100,'')); } } @@ -493,11 +493,11 @@ class OC_OCS { * @return string xml/json */ private static function privateDataDelete($format, $app, $key) { - if($key=="" or $app==""){ + if($key=="" or $app=="") { return; //key and app are NOT optional here } $user=OC_OCS::checkpassword(); - if(OC_OCS::deleteData($user,$app,$key)){ + if(OC_OCS::deleteData($user,$app,$key)) { echo(OC_OCS::generatexml($format,'ok',100,'')); } } @@ -511,21 +511,21 @@ class OC_OCS { * @return array */ public static function getData($user,$app="",$key="") { - if($app){ + if($app) { $apps=array($app); }else{ $apps=OC_Preferences::getApps($user); } - if($key){ + if($key) { $keys=array($key); }else{ - foreach($apps as $app){ + foreach($apps as $app) { $keys=OC_Preferences::getKeys($user,$app); } } $result=array(); - foreach($apps as $app){ - foreach($keys as $key){ + foreach($apps as $app) { + foreach($keys as $key) { $value=OC_Preferences::getValue($user,$app,$key); $result[]=array('app'=>$app,'key'=>$key,'value'=>$value); } @@ -592,7 +592,7 @@ class OC_OCS { $login=OC_OCS::checkpassword(); if(OC_Group::inGroup($login, 'admin') or ($login==$user)) { - if(OC_User::userExists($user)){ + if(OC_User::userExists($user)) { // calculate the disc space $user_dir = '/'.$user.'/files'; OC_Filesystem::init($user_dir); @@ -653,7 +653,7 @@ class OC_OCS { private static function publicKeyGet($format,$user) { $login=OC_OCS::checkpassword(); - if(OC_User::userExists($user)){ + if(OC_User::userExists($user)) { // calculate the disc space $txt='this is the public key of '.$user; echo($txt); @@ -672,7 +672,7 @@ class OC_OCS { $login=OC_OCS::checkpassword(); if(OC_Group::inGroup($login, 'admin') or ($login==$user)) { - if(OC_User::userExists($user)){ + if(OC_User::userExists($user)) { // calculate the disc space $txt='this is the private key of '.$user; echo($txt); diff --git a/lib/ocsclient.php b/lib/ocsclient.php index dde2545858d..8596ea0b3c7 100644 --- a/lib/ocsclient.php +++ b/lib/ocsclient.php @@ -34,7 +34,7 @@ class OC_OCSClient{ * * This function returns the url of the OCS AppStore server. It´s possible to set it in the config file or it will fallback to the default */ - private static function getAppStoreURL(){ + private static function getAppStoreURL() { $url = OC_Config::getValue('appstoreurl', 'http://api.apps.owncloud.com/v1'); return($url); } @@ -44,7 +44,7 @@ class OC_OCSClient{ * @returns string of the KB server * This function returns the url of the OCS knowledge base server. It´s possible to set it in the config file or it will fallback to the default */ - private static function getKBURL(){ + private static function getKBURL() { $url = OC_Config::getValue('knowledgebaseurl', 'http://api.apps.owncloud.com/v1'); return($url); } @@ -56,14 +56,14 @@ class OC_OCSClient{ * * This function returns a list of all the application categories on the OCS server */ - public static function getCategories(){ - if(OC_Config::getValue('appstoreenabled', true)==false){ + public static function getCategories() { + if(OC_Config::getValue('appstoreenabled', true)==false) { return NULL; } $url=OC_OCSClient::getAppStoreURL().'/content/categories'; $xml=@file_get_contents($url); - if($xml==FALSE){ + if($xml==FALSE) { return NULL; } $data=simplexml_load_string($xml); @@ -88,8 +88,8 @@ class OC_OCSClient{ * * This function returns a list of all the applications on the OCS server */ - public static function getApplications($categories,$page,$filter){ - if(OC_Config::getValue('appstoreenabled', true)==false){ + public static function getApplications($categories,$page,$filter) { + if(OC_Config::getValue('appstoreenabled', true)==false) { return(array()); } @@ -104,7 +104,7 @@ class OC_OCSClient{ $url=OC_OCSClient::getAppStoreURL().'/content/data?categories='.urlencode($categoriesstring).'&sortmode=new&page='.urlencode($page).'&pagesize=100'.$filterurl.$version; $apps=array(); $xml=@file_get_contents($url); - if($xml==FALSE){ + if($xml==FALSE) { return NULL; } $data=simplexml_load_string($xml); @@ -135,14 +135,14 @@ class OC_OCSClient{ * * This function returns an applications from the OCS server */ - public static function getApplication($id){ - if(OC_Config::getValue('appstoreenabled', true)==false){ + public static function getApplication($id) { + if(OC_Config::getValue('appstoreenabled', true)==false) { return NULL; } $url=OC_OCSClient::getAppStoreURL().'/content/data/'.urlencode($id); $xml=@file_get_contents($url); - if($xml==FALSE){ + if($xml==FALSE) { OC_Log::write('core','Unable to parse OCS content',OC_Log::FATAL); return NULL; } @@ -172,14 +172,14 @@ class OC_OCSClient{ * * This function returns an download url for an applications from the OCS server */ - public static function getApplicationDownload($id,$item){ - if(OC_Config::getValue('appstoreenabled', true)==false){ + public static function getApplicationDownload($id,$item) { + if(OC_Config::getValue('appstoreenabled', true)==false) { return NULL; } $url=OC_OCSClient::getAppStoreURL().'/content/download/'.urlencode($id).'/'.urlencode($item); $xml=@file_get_contents($url); - if($xml==FALSE){ + if($xml==FALSE) { OC_Log::write('core','Unable to parse OCS content',OC_Log::FATAL); return NULL; } @@ -202,8 +202,8 @@ class OC_OCSClient{ * * This function returns a list of all the knowledgebase entries from the OCS server */ - public static function getKnownledgebaseEntries($page,$pagesize,$search=''){ - if(OC_Config::getValue('knowledgebaseenabled', true)==false){ + public static function getKnownledgebaseEntries($page,$pagesize,$search='') { + if(OC_Config::getValue('knowledgebaseenabled', true)==false) { $kbe=array(); $kbe['totalitems']=0; return $kbe; @@ -216,7 +216,7 @@ class OC_OCSClient{ $kbe=array(); $xml=@file_get_contents($url); - if($xml==FALSE){ + if($xml==FALSE) { OC_Log::write('core','Unable to parse knowledgebase content',OC_Log::FATAL); return NULL; } diff --git a/lib/preferences.php b/lib/preferences.php index de5747fcccc..3d61887785c 100644 --- a/lib/preferences.php +++ b/lib/preferences.php @@ -45,13 +45,13 @@ class OC_Preferences{ * This function returns a list of all users that have at least one entry * in the preferences table. */ - public static function getUsers(){ + public static function getUsers() { // No need for more comments $query = OC_DB::prepare( 'SELECT DISTINCT( `userid` ) FROM `*PREFIX*preferences`' ); $result = $query->execute(); $users = array(); - while( $row = $result->fetchRow()){ + while( $row = $result->fetchRow()) { $users[] = $row["userid"]; } @@ -66,13 +66,13 @@ class OC_Preferences{ * This function returns a list of all apps of the user that have at least * one entry in the preferences table. */ - public static function getApps( $user ){ + public static function getApps( $user ) { // No need for more comments $query = OC_DB::prepare( 'SELECT DISTINCT( `appid` ) FROM `*PREFIX*preferences` WHERE `userid` = ?' ); $result = $query->execute( array( $user )); $apps = array(); - while( $row = $result->fetchRow()){ + while( $row = $result->fetchRow()) { $apps[] = $row["appid"]; } @@ -88,13 +88,13 @@ class OC_Preferences{ * This function gets all keys of an app of an user. Please note that the * values are not returned. */ - public static function getKeys( $user, $app ){ + public static function getKeys( $user, $app ) { // No need for more comments $query = OC_DB::prepare( 'SELECT `configkey` FROM `*PREFIX*preferences` WHERE `userid` = ? AND `appid` = ?' ); $result = $query->execute( array( $user, $app )); $keys = array(); - while( $row = $result->fetchRow()){ + while( $row = $result->fetchRow()) { $keys[] = $row["configkey"]; } @@ -112,13 +112,13 @@ class OC_Preferences{ * This function gets a value from the prefernces table. If the key does * not exist the default value will be returnes */ - public static function getValue( $user, $app, $key, $default = null ){ + public static function getValue( $user, $app, $key, $default = null ) { // Try to fetch the value, return default if not exists. $query = OC_DB::prepare( 'SELECT `configvalue` FROM `*PREFIX*preferences` WHERE `userid` = ? AND `appid` = ? AND `configkey` = ?' ); $result = $query->execute( array( $user, $app, $key )); $row = $result->fetchRow(); - if($row){ + if($row) { return $row["configvalue"]; }else{ return $default; @@ -136,13 +136,13 @@ class OC_Preferences{ * Adds a value to the preferences. If the key did not exist before, it * will be added automagically. */ - public static function setValue( $user, $app, $key, $value ){ + public static function setValue( $user, $app, $key, $value ) { // Check if the key does exist $query = OC_DB::prepare( 'SELECT `configvalue` FROM `*PREFIX*preferences` WHERE `userid` = ? AND `appid` = ? AND `configkey` = ?' ); $values=$query->execute(array($user,$app,$key))->fetchAll(); $exists=(count($values)>0); - if( !$exists ){ + if( !$exists ) { $query = OC_DB::prepare( 'INSERT INTO `*PREFIX*preferences` ( `userid`, `appid`, `configkey`, `configvalue` ) VALUES( ?, ?, ?, ? )' ); $query->execute( array( $user, $app, $key, $value )); } @@ -162,7 +162,7 @@ class OC_Preferences{ * * Deletes a key. */ - public static function deleteKey( $user, $app, $key ){ + public static function deleteKey( $user, $app, $key ) { // No need for more comments $query = OC_DB::prepare( 'DELETE FROM `*PREFIX*preferences` WHERE `userid` = ? AND `appid` = ? AND `configkey` = ?' ); $result = $query->execute( array( $user, $app, $key )); @@ -178,7 +178,7 @@ class OC_Preferences{ * * Removes all keys in appconfig belonging to the app and the user. */ - public static function deleteApp( $user, $app ){ + public static function deleteApp( $user, $app ) { // No need for more comments $query = OC_DB::prepare( 'DELETE FROM `*PREFIX*preferences` WHERE `userid` = ? AND `appid` = ?' ); $result = $query->execute( array( $user, $app )); @@ -193,7 +193,7 @@ class OC_Preferences{ * * Removes all keys in appconfig belonging to the user. */ - public static function deleteUser( $user ){ + public static function deleteUser( $user ) { // No need for more comments $query = OC_DB::prepare( 'DELETE FROM `*PREFIX*preferences` WHERE `userid` = ?' ); $result = $query->execute( array( $user )); @@ -208,7 +208,7 @@ class OC_Preferences{ * * Removes all keys in preferences belonging to the app. */ - public static function deleteAppFromAllUsers( $app ){ + public static function deleteAppFromAllUsers( $app ) { // No need for more comments $query = OC_DB::prepare( 'DELETE FROM `*PREFIX*preferences` WHERE `appid` = ?' ); $result = $query->execute( array( $app )); diff --git a/lib/public/app.php b/lib/public/app.php index be38bbff98a..eb824f043e9 100644 --- a/lib/public/app.php +++ b/lib/public/app.php @@ -45,7 +45,7 @@ class App { * It'll remain in our public API for compatibility reasons * */ - public static function register( $data ){ + public static function register( $data ) { return true; // don't do anything } @@ -66,7 +66,7 @@ class App { * - order: integer, that influences the position of your application in * the navigation. Lower values come first. */ - public static function addNavigationEntry( $data ){ + public static function addNavigationEntry( $data ) { return \OC_App::addNavigationEntry( $data ); } @@ -80,7 +80,7 @@ class App { * property from all other entries. The templates can use this for * highlighting the current position of the user. */ - public static function setActiveNavigationEntry( $id ){ + public static function setActiveNavigationEntry( $id ) { return \OC_App::setActiveNavigationEntry( $id ); } @@ -90,7 +90,7 @@ class App { * @param $app string appid * @param $page string page to be included */ - public static function registerPersonal( $app, $page ){ + public static function registerPersonal( $app, $page ) { return \OC_App::registerPersonal( $app, $page ); } @@ -100,7 +100,7 @@ class App { * @param $app string appid * @param $page string page to be included */ - public static function registerAdmin( $app, $page ){ + public static function registerAdmin( $app, $page ) { return \OC_App::registerAdmin( $app, $page ); } @@ -111,7 +111,7 @@ class App { * @param boolean path (optional) * @returns array */ - public static function getAppInfo( $app, $path=false ){ + public static function getAppInfo( $app, $path=false ) { return \OC_App::getAppInfo( $app, $path); } @@ -124,7 +124,7 @@ class App { * * This function checks whether or not an app is enabled. */ - public static function isEnabled( $app ){ + public static function isEnabled( $app ) { return \OC_App::isEnabled( $app ); } @@ -134,7 +134,7 @@ class App { * @param $app app * @returns true/false */ - public static function checkAppEnabled( $app ){ + public static function checkAppEnabled( $app ) { return \OC_Util::checkAppEnabled( $app ); } @@ -144,7 +144,7 @@ class App { * @param $app app * @returns true/false */ - public static function getAppVersion( $app ){ + public static function getAppVersion( $app ) { return \OC_App::getAppVersion( $app ); } diff --git a/lib/public/backgroundjob.php b/lib/public/backgroundjob.php index 2962346dbc9..aba7d2b7620 100644 --- a/lib/public/backgroundjob.php +++ b/lib/public/backgroundjob.php @@ -52,7 +52,7 @@ class BackgroundJob { * @param $method method name * @return true */ - public static function addRegularTask( $klass, $method ){ + public static function addRegularTask( $klass, $method ) { return \OC_BackgroundJob_RegularTask::register( $klass, $method ); } @@ -62,7 +62,7 @@ class BackgroundJob { * * key is string "$klass-$method", value is array( $klass, $method ) */ - static public function allRegularTasks(){ + static public function allRegularTasks() { return \OC_BackgroundJob_RegularTask::all(); } @@ -71,7 +71,7 @@ class BackgroundJob { * @param $id ID of the task * @return associative array */ - public static function findQueuedTask( $id ){ + public static function findQueuedTask( $id ) { return \OC_BackgroundJob_QueuedTask::find( $id ); } @@ -79,7 +79,7 @@ class BackgroundJob { * @brief Gets all queued tasks * @return array with associative arrays */ - public static function allQueuedTasks(){ + public static function allQueuedTasks() { return \OC_BackgroundJob_QueuedTask::all(); } @@ -88,7 +88,7 @@ class BackgroundJob { * @param $app app name * @return array with associative arrays */ - public static function queuedTaskWhereAppIs( $app ){ + public static function queuedTaskWhereAppIs( $app ) { return \OC_BackgroundJob_QueuedTask::whereAppIs( $app ); } @@ -100,7 +100,7 @@ class BackgroundJob { * @param $parameters all useful data as text * @return id of task */ - public static function addQueuedTask( $app, $klass, $method, $parameters ){ + public static function addQueuedTask( $app, $klass, $method, $parameters ) { return \OC_BackgroundJob_QueuedTask::add( $app, $klass, $method, $parameters ); } @@ -111,7 +111,7 @@ class BackgroundJob { * * Deletes a report */ - public static function deleteQueuedTask( $id ){ + public static function deleteQueuedTask( $id ) { return \OC_BackgroundJob_QueuedTask::delete( $id ); } } diff --git a/lib/public/config.php b/lib/public/config.php index f3120b9aaa2..fa9658e7288 100644 --- a/lib/public/config.php +++ b/lib/public/config.php @@ -49,7 +49,7 @@ class Config { * This function gets the value from config.php. If it does not exist, * $default will be returned. */ - public static function getSystemValue( $key, $default = null ){ + public static function getSystemValue( $key, $default = null ) { return(\OC_Config::getValue( $key, $default )); } @@ -63,7 +63,7 @@ class Config { * This function sets the value and writes the config.php. If the file can * not be written, false will be returned. */ - public static function setSystemValue( $key, $value ){ + public static function setSystemValue( $key, $value ) { return(\OC_Config::setValue( $key, $value )); } @@ -78,7 +78,7 @@ class Config { * This function gets a value from the appconfig table. If the key does * not exist the default value will be returnes */ - public static function getAppValue( $app, $key, $default = null ){ + public static function getAppValue( $app, $key, $default = null ) { return(\OC_Appconfig::getValue( $app, $key, $default )); } @@ -92,7 +92,7 @@ class Config { * * Sets a value. If the key did not exist before it will be created. */ - public static function setAppValue( $app, $key, $value ){ + public static function setAppValue( $app, $key, $value ) { return(\OC_Appconfig::setValue( $app, $key, $value )); } @@ -108,7 +108,7 @@ class Config { * This function gets a value from the prefernces table. If the key does * not exist the default value will be returnes */ - public static function getUserValue( $user, $app, $key, $default = null ){ + public static function getUserValue( $user, $app, $key, $default = null ) { return(\OC_Preferences::getValue( $user, $app, $key, $default )); } @@ -124,7 +124,7 @@ class Config { * Adds a value to the preferences. If the key did not exist before, it * will be added automagically. */ - public static function setUserValue( $user, $app, $key, $value ){ + public static function setUserValue( $user, $app, $key, $value ) { return(\OC_Preferences::setValue( $user, $app, $key, $value )); } diff --git a/lib/public/db.php b/lib/public/db.php index e1da62e2d27..5ac356bb475 100644 --- a/lib/public/db.php +++ b/lib/public/db.php @@ -43,7 +43,7 @@ class DB { * * 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 ) { return(\OC_DB::prepare($query,$limit,$offset)); } @@ -58,7 +58,7 @@ class DB { * Call this method right after the insert command or other functions may * cause trouble! */ - public static function insertid($table=null){ + public static function insertid($table=null) { return(\OC_DB::insertid($table)); } @@ -66,7 +66,7 @@ class DB { /** * @brief Start a transaction */ - public static function beginTransaction(){ + public static function beginTransaction() { return(\OC_DB::beginTransaction()); } @@ -74,7 +74,7 @@ class DB { /** * @brief Commit the database changes done during a transaction that is in progress */ - public static function commit(){ + public static function commit() { return(\OC_DB::commit()); } @@ -84,7 +84,7 @@ class DB { * @param mixed $result * @return bool */ - public static function isError($result){ + public static function isError($result) { return(\OC_DB::isError($result)); } diff --git a/lib/public/files.php b/lib/public/files.php index be5952d362a..2f4f459bd91 100644 --- a/lib/public/files.php +++ b/lib/public/files.php @@ -52,7 +52,7 @@ class Files { * @return string * does NOT work for ownClouds filesystem, use OC_FileSystem::getMimeType instead */ - static function getMimeType( $path ){ + static function getMimeType( $path ) { return(\OC_Helper::getMimeType( $path )); } @@ -63,7 +63,7 @@ class Files { * @param resource target * @return int the number of bytes copied */ - public static function streamCopy( $source, $target ){ + public static function streamCopy( $source, $target ) { return(\OC_Helper::streamCopy( $source, $target )); } @@ -75,7 +75,7 @@ class Files { * * temporary files are automatically cleaned up after the script is finished */ - public static function tmpFile( $postfix='' ){ + public static function tmpFile( $postfix='' ) { return(\OC_Helper::tmpFile( $postfix )); } @@ -86,7 +86,7 @@ class Files { * * temporary files are automatically cleaned up after the script is finished */ - public static function tmpFolder(){ + public static function tmpFolder() { return(\OC_Helper::tmpFolder()); } @@ -98,7 +98,7 @@ class Files { * @param $filename * @return string */ - public static function buildNotExistingFileName( $path, $filename ){ + public static function buildNotExistingFileName( $path, $filename ) { return(\OC_Helper::buildNotExistingFileName( $path, $filename )); } @@ -107,7 +107,7 @@ class Files { * @param $app app * @return OC_FilesystemView */ - public static function getStorage( $app ){ + public static function getStorage( $app ) { return \OC_App::getStorage( $app ); } diff --git a/lib/public/json.php b/lib/public/json.php index c37b42c3f74..93be920c6d7 100644 --- a/lib/public/json.php +++ b/lib/public/json.php @@ -41,7 +41,7 @@ class JSON { * @param string $setContentType the optional content type * @return string json formatted string. */ - public static function encodedPrint( $data, $setContentType=true ){ + public static function encodedPrint( $data, $setContentType=true ) { return(\OC_JSON::encodedPrint( $data, $setContentType )); } @@ -60,7 +60,7 @@ class JSON { * * @return string json formatted error string if not authenticated. */ - public static function checkLoggedIn(){ + public static function checkLoggedIn() { return(\OC_JSON::checkLoggedIn()); } @@ -84,7 +84,7 @@ class JSON { * * @return string json formatted error string if not valid. */ - public static function callCheck(){ + public static function callCheck() { return(\OC_JSON::callCheck()); } @@ -97,7 +97,7 @@ class JSON { * @param array $data The data to use * @return string json formatted string. */ - public static function success( $data = array() ){ + public static function success( $data = array() ) { return(\OC_JSON::success( $data )); } @@ -119,7 +119,7 @@ class JSON { * @param array $data The data to use * @return string json formatted error string. */ - public static function error( $data = array() ){ + public static function error( $data = array() ) { return(\OC_JSON::error( $data )); } @@ -128,7 +128,7 @@ class JSON { * @param array $type The contwnt type header * @return string json formatted string. */ - public static function setContentTypeHeader( $type='application/json' ){ + public static function setContentTypeHeader( $type='application/json' ) { return(\OC_JSON::setContentTypeHeader( $type )); } @@ -148,7 +148,7 @@ class JSON { * @param string $app The app to check * @return string json formatted string if not enabled. */ - public static function checkAppEnabled( $app ){ + public static function checkAppEnabled( $app ) { return(\OC_JSON::checkAppEnabled( $app )); } @@ -167,7 +167,7 @@ class JSON { * * @return string json formatted string if not admin user. */ - public static function checkAdminUser(){ + public static function checkAdminUser() { return(\OC_JSON::checkAdminUser()); } diff --git a/lib/public/template.php b/lib/public/template.php index 11c740d13ac..4cda3650866 100644 --- a/lib/public/template.php +++ b/lib/public/template.php @@ -39,7 +39,7 @@ namespace OCP; * * For further information have a look at OC_Helper::imagePath */ -function image_path( $app, $image ){ +function image_path( $app, $image ) { return(\image_path( $app, $image )); } @@ -50,7 +50,7 @@ function image_path( $app, $image ){ * @param $mimetype mimetype * @returns link to the image */ -function mimetype_icon( $mimetype ){ +function mimetype_icon( $mimetype ) { return(\mimetype_icon( $mimetype )); } @@ -61,7 +61,7 @@ function mimetype_icon( $mimetype ){ * @param $bytes size in bytes * @returns size as string */ -function human_file_size( $bytes ){ +function human_file_size( $bytes ) { return(\human_file_size( $bytes )); } diff --git a/lib/public/user.php b/lib/public/user.php index 327e2a77355..b530321f21d 100644 --- a/lib/public/user.php +++ b/lib/public/user.php @@ -40,7 +40,7 @@ class User { * @brief get the user id of the user currently logged in. * @return string uid or false */ - public static function getUser(){ + public static function getUser() { return \OC_USER::getUser(); } @@ -62,7 +62,7 @@ class User { * * Checks if the user is logged in */ - public static function isLoggedIn(){ + public static function isLoggedIn() { return \OC_USER::isLoggedIn(); } @@ -72,7 +72,7 @@ class User { * @param string $uid the username * @return boolean */ - public static function userExists( $uid ){ + public static function userExists( $uid ) { return \OC_USER::userExists( $uid ); } @@ -83,7 +83,7 @@ class User { * * Logout, destroys session */ - public static function logout(){ + public static function logout() { return \OC_USER::logout(); } @@ -96,7 +96,7 @@ class User { * * Check if the password is correct without logging in the user */ - public static function checkPassword( $uid, $password ){ + public static function checkPassword( $uid, $password ) { return \OC_USER::checkPassword( $uid, $password ); } @@ -104,7 +104,7 @@ class User { /** * Check if the user is a admin, redirects to home if not */ - public static function checkAdminUser(){ + public static function checkAdminUser() { \OC_Util::checkAdminUser(); } @@ -113,7 +113,7 @@ class User { * Check if the user is logged in, redirects to home if not. With * redirect URL parameter to the request URI. */ - public static function checkLoggedIn(){ + public static function checkLoggedIn() { \OC_Util::checkLoggedIn(); } diff --git a/lib/public/util.php b/lib/public/util.php index cc05e6d535f..ed23521b040 100644 --- a/lib/public/util.php +++ b/lib/public/util.php @@ -48,7 +48,7 @@ class Util { * @brief get the current installed version of ownCloud * @return array */ - public static function getVersion(){ + public static function getVersion() { return(\OC_Util::getVersion()); } @@ -85,7 +85,7 @@ class Util { * @brief add a css file * @param url $url */ - public static function addStyle( $application, $file = null ){ + public static function addStyle( $application, $file = null ) { \OC_Util::addStyle( $application, $file ); } @@ -95,7 +95,7 @@ class Util { * @param appid $application * @param filename $file */ - public static function addScript( $application, $file = null ){ + public static function addScript( $application, $file = null ) { \OC_Util::addScript( $application, $file ); } @@ -105,7 +105,7 @@ class Util { * @param array $attributes array of attributes for the element * @param string $text the text content for the element */ - public static function addHeader( $tag, $attributes, $text=''){ + public static function addHeader( $tag, $attributes, $text='') { \OC_Util::addHeader( $tag, $attributes, $text ); } @@ -114,7 +114,7 @@ class Util { * @param int timestamp $timestamp * @param bool dateOnly option to ommit time from the result */ - public static function formatDate( $timestamp,$dateOnly=false){ + public static function formatDate( $timestamp,$dateOnly=false) { return(\OC_Util::formatDate( $timestamp,$dateOnly )); } @@ -166,7 +166,7 @@ class Util { * * Returns a url to the given app and file. */ - public static function linkTo( $app, $file, $args = array() ){ + public static function linkTo( $app, $file, $args = array() ) { return(\OC_Helper::linkTo( $app, $file, $args )); } @@ -199,7 +199,7 @@ class Util { * * Returns the path to the image. */ - public static function imagePath( $app, $image ){ + public static function imagePath( $app, $image ) { return(\OC_Helper::imagePath( $app, $image )); } @@ -211,7 +211,7 @@ class Util { * * Makes 2048 to 2 kB. */ - public static function humanFileSize( $bytes ){ + public static function humanFileSize( $bytes ) { return(\OC_Helper::humanFileSize( $bytes )); } @@ -224,7 +224,7 @@ class Util { * * Inspired by: http://www.php.net/manual/en/function.filesize.php#92418 */ - public static function computerFileSize( $str ){ + public static function computerFileSize( $str ) { return(\OC_Helper::computerFileSize( $str )); } @@ -240,7 +240,7 @@ class Util { * * TODO: write example */ - static public function connectHook( $signalclass, $signalname, $slotclass, $slotname ){ + static public function connectHook( $signalclass, $signalname, $slotclass, $slotname ) { return(\OC_Hook::connect( $signalclass, $signalname, $slotclass, $slotname )); } @@ -256,7 +256,7 @@ class Util { * * TODO: write example */ - static public function emitHook( $signalclass, $signalname, $params = array()){ + static public function emitHook( $signalclass, $signalname, $params = array()) { return(\OC_Hook::emit( $signalclass, $signalname, $params )); } @@ -265,7 +265,7 @@ class Util { * Register an get/post call. This is important to prevent CSRF attacks * TODO: write example */ - public static function callRegister(){ + public static function callRegister() { return(\OC_Util::callRegister()); } @@ -274,7 +274,7 @@ class Util { * Check an ajax get/post call if the request token is valid. exit if not. * Todo: Write howto */ - public static function callCheck(){ + public static function callCheck() { return(\OC_Util::callCheck()); } @@ -286,7 +286,7 @@ class Util { * @param string or array of strings * @return array with sanitized strings or a single sinitized string, depends on the input parameter. */ - public static function sanitizeHTML( $value ){ + public static function sanitizeHTML( $value ) { return(\OC_Util::sanitizeHTML($value)); } @@ -300,7 +300,7 @@ class Util { * * */ - public static function mb_array_change_key_case($input, $case = MB_CASE_LOWER, $encoding = 'UTF-8'){ + public static function mb_array_change_key_case($input, $case = MB_CASE_LOWER, $encoding = 'UTF-8') { return(\OC_Helper::mb_array_change_key_case($input, $case, $encoding)); } diff --git a/lib/request.php b/lib/request.php index 10f6e91bac8..87262d98625 100644 --- a/lib/request.php +++ b/lib/request.php @@ -15,7 +15,7 @@ class OC_Request { * reverse proxies */ public static function serverHost() { - if(OC::$CLI){ + if(OC::$CLI) { return 'localhost'; } if (isset($_SERVER['HTTP_X_FORWARDED_HOST'])) { @@ -57,7 +57,7 @@ class OC_Request { * @returns string Path info or false when not found */ public static function getPathInfo() { - if (array_key_exists('PATH_INFO', $_SERVER)){ + if (array_key_exists('PATH_INFO', $_SERVER)) { $path_info = $_SERVER['PATH_INFO']; }else{ $path_info = substr($_SERVER['REQUEST_URI'], strlen($_SERVER['SCRIPT_NAME'])); diff --git a/lib/search.php b/lib/search.php index 9dfd0cf69ef..0b6ad050024 100644 --- a/lib/search.php +++ b/lib/search.php @@ -31,7 +31,7 @@ class OC_Search{ /** * remove all registered search providers */ - public static function clearProviders(){ + public static function clearProviders() { self::$providers=array(); self::$registeredProviders=array(); } @@ -40,7 +40,7 @@ class OC_Search{ * register a new search provider to be used * @param string $provider class name of a OC_Search_Provider */ - public static function registerProvider($class,$options=array()){ + public static function registerProvider($class,$options=array()) { self::$registeredProviders[]=array('class'=>$class,'options'=>$options); } @@ -49,10 +49,10 @@ class OC_Search{ * @param string query * @return array An array of OC_Search_Result's */ - public static function search($query){ + public static function search($query) { self::initProviders(); $results=array(); - foreach(self::$providers as $provider){ + foreach(self::$providers as $provider) { $results=array_merge($results, $provider->search($query)); } return $results; @@ -61,11 +61,11 @@ class OC_Search{ /** * create instances of all the registered search providers */ - private static function initProviders(){ - if(count(self::$providers)>0){ + private static function initProviders() { + if(count(self::$providers)>0) { return; } - foreach(self::$registeredProviders as $provider){ + foreach(self::$registeredProviders as $provider) { $class=$provider['class']; $options=$provider['options']; self::$providers[]=new $class($options); diff --git a/lib/search/provider.php b/lib/search/provider.php index b83c5aa61b6..b617b9c5d94 100644 --- a/lib/search/provider.php +++ b/lib/search/provider.php @@ -5,7 +5,7 @@ abstract class OC_Search_Provider { private $options; - public function __construct($options){ + public function __construct($options) { $this->options=$options; } diff --git a/lib/search/provider/file.php b/lib/search/provider/file.php index 12a535876fe..50e16457672 100644 --- a/lib/search/provider/file.php +++ b/lib/search/provider/file.php @@ -1,17 +1,17 @@ <?php class OC_Search_Provider_File extends OC_Search_Provider{ - function search($query){ + function search($query) { $files=OC_FileCache::search($query,true); $results=array(); - foreach($files as $fileData){ + foreach($files as $fileData) { $file=$fileData['path']; $mime=$fileData['mimetype']; - if($mime=='httpd/unix-directory'){ + if($mime=='httpd/unix-directory') { $results[]=new OC_Search_Result(basename($file),'',OC_Helper::linkTo( 'files', 'index.php', array('dir' => $file)),'Files'); }else{ $mimeBase=$fileData['mimepart']; - switch($mimeBase){ + switch($mimeBase) { case 'audio': break; case 'text': @@ -21,7 +21,7 @@ class OC_Search_Provider_File extends OC_Search_Provider{ $results[]=new OC_Search_Result(basename($file),'',OC_Helper::linkTo( 'files', 'download.php', array('dir' => $file) ),'Images'); break; default: - if($mime=='application/xml'){ + if($mime=='application/xml') { $results[]=new OC_Search_Result(basename($file),'',OC_Helper::linkTo( 'files', 'download.php', array('dir' => $file) ),'Text'); }else{ $results[]=new OC_Search_Result(basename($file),'',OC_Helper::linkTo( 'files', 'download.php', array('dir' => $file) ),'Files'); diff --git a/lib/search/result.php b/lib/search/result.php index cd78a5cf253..63b5cfabce6 100644 --- a/lib/search/result.php +++ b/lib/search/result.php @@ -15,7 +15,7 @@ class OC_Search_Result{ * @param string $link link for the result * @param string $type the type of result as human readable string ('File', 'Music', etc) */ - public function __construct($name,$text,$link,$type){ + public function __construct($name,$text,$link,$type) { $this->name=$name; $this->text=$text; $this->link=$link; diff --git a/lib/setup.php b/lib/setup.php index 271fe55fd70..f27254a42a4 100644 --- a/lib/setup.php +++ b/lib/setup.php @@ -74,7 +74,7 @@ class OC_Setup { $datadir = htmlspecialchars_decode($options['directory']); //use sqlite3 when available, otherise sqlite2 will be used. - if($dbtype=='sqlite' and class_exists('SQLite3')){ + if($dbtype=='sqlite' and class_exists('SQLite3')) { $dbtype='sqlite3'; } @@ -114,7 +114,7 @@ class OC_Setup { //add prefix to the mysql user name to prevent collisions $dbusername=substr('oc_'.$username,0,16); - if($dbusername!=$oldUser){ + if($dbusername!=$oldUser) { //hash the password so we don't need to store the admin config in the config file $dbpassword=md5(time().$password); @@ -128,7 +128,7 @@ class OC_Setup { self::createDatabase($dbname, $dbusername, $connection); } else { - if($dbuser!=$oldUser){ + if($dbuser!=$oldUser) { OC_Config::setValue('dbuser', $dbuser); OC_Config::setValue('dbpassword', $dbpass); } @@ -140,7 +140,7 @@ class OC_Setup { //fill the database if needed $query="select count(*) from information_schema.tables where table_schema='$dbname' AND table_name = '{$dbtableprefix}users';"; $result = mysql_query($query,$connection); - if($result){ + if($result) { $row=mysql_fetch_row($result); } if(!$result or $row[0]==0) { @@ -345,7 +345,7 @@ class OC_Setup { } else { //delete the old sqlite database first, might cause infinte loops otherwise - if(file_exists("$datadir/owncloud.db")){ + if(file_exists("$datadir/owncloud.db")) { unlink("$datadir/owncloud.db"); } //in case of sqlite, we can always fill the database diff --git a/lib/streamwrappers.php b/lib/streamwrappers.php index f502c6170bd..1e5b19a11f0 100644 --- a/lib/streamwrappers.php +++ b/lib/streamwrappers.php @@ -5,17 +5,17 @@ class OC_FakeDirStream{ private $name; private $index; - public function dir_opendir($path,$options){ + public function dir_opendir($path,$options) { $this->name=substr($path,strlen('fakedir://')); $this->index=0; - if(!isset(self::$dirs[$this->name])){ + if(!isset(self::$dirs[$this->name])) { self::$dirs[$this->name]=array(); } return true; } - public function dir_readdir(){ - if($this->index>=count(self::$dirs[$this->name])){ + public function dir_readdir() { + if($this->index>=count(self::$dirs[$this->name])) { return false; } $filename=self::$dirs[$this->name][$this->index]; @@ -222,35 +222,35 @@ class OC_CloseStreamWrapper{ private $path=''; private $source; private static $open=array(); - public function stream_open($path, $mode, $options, &$opened_path){ + public function stream_open($path, $mode, $options, &$opened_path) { $path=substr($path,strlen('close://')); $this->path=$path; $this->source=fopen($path,$mode); - if(is_resource($this->source)){ + if(is_resource($this->source)) { $this->meta=stream_get_meta_data($this->source); } self::$open[]=$path; return is_resource($this->source); } - public function stream_seek($offset, $whence=SEEK_SET){ + public function stream_seek($offset, $whence=SEEK_SET) { fseek($this->source,$offset,$whence); } - public function stream_tell(){ + public function stream_tell() { return ftell($this->source); } - public function stream_read($count){ + public function stream_read($count) { return fread($this->source,$count); } - public function stream_write($data){ + public function stream_write($data) { return fwrite($this->source,$data); } - public function stream_set_option($option,$arg1,$arg2){ - switch($option){ + public function stream_set_option($option,$arg1,$arg2) { + switch($option) { case STREAM_OPTION_BLOCKING: stream_set_blocking($this->source,$arg1); break; @@ -262,39 +262,39 @@ class OC_CloseStreamWrapper{ } } - public function stream_stat(){ + public function stream_stat() { return fstat($this->source); } - public function stream_lock($mode){ + public function stream_lock($mode) { flock($this->source,$mode); } - public function stream_flush(){ + public function stream_flush() { return fflush($this->source); } - public function stream_eof(){ + public function stream_eof() { return feof($this->source); } public function url_stat($path) { $path=substr($path,strlen('close://')); - if(file_exists($path)){ + if(file_exists($path)) { return stat($path); }else{ return false; } } - public function stream_close(){ + public function stream_close() { fclose($this->source); - if(isset(self::$callBacks[$this->path])){ + if(isset(self::$callBacks[$this->path])) { call_user_func(self::$callBacks[$this->path],$this->path); } } - public function unlink($path){ + public function unlink($path) { $path=substr($path,strlen('close://')); return unlink($path); } diff --git a/lib/subadmin.php b/lib/subadmin.php index 4752492df30..363e4a97cad 100644 --- a/lib/subadmin.php +++ b/lib/subadmin.php @@ -36,7 +36,7 @@ class OC_SubAdmin{ * @param $gid gid of the group * @return boolean */ - public static function createSubAdmin($uid, $gid){ + public static function createSubAdmin($uid, $gid) { $stmt = OC_DB::prepare('INSERT INTO `*PREFIX*group_admin` (`gid`,`uid`) VALUES(?,?)'); $result = $stmt->execute(array($gid, $uid)); OC_Hook::emit( "OC_SubAdmin", "post_createSubAdmin", array( "gid" => $gid )); @@ -49,7 +49,7 @@ class OC_SubAdmin{ * @param $gid gid of the group * @return boolean */ - public static function deleteSubAdmin($uid, $gid){ + public static function deleteSubAdmin($uid, $gid) { $stmt = OC_DB::prepare('DELETE FROM `*PREFIX*group_admin` WHERE `gid` = ? AND `uid` = ?'); $result = $stmt->execute(array($gid, $uid)); OC_Hook::emit( "OC_SubAdmin", "post_deleteSubAdmin", array( "gid" => $gid )); @@ -61,11 +61,11 @@ class OC_SubAdmin{ * @param $uid uid of the SubAdmin * @return array */ - public static function getSubAdminsGroups($uid){ + public static function getSubAdminsGroups($uid) { $stmt = OC_DB::prepare('SELECT `gid` FROM `*PREFIX*group_admin` WHERE `uid` = ?'); $result = $stmt->execute(array($uid)); $gids = array(); - while($row = $result->fetchRow()){ + while($row = $result->fetchRow()) { $gids[] = $row['gid']; } return $gids; @@ -76,11 +76,11 @@ class OC_SubAdmin{ * @param $gid gid of the group * @return array */ - public static function getGroupsSubAdmins($gid){ + public static function getGroupsSubAdmins($gid) { $stmt = OC_DB::prepare('SELECT `uid` FROM `*PREFIX*group_admin` WHERE `gid` = ?'); $result = $stmt->execute(array($gid)); $uids = array(); - while($row = $result->fetchRow()){ + while($row = $result->fetchRow()) { $uids[] = $row['uid']; } return $uids; @@ -90,11 +90,11 @@ class OC_SubAdmin{ * @brief get all SubAdmins * @return array */ - public static function getAllSubAdmins(){ + public static function getAllSubAdmins() { $stmt = OC_DB::prepare('SELECT * FROM `*PREFIX*group_admin`'); $result = $stmt->execute(); $subadmins = array(); - while($row = $result->fetchRow()){ + while($row = $result->fetchRow()) { $subadmins[] = $row; } return $subadmins; @@ -106,11 +106,11 @@ class OC_SubAdmin{ * @param $gid gid of the group * @return bool */ - public static function isSubAdminofGroup($uid, $gid){ + public static function isSubAdminofGroup($uid, $gid) { $stmt = OC_DB::prepare('SELECT COUNT(*) AS `count` FROM `*PREFIX*group_admin` WHERE `uid` = ? AND `gid` = ?'); $result = $stmt->execute(array($uid, $gid)); $result = $result->fetchRow(); - if($result['count'] >= 1){ + if($result['count'] >= 1) { return true; } return false; @@ -121,11 +121,11 @@ class OC_SubAdmin{ * @param $uid uid of the subadmin * @return bool */ - public static function isSubAdmin($uid){ + public static function isSubAdmin($uid) { $stmt = OC_DB::prepare('SELECT COUNT(*) AS `count` FROM `*PREFIX*group_admin` WHERE `uid` = ?'); $result = $stmt->execute(array($uid)); $result = $result->fetchRow(); - if($result['count'] > 0){ + if($result['count'] > 0) { return true; } return false; @@ -137,16 +137,16 @@ class OC_SubAdmin{ * @param $user uid of the user * @return bool */ - public static function isUserAccessible($subadmin, $user){ - if(!self::isSubAdmin($subadmin)){ + public static function isUserAccessible($subadmin, $user) { + if(!self::isSubAdmin($subadmin)) { return false; } - if(OC_Group::inGroup($user, 'admin')){ + if(OC_Group::inGroup($user, 'admin')) { return false; } $accessiblegroups = self::getSubAdminsGroups($subadmin); - foreach($accessiblegroups as $accessiblegroup){ - if(OC_Group::inGroup($user, $accessiblegroup)){ + foreach($accessiblegroups as $accessiblegroup) { + if(OC_Group::inGroup($user, $accessiblegroup)) { return true; } } @@ -156,7 +156,7 @@ class OC_SubAdmin{ /* * @brief alias for self::isSubAdminofGroup() */ - public static function isGroupAccessible($subadmin, $group){ + public static function isGroupAccessible($subadmin, $group) { return self::isSubAdminofGroup($subadmin, $group); } @@ -165,7 +165,7 @@ class OC_SubAdmin{ * @param $parameters * @return boolean */ - public static function post_deleteUser($parameters){ + public static function post_deleteUser($parameters) { $stmt = OC_DB::prepare('DELETE FROM `*PREFIX*group_admin` WHERE `uid` = ?'); $result = $stmt->execute(array($parameters['uid'])); return true; @@ -176,7 +176,7 @@ class OC_SubAdmin{ * @param $parameters * @return boolean */ - public static function post_deleteGroup($parameters){ + public static function post_deleteGroup($parameters) { $stmt = OC_DB::prepare('DELETE FROM `*PREFIX*group_admin` WHERE `gid` = ?'); $result = $stmt->execute(array($parameters['gid'])); return true; diff --git a/lib/template.php b/lib/template.php index 2359bd50c46..8c872a2059b 100644 --- a/lib/template.php +++ b/lib/template.php @@ -30,7 +30,7 @@ * * For further information have a look at OC_Helper::linkTo */ -function link_to( $app, $file, $args = array() ){ +function link_to( $app, $file, $args = array() ) { return OC_Helper::linkTo( $app, $file, $args ); } @@ -42,7 +42,7 @@ function link_to( $app, $file, $args = array() ){ * * For further information have a look at OC_Helper::imagePath */ -function image_path( $app, $image ){ +function image_path( $app, $image ) { return OC_Helper::imagePath( $app, $image ); } @@ -53,7 +53,7 @@ function image_path( $app, $image ){ * * For further information have a look at OC_Helper::mimetypeIcon */ -function mimetype_icon( $mimetype ){ +function mimetype_icon( $mimetype ) { return OC_Helper::mimetypeIcon( $mimetype ); } @@ -64,7 +64,7 @@ function mimetype_icon( $mimetype ){ * * For further information have a look at OC_Helper::humanFileSize */ -function human_file_size( $bytes ){ +function human_file_size( $bytes ) { return OC_Helper::humanFileSize( $bytes ); } @@ -99,25 +99,25 @@ function relative_modified_date($timestamp) { } function html_select_options($options, $selected, $params=array()) { - if (!is_array($selected)){ + if (!is_array($selected)) { $selected=array($selected); } - if (isset($params['combine']) && $params['combine']){ + if (isset($params['combine']) && $params['combine']) { $options = array_combine($options, $options); } $value_name = $label_name = false; - if (isset($params['value'])){ + if (isset($params['value'])) { $value_name = $params['value']; } - if (isset($params['label'])){ + if (isset($params['label'])) { $label_name = $params['label']; } $html = ''; - foreach($options as $value => $label){ - if ($value_name && is_array($label)){ + foreach($options as $value => $label) { + if ($value_name && is_array($label)) { $value = $label[$value_name]; } - if ($label_name && is_array($label)){ + if ($label_name && is_array($label)) { $label = $label[$label_name]; } $select = in_array($value, $selected) ? ' selected="selected"' : ''; @@ -150,7 +150,7 @@ class OC_Template{ * according layout. For now, renderas can be set to "guest", "user" or * "admin". */ - public function __construct( $app, $name, $renderas = "" ){ + public function __construct( $app, $name, $renderas = "" ) { // Set the private data $this->renderas = $renderas; $this->application = $app; @@ -175,14 +175,14 @@ class OC_Template{ * sidebar, just the application. Useful to use just a specific * app on the desktop in a standalone window. */ - public static function detectFormfactor(){ + public static function detectFormfactor() { // please add more useragent strings for other devices - if(isset($_SERVER['HTTP_USER_AGENT'])){ + if(isset($_SERVER['HTTP_USER_AGENT'])) { if(stripos($_SERVER['HTTP_USER_AGENT'],'ipad')>0) { $mode='tablet'; - }elseif(stripos($_SERVER['HTTP_USER_AGENT'],'iphone')>0){ + }elseif(stripos($_SERVER['HTTP_USER_AGENT'],'iphone')>0) { $mode='mobile'; - }elseif((stripos($_SERVER['HTTP_USER_AGENT'],'N9')>0) and (stripos($_SERVER['HTTP_USER_AGENT'],'nokia')>0)){ + }elseif((stripos($_SERVER['HTTP_USER_AGENT'],'N9')>0) and (stripos($_SERVER['HTTP_USER_AGENT'],'nokia')>0)) { $mode='mobile'; }else{ $mode='default'; @@ -201,11 +201,11 @@ class OC_Template{ // if the formfactor is not yet autodetected do the // autodetection now. For possible formfactors check the // detectFormfactor documentation - if(!isset($_SESSION['formfactor'])){ + if(!isset($_SESSION['formfactor'])) { $_SESSION['formfactor'] = self::detectFormfactor(); } // allow manual override via GET parameter - if(isset($_GET['formfactor'])){ + if(isset($_GET['formfactor'])) { $_SESSION['formfactor']=$_GET['formfactor']; } $formfactor=$_SESSION['formfactor']; @@ -240,9 +240,9 @@ class OC_Template{ $app = $this->application; // Check if it is a app template or not. - if( $app != "" ){ + if( $app != "" ) { // Check if the app is in the app folder or in the root - if( file_exists(OC_App::getAppPath($app)."/templates/" )){ + if( file_exists(OC_App::getAppPath($app)."/templates/" )) { // Check if the template is overwritten by the selected theme if ($this->checkPathForTemplate(OC::$SERVERROOT."/themes/$theme/apps/$app/templates/", $name, $fext)) { }elseif ($this->checkPathForTemplate(OC_App::getAppPath($app)."/templates/", $name, $fext)) { @@ -282,9 +282,9 @@ class OC_Template{ { if ($name =='') return false; $template = null; - if( is_file( $path.$name.$fext.'.php' )){ + if( is_file( $path.$name.$fext.'.php' )) { $template = $path.$name.$fext.'.php'; - }elseif( is_file( $path.$name.'.php' )){ + }elseif( is_file( $path.$name.'.php' )) { $template = $path.$name.'.php'; } if ($template) { @@ -307,7 +307,7 @@ class OC_Template{ * * If the key existed before, it will be overwritten */ - public function assign( $key, $value, $sanitizeHTML=true ){ + public function assign( $key, $value, $sanitizeHTML=true ) { if($sanitizeHTML == true) $value=OC_Util::sanitizeHTML($value); $this->vars[$key] = $value; return true; @@ -323,8 +323,8 @@ class OC_Template{ * exists, the value will be appended. It can be accessed via * $_[$key][$position] in the template. */ - public function append( $key, $value ){ - if( array_key_exists( $key, $this->vars )){ + public function append( $key, $value ) { + if( array_key_exists( $key, $this->vars )) { $this->vars[$key][] = $value; } else{ @@ -338,7 +338,7 @@ class OC_Template{ * @param array $attributes array of attrobutes for the element * @param string $text the text content for the element */ - public function addHeader( $tag, $attributes, $text=''){ + public function addHeader( $tag, $attributes, $text='') { $this->headers[]=array('tag'=>$tag,'attributes'=>$attributes,'text'=>$text); } @@ -348,9 +348,9 @@ class OC_Template{ * * This function proceeds the template and prints its output. */ - public function printPage(){ + public function printPage() { $data = $this->fetchPage(); - if( $data === false ){ + if( $data === false ) { return false; } else{ @@ -366,10 +366,10 @@ class OC_Template{ * This function proceeds the template. If $this->renderas is set, it * will produce a full page. */ - public function fetchPage(){ + public function fetchPage() { $data = $this->_fetch(); - if( $this->renderas ){ + if( $this->renderas ) { $page = new OC_TemplateLayout($this->renderas); if($this->renderas == 'user') { $page->assign('requesttoken', $this->vars['requesttoken']); @@ -377,7 +377,7 @@ class OC_Template{ // Add custom headers $page->assign('headers',$this->headers, false); - foreach(OC_Util::$headers as $header){ + foreach(OC_Util::$headers as $header) { $page->append('headers',$header); } @@ -395,7 +395,7 @@ class OC_Template{ * * Includes the template file, fetches its output */ - private function _fetch(){ + private function _fetch() { // Register the variables $_ = $this->vars; $l = $this->l10n; @@ -417,12 +417,12 @@ class OC_Template{ * Includes another template. use <?php echo $this->inc('template'); ?> to * do this. */ - public function inc( $file, $additionalparams = null ){ + public function inc( $file, $additionalparams = null ) { // $_ erstellen $_ = $this->vars; $l = $this->l10n; - if( !is_null($additionalparams)){ + if( !is_null($additionalparams)) { $_ = array_merge( $additionalparams, $this->vars ); } @@ -443,9 +443,9 @@ class OC_Template{ * @param $parameters Parameters for the template * @returns true/false */ - public static function printUserPage( $application, $name, $parameters = array() ){ + public static function printUserPage( $application, $name, $parameters = array() ) { $content = new OC_Template( $application, $name, "user" ); - foreach( $parameters as $key => $value ){ + foreach( $parameters as $key => $value ) { $content->assign( $key, $value, false ); } print $content->printPage(); @@ -458,9 +458,9 @@ class OC_Template{ * @param $parameters Parameters for the template * @returns true/false */ - public static function printAdminPage( $application, $name, $parameters = array() ){ + public static function printAdminPage( $application, $name, $parameters = array() ) { $content = new OC_Template( $application, $name, "admin" ); - foreach( $parameters as $key => $value ){ + foreach( $parameters as $key => $value ) { $content->assign( $key, $value, false ); } return $content->printPage(); @@ -473,9 +473,9 @@ class OC_Template{ * @param $parameters Parameters for the template * @returns true/false */ - public static function printGuestPage( $application, $name, $parameters = array() ){ + public static function printGuestPage( $application, $name, $parameters = array() ) { $content = new OC_Template( $application, $name, "guest" ); - foreach( $parameters as $key => $value ){ + foreach( $parameters as $key => $value ) { $content->assign( $key, $value, false ); } return $content->printPage(); diff --git a/lib/templatelayout.php b/lib/templatelayout.php index 18fd23aac95..ad013edad8c 100644 --- a/lib/templatelayout.php +++ b/lib/templatelayout.php @@ -7,13 +7,13 @@ */ class OC_TemplateLayout extends OC_Template { - public function __construct( $renderas ){ + public function __construct( $renderas ) { // Decide which page we show - if( $renderas == 'user' ){ + if( $renderas == 'user' ) { parent::__construct( 'core', 'layout.user' ); $this->assign('searchurl',OC_Helper::linkTo( 'search', 'index.php' ), false); - if(array_search(OC_APP::getCurrentApp(),array('settings','admin','help'))!==false){ + if(array_search(OC_APP::getCurrentApp(),array('settings','admin','help'))!==false) { $this->assign('bodyid','body-settings', false); }else{ $this->assign('bodyid','body-user', false); @@ -36,7 +36,7 @@ class OC_TemplateLayout extends OC_Template { } $apps_paths = array(); - foreach(OC_App::getEnabledApps() as $app){ + foreach(OC_App::getEnabledApps() as $app) { $apps_paths[$app] = OC_App::getAppWebPath($app); } $this->assign( 'apps_paths', str_replace('\\/', '/',json_encode($apps_paths)),false ); // Ugly unescape slashes waiting for better solution @@ -96,7 +96,7 @@ class OC_TemplateLayout extends OC_Template { return false; } - static public function findStylesheetFiles($styles){ + static public function findStylesheetFiles($styles) { // Read the selected theme from the config file $theme=OC_Config::getValue( 'theme' ); @@ -104,7 +104,7 @@ class OC_TemplateLayout extends OC_Template { $fext = self::getFormFactorExtension(); $files = array(); - foreach($styles as $style){ + foreach($styles as $style) { // is it in 3rdparty? if(self::appendIfExist($files, OC::$THIRDPARTYROOT, OC::$THIRDPARTYWEBROOT, $style.'.css')) { @@ -132,7 +132,7 @@ class OC_TemplateLayout extends OC_Template { } // Add the theme css files. you can override the default values here if(!empty($theme)) { - foreach($styles as $style){ + foreach($styles as $style) { if(self::appendIfExist($files, OC::$SERVERROOT, OC::$WEBROOT, "themes/$theme/apps/$style$fext.css" )) { }elseif(self::appendIfExist($files, OC::$SERVERROOT, OC::$WEBROOT, "themes/$theme/apps/$style.css" )) { @@ -147,7 +147,7 @@ class OC_TemplateLayout extends OC_Template { return $files; } - static public function findJavascriptFiles($scripts){ + static public function findJavascriptFiles($scripts) { // Read the selected theme from the config file $theme=OC_Config::getValue( 'theme' ); @@ -155,7 +155,7 @@ class OC_TemplateLayout extends OC_Template { $fext = self::getFormFactorExtension(); $files = array(); - foreach($scripts as $script){ + foreach($scripts as $script) { // Is it in 3rd party? if(self::appendIfExist($files, OC::$THIRDPARTYROOT, OC::$THIRDPARTYWEBROOT, $script.'.js')) { diff --git a/lib/updater.php b/lib/updater.php index 1b1a4eab970..ad42f2bf605 100644 --- a/lib/updater.php +++ b/lib/updater.php @@ -28,7 +28,7 @@ class OC_Updater{ /** * Check if a new version is available */ - public static function check(){ + public static function check() { OC_Appconfig::setValue('core', 'lastupdatedat',microtime(true)); if(OC_Appconfig::getValue('core', 'installedat','')=='') OC_Appconfig::setValue('core', 'installedat',microtime(true)); @@ -43,7 +43,7 @@ class OC_Updater{ //fetch xml data from updater $url=$updaterurl.'?version='.$versionstring; $xml=@file_get_contents($url); - if($xml==FALSE){ + if($xml==FALSE) { return array(); } $data=@simplexml_load_string($xml); @@ -57,10 +57,10 @@ class OC_Updater{ return $tmp; } - public static function ShowUpdatingHint(){ + public static function ShowUpdatingHint() { $l = OC_L10N::get('lib'); - if(OC_Config::getValue('updatechecker', true)==true){ + if(OC_Config::getValue('updatechecker', true)==true) { $data=OC_Updater::check(); if(isset($data['version']) and $data['version']<>'') { $txt='<span style="color:#AA0000; font-weight:bold;">'.$l->t('%s is available. Get <a href="%s">more information</a>',array($data['versionstring'], $data['web'])).'</span>'; @@ -77,7 +77,7 @@ class OC_Updater{ /** * do ownCloud update */ - public static function doUpdate(){ + public static function doUpdate() { //update ownCloud core diff --git a/lib/user.php b/lib/user.php index 236478e9e5c..89dab9f9647 100644 --- a/lib/user.php +++ b/lib/user.php @@ -52,7 +52,7 @@ class OC_User { * * Makes a list of backends that can be used by other modules */ - public static function registerBackend( $backend ){ + public static function registerBackend( $backend ) { self::$_backends[] = $backend; return true; } @@ -63,7 +63,7 @@ class OC_User { * * Returns the names of all backends. */ - public static function getBackends(){ + public static function getBackends() { return self::$_backends; } @@ -73,7 +73,7 @@ class OC_User { * * Returns the names of all used backends. */ - public static function getUsedBackends(){ + public static function getUsedBackends() { return array_keys(self::$_usedBackends); } @@ -84,17 +84,17 @@ class OC_User { * * Set the User Authentication Module */ - public static function useBackend( $backend = 'database' ){ - if($backend instanceof OC_User_Interface){ + public static function useBackend( $backend = 'database' ) { + if($backend instanceof OC_User_Interface) { self::$_usedBackends[get_class($backend)]=$backend; }else{ // You'll never know what happens - if( null === $backend OR !is_string( $backend )){ + if( null === $backend OR !is_string( $backend )) { $backend = 'database'; } // Load backend - switch( $backend ){ + switch( $backend ) { case 'database': case 'mysql': case 'sqlite': @@ -112,19 +112,19 @@ class OC_User { /** * remove all used backends */ - public static function clearBackends(){ + public static function clearBackends() { self::$_usedBackends=array(); } /** * setup the configured backends in config.php */ - public static function setupBackends(){ + public static function setupBackends() { $backends=OC_Config::getValue('user_backends',array()); - foreach($backends as $i=>$config){ + foreach($backends as $i=>$config) { $class=$config['class']; $arguments=$config['arguments']; - if(class_exists($class) and array_search($i,self::$_setupedBackends)===false){ + if(class_exists($class) and array_search($i,self::$_setupedBackends)===false) { // make a reflection object $reflectionObj = new ReflectionClass($class); @@ -149,23 +149,23 @@ class OC_User { * * Allowed characters in the username are: "a-z", "A-Z", "0-9" and "_.@-" */ - public static function createUser( $uid, $password ){ + public static function createUser( $uid, $password ) { // Check the name for bad characters // Allowed are: "a-z", "A-Z", "0-9" and "_.@-" - if( preg_match( '/[^a-zA-Z0-9 _\.@\-]/', $uid )){ + if( preg_match( '/[^a-zA-Z0-9 _\.@\-]/', $uid )) { throw new Exception('Only the following characters are allowed in a username: "a-z", "A-Z", "0-9", and "_.@-"'); } // No empty username - if(trim($uid) == ''){ + if(trim($uid) == '') { throw new Exception('A valid username must be provided'); } // No empty password - if(trim($password) == ''){ + if(trim($password) == '') { throw new Exception('A valid password must be provided'); } // Check if user already exists - if( self::userExists($uid) ){ + if( self::userExists($uid) ) { throw new Exception('The username is already being used'); } @@ -173,9 +173,9 @@ class OC_User { $run = true; OC_Hook::emit( "OC_User", "pre_createUser", array( "run" => &$run, "uid" => $uid, "password" => $password )); - if( $run ){ + if( $run ) { //create the user in the first backend that supports creating users - foreach(self::$_usedBackends as $backend){ + foreach(self::$_usedBackends as $backend) { if(!$backend->implementsActions(OC_USER_BACKEND_CREATE_USER)) continue; @@ -195,17 +195,17 @@ class OC_User { * * Deletes a user */ - public static function deleteUser( $uid ){ + public static function deleteUser( $uid ) { $run = true; OC_Hook::emit( "OC_User", "pre_deleteUser", array( "run" => &$run, "uid" => $uid )); - if( $run ){ + if( $run ) { //delete the user from all backends - foreach(self::$_usedBackends as $backend){ + foreach(self::$_usedBackends as $backend) { $backend->deleteUser($uid); } // We have to delete the user from all groups - foreach( OC_Group::getUserGroups( $uid ) as $i ){ + foreach( OC_Group::getUserGroups( $uid ) as $i ) { OC_Group::removeFromGroup( $uid, $i ); } // Delete the user's keys in preferences @@ -227,14 +227,14 @@ class OC_User { * * Log in a user and regenerate a new session - if the password is ok */ - public static function login( $uid, $password ){ + public static function login( $uid, $password ) { $run = true; OC_Hook::emit( "OC_User", "pre_login", array( "run" => &$run, "uid" => $uid )); - if( $run ){ + if( $run ) { $uid = self::checkPassword( $uid, $password ); $enabled = self::isEnabled($uid); - if($uid && $enabled){ + if($uid && $enabled) { session_regenerate_id(true); self::setUserId($uid); OC_Hook::emit( "OC_User", "post_login", array( "uid" => $uid, 'password'=>$password )); @@ -260,7 +260,7 @@ class OC_User { * * Logout, destroys session */ - public static function logout(){ + public static function logout() { OC_Hook::emit( "OC_User", "logout", array()); session_unset(); session_destroy(); @@ -274,11 +274,11 @@ class OC_User { * * Checks if the user is logged in */ - public static function isLoggedIn(){ + public static function isLoggedIn() { if( isset($_SESSION['user_id']) AND $_SESSION['user_id']) { OC_App::loadApps(array('authentication')); self::setupBackends(); - if (self::userExists($_SESSION['user_id']) ){ + if (self::userExists($_SESSION['user_id']) ) { return true; } } @@ -289,8 +289,8 @@ class OC_User { * @brief get the user id of the user currently logged in. * @return string uid or false */ - public static function getUser(){ - if( isset($_SESSION['user_id']) AND $_SESSION['user_id'] ){ + public static function getUser() { + if( isset($_SESSION['user_id']) AND $_SESSION['user_id'] ) { return $_SESSION['user_id']; } else{ @@ -304,7 +304,7 @@ class OC_User { * * generates a password */ - public static function generatePassword(){ + public static function generatePassword() { return uniqId(); } @@ -316,15 +316,15 @@ class OC_User { * * Change the password of a user */ - public static function setPassword( $uid, $password ){ + public static function setPassword( $uid, $password ) { $run = true; OC_Hook::emit( "OC_User", "pre_setPassword", array( "run" => &$run, "uid" => $uid, "password" => $password )); - if( $run ){ + if( $run ) { $success = false; - foreach(self::$_usedBackends as $backend){ - if($backend->implementsActions(OC_USER_BACKEND_SET_PASSWORD)){ - if($backend->userExists($uid)){ + foreach(self::$_usedBackends as $backend) { + if($backend->implementsActions(OC_USER_BACKEND_SET_PASSWORD)) { + if($backend->userExists($uid)) { $success |= $backend->setPassword($uid,$password); } } @@ -346,11 +346,11 @@ class OC_User { * Check if the password is correct without logging in the user * returns the user id or false */ - public static function checkPassword( $uid, $password ){ - foreach(self::$_usedBackends as $backend){ - if($backend->implementsActions(OC_USER_BACKEND_CHECK_PASSWORD)){ + public static function checkPassword( $uid, $password ) { + foreach(self::$_usedBackends as $backend) { + if($backend->implementsActions(OC_USER_BACKEND_CHECK_PASSWORD)) { $result=$backend->checkPassword( $uid, $password ); - if($result){ + if($result) { return $result; } } @@ -366,11 +366,11 @@ class OC_User { * Check if the password is correct without logging in the user * returns the user id or false */ - public static function getHome($uid){ - foreach(self::$_usedBackends as $backend){ - if($backend->implementsActions(OC_USER_BACKEND_GET_HOME)){ + public static function getHome($uid) { + foreach(self::$_usedBackends as $backend) { + if($backend->implementsActions(OC_USER_BACKEND_GET_HOME)) { $result=$backend->getHome($uid); - if($result){ + if($result) { return $result; } } @@ -401,10 +401,10 @@ class OC_User { * @param string $uid the username * @return boolean */ - public static function userExists($uid){ - foreach(self::$_usedBackends as $backend){ + public static function userExists($uid) { + foreach(self::$_usedBackends as $backend) { $result=$backend->userExists($uid); - if($result===true){ + if($result===true) { return true; } } @@ -415,7 +415,7 @@ class OC_User { * disables a user * @param string $userid the user to disable */ - public static function disableUser($userid){ + public static function disableUser($userid) { $query = "INSERT INTO `*PREFIX*preferences` (`userid`, `appid`, `configkey`, `configvalue`) VALUES(?, ?, ?, ?)"; $query = OC_DB::prepare($query); $query->execute(array($userid, 'core', 'enabled', 'false')); @@ -425,7 +425,7 @@ class OC_User { * enable a user * @param string $userid */ - public static function enableUser($userid){ + public static function enableUser($userid) { $query = "DELETE FROM `*PREFIX*preferences` WHERE `userid` = ? AND `appid` = ? AND `configkey` = ? AND `configvalue` = ?"; $query = OC_DB::prepare($query); $query->execute(array($userid, 'core', 'enabled', 'false')); @@ -436,7 +436,7 @@ class OC_User { * @param string $userid * @return bool */ - public static function isEnabled($userid){ + public static function isEnabled($userid) { $query = "SELECT `userid` FROM `*PREFIX*preferences` WHERE `userid` = ? AND `appid` = ? AND `configkey` = ? AND `configvalue` = ?"; $query = OC_DB::prepare($query); $results = $query->execute(array($userid, 'core', 'enabled', 'false')); @@ -447,7 +447,7 @@ class OC_User { * @brief Set cookie value to use in next page load * @param string $username username to be set */ - public static function setMagicInCookie($username, $token){ + public static function setMagicInCookie($username, $token) { $secure_cookie = OC_Config::getValue("forcessl", false); setcookie("oc_username", $username, time()+60*60*24*15, '', '', $secure_cookie); setcookie("oc_token", $token, time()+60*60*24*15, '', '', $secure_cookie); @@ -457,7 +457,7 @@ class OC_User { /** * @brief Remove cookie for "remember username" */ - public static function unsetMagicInCookie(){ + public static function unsetMagicInCookie() { unset($_COOKIE["oc_username"]); unset($_COOKIE["oc_token"]); unset($_COOKIE["oc_remember_login"]); diff --git a/lib/user/backend.php b/lib/user/backend.php index 0ef7ccd0468..2a95db93690 100644 --- a/lib/user/backend.php +++ b/lib/user/backend.php @@ -59,9 +59,9 @@ abstract class OC_User_Backend implements OC_User_Interface { * Returns the supported actions as int to be * compared with OC_USER_BACKEND_CREATE_USER etc. */ - public function getSupportedActions(){ + public function getSupportedActions() { $actions = 0; - foreach($this->possibleActions AS $action => $methodName){ + foreach($this->possibleActions AS $action => $methodName) { if(method_exists($this, $methodName)) { $actions |= $action; } @@ -78,7 +78,7 @@ abstract class OC_User_Backend implements OC_User_Interface { * Returns the supported actions as int to be * compared with OC_USER_BACKEND_CREATE_USER etc. */ - public function implementsActions($actions){ + public function implementsActions($actions) { return (bool)($this->getSupportedActions() & $actions); } @@ -89,7 +89,7 @@ abstract class OC_User_Backend implements OC_User_Interface { * * Deletes a user */ - public function deleteUser( $uid ){ + public function deleteUser( $uid ) { return false; } @@ -108,7 +108,7 @@ abstract class OC_User_Backend implements OC_User_Interface { * @param string $uid the username * @return boolean */ - public function userExists($uid){ + public function userExists($uid) { return false; } @@ -117,7 +117,7 @@ abstract class OC_User_Backend implements OC_User_Interface { * @param string $uid the username * @return boolean */ - public function getHome($uid){ + public function getHome($uid) { return false; } } diff --git a/lib/user/database.php b/lib/user/database.php index 52f3b35fa5c..76b44a2f6ca 100644 --- a/lib/user/database.php +++ b/lib/user/database.php @@ -44,8 +44,8 @@ class OC_User_Database extends OC_User_Backend { */ static private $hasher=null; - private function getHasher(){ - if(!self::$hasher){ + private function getHasher() { + if(!self::$hasher) { //we don't want to use DES based crypt(), since it doesn't return a has with a recognisable prefix $forcePortable=(CRYPT_BLOWFISH!=1); self::$hasher=new PasswordHash(8,$forcePortable); @@ -63,8 +63,8 @@ class OC_User_Database extends OC_User_Backend { * Creates a new user. Basic checking of username is done in OC_User * itself, not in its subclasses. */ - public function createUser( $uid, $password ){ - if( $this->userExists($uid) ){ + public function createUser( $uid, $password ) { + if( $this->userExists($uid) ) { return false; }else{ $hasher=$this->getHasher(); @@ -83,7 +83,7 @@ class OC_User_Database extends OC_User_Backend { * * Deletes a user */ - public function deleteUser( $uid ){ + public function deleteUser( $uid ) { // Delete user-group-relation $query = OC_DB::prepare( 'DELETE FROM `*PREFIX*users` WHERE uid = ?' ); $query->execute( array( $uid )); @@ -98,8 +98,8 @@ class OC_User_Database extends OC_User_Backend { * * Change the password of a user */ - public function setPassword( $uid, $password ){ - if( $this->userExists($uid) ){ + public function setPassword( $uid, $password ) { + if( $this->userExists($uid) ) { $hasher=$this->getHasher(); $hash = $hasher->HashPassword($password.OC_Config::getValue('passwordsalt', '')); $query = OC_DB::prepare( 'UPDATE `*PREFIX*users` SET `password` = ? WHERE `uid` = ?' ); @@ -120,22 +120,22 @@ class OC_User_Database extends OC_User_Backend { * Check if the password is correct without logging in the user * returns the user id or false */ - public function checkPassword( $uid, $password ){ + public function checkPassword( $uid, $password ) { $query = OC_DB::prepare( 'SELECT `uid`, `password` FROM `*PREFIX*users` WHERE LOWER(`uid`) = LOWER(?)' ); $result = $query->execute( array( $uid)); $row=$result->fetchRow(); - if($row){ + if($row) { $storedHash=$row['password']; - if ($storedHash[0]=='$'){//the new phpass based hashing + if ($storedHash[0]=='$') {//the new phpass based hashing $hasher=$this->getHasher(); - if($hasher->CheckPassword($password.OC_Config::getValue('passwordsalt', ''), $storedHash)){ + if($hasher->CheckPassword($password.OC_Config::getValue('passwordsalt', ''), $storedHash)) { return $row['uid']; }else{ return false; } }else{//old sha1 based hashing - if(sha1($password)==$storedHash){ + if(sha1($password)==$storedHash) { //upgrade to new hashing $this->setPassword($row['uid'],$password); return $row['uid']; @@ -169,7 +169,7 @@ class OC_User_Database extends OC_User_Backend { * @param string $uid the username * @return boolean */ - public function userExists($uid){ + public function userExists($uid) { $query = OC_DB::prepare( 'SELECT * FROM `*PREFIX*users` WHERE LOWER(`uid`) = LOWER(?)' ); $result = $query->execute( array( $uid )); @@ -181,8 +181,8 @@ class OC_User_Database extends OC_User_Backend { * @param string $uid the username * @return boolean */ - public function getHome($uid){ - if($this->userExists($uid)){ + public function getHome($uid) { + if($this->userExists($uid)) { return OC_Config::getValue( "datadirectory", OC::$SERVERROOT."/data" ) . '/' . $uid; }else{ return false; diff --git a/lib/user/dummy.php b/lib/user/dummy.php index 15a67b7e1ed..4dbbc02b888 100644 --- a/lib/user/dummy.php +++ b/lib/user/dummy.php @@ -35,8 +35,8 @@ class OC_User_Dummy extends OC_User_Backend { * Creates a new user. Basic checking of username is done in OC_User * itself, not in its subclasses. */ - public function createUser($uid, $password){ - if(isset($this->users[$uid])){ + public function createUser($uid, $password) { + if(isset($this->users[$uid])) { return false; }else{ $this->users[$uid]=$password; @@ -51,8 +51,8 @@ class OC_User_Dummy extends OC_User_Backend { * * Deletes a user */ - public function deleteUser( $uid ){ - if(isset($this->users[$uid])){ + public function deleteUser( $uid ) { + if(isset($this->users[$uid])) { unset($this->users[$uid]); return true; }else{ @@ -68,8 +68,8 @@ class OC_User_Dummy extends OC_User_Backend { * * Change the password of a user */ - public function setPassword($uid, $password){ - if(isset($this->users[$uid])){ + public function setPassword($uid, $password) { + if(isset($this->users[$uid])) { $this->users[$uid]=$password; return true; }else{ @@ -86,8 +86,8 @@ class OC_User_Dummy extends OC_User_Backend { * Check if the password is correct without logging in the user * returns the user id or false */ - public function checkPassword($uid, $password){ - if(isset($this->users[$uid])){ + public function checkPassword($uid, $password) { + if(isset($this->users[$uid])) { return ($this->users[$uid]==$password); }else{ return false; @@ -109,7 +109,7 @@ class OC_User_Dummy extends OC_User_Backend { * @param string $uid the username * @return boolean */ - public function userExists($uid){ + public function userExists($uid) { return isset($this->users[$uid]); } } diff --git a/lib/user/http.php b/lib/user/http.php index 5149678e4ed..2668341408d 100644 --- a/lib/user/http.php +++ b/lib/user/http.php @@ -30,14 +30,14 @@ class OC_User_HTTP extends OC_User_Backend { * @param string path * @return array */ - private function parseUrl($url){ + private function parseUrl($url) { $parts=parse_url($url); $url=$parts['scheme'].'://'.$parts['host']; - if(isset($parts['port'])){ + if(isset($parts['port'])) { $url.=':'.$parts['port']; } $url.=$parts['path']; - if(isset($parts['query'])){ + if(isset($parts['query'])) { $url.='?'.$parts['query']; } return array($parts['user'],$url); @@ -49,7 +49,7 @@ class OC_User_HTTP extends OC_User_Backend { * @param string url * @return boolean */ - private function matchUrl($url){ + private function matchUrl($url) { return ! is_null(parse_url($url,PHP_URL_USER)); } @@ -62,8 +62,8 @@ class OC_User_HTTP extends OC_User_Backend { * Check if the password is correct without logging in the user * returns the user id or false */ - public function checkPassword($uid, $password){ - if(!$this->matchUrl($uid)){ + public function checkPassword($uid, $password) { + if(!$this->matchUrl($uid)) { return false; } list($user,$url)=$this->parseUrl($uid); @@ -87,7 +87,7 @@ class OC_User_HTTP extends OC_User_Backend { * @param string $uid the username * @return boolean */ - public function userExists($uid){ + public function userExists($uid) { return $this->matchUrl($uid); } @@ -96,8 +96,8 @@ class OC_User_HTTP extends OC_User_Backend { * @param string $uid the username * @return boolean */ - public function getHome($uid){ - if($this->userExists($uid)){ + public function getHome($uid) { + if($this->userExists($uid)) { return OC_Config::getValue( "datadirectory", OC::$SERVERROOT."/data" ) . '/' . $uid; }else{ return false; diff --git a/lib/util.php b/lib/util.php index b742e27b55d..5046550d6a2 100755 --- a/lib/util.php +++ b/lib/util.php @@ -14,13 +14,13 @@ class OC_Util { public static $core_scripts=array(); // Can be set up - public static function setupFS( $user = '' ){// configure the initial filesystem based on the configuration - if(self::$fsSetup){//setting up the filesystem twice can only lead to trouble + public static function setupFS( $user = '' ) {// configure the initial filesystem based on the configuration + if(self::$fsSetup) {//setting up the filesystem twice can only lead to trouble return false; } // If we are not forced to load a specific user we load the one that is logged in - if( $user == "" && OC_User::isLoggedIn()){ + if( $user == "" && OC_User::isLoggedIn()) { $user = OC_User::getUser(); } @@ -33,16 +33,16 @@ class OC_Util { $CONFIG_DATADIRECTORY = OC_Config::getValue( "datadirectory", OC::$SERVERROOT."/data" ); //first set up the local "root" storage - if(!self::$rootMounted){ + if(!self::$rootMounted) { OC_Filesystem::mount('OC_Filestorage_Local',array('datadir'=>$CONFIG_DATADIRECTORY),'/'); self::$rootMounted=true; } - if( $user != "" ){ //if we aren't logged in, there is no use to set up the filesystem + if( $user != "" ) { //if we aren't logged in, there is no use to set up the filesystem $user_dir = '/'.$user.'/files'; $user_root = OC_User::getHome($user); $userdirectory = $user_root . '/files'; - if( !is_dir( $userdirectory )){ + if( !is_dir( $userdirectory )) { mkdir( $userdirectory, 0755, true ); } //jail the user into his "home" directory @@ -61,7 +61,7 @@ class OC_Util { $mtime=filemtime($user_root.'/mount.php'); $previousMTime=OC_Preferences::getValue($user,'files','mountconfigmtime',0); - if($mtime>$previousMTime){//mount config has changed, filecache needs to be updated + if($mtime>$previousMTime) {//mount config has changed, filecache needs to be updated OC_FileCache::clear($user); OC_Preferences::setValue($user,'files','mountconfigmtime',$mtime); } @@ -70,7 +70,7 @@ class OC_Util { } } - public static function tearDownFS(){ + public static function tearDownFS() { OC_Filesystem::tearDown(); self::$fsSetup=false; } @@ -79,7 +79,7 @@ class OC_Util { * get the current installed version of ownCloud * @return array */ - public static function getVersion(){ + public static function getVersion() { // hint: We only can count up. So the internal version number of ownCloud 4.5 will be 4,9,0. This is not visible to the user return array(4,83,6); } @@ -88,7 +88,7 @@ class OC_Util { * get the current installed version string of ownCloud * @return string */ - public static function getVersionString(){ + public static function getVersionString() { return '4.5 beta 2'; } @@ -96,7 +96,7 @@ class OC_Util { * get the current installed edition of ownCloud. There is the community edition that just returns an empty string and the enterprise edition that returns "Enterprise". * @return string */ - public static function getEditionString(){ + public static function getEditionString() { return ''; } @@ -106,12 +106,12 @@ class OC_Util { * @param appid $application * @param filename $file */ - public static function addScript( $application, $file = null ){ - if( is_null( $file )){ + public static function addScript( $application, $file = null ) { + if( is_null( $file )) { $file = $application; $application = ""; } - if( !empty( $application )){ + if( !empty( $application )) { self::$scripts[] = "$application/js/$file"; }else{ self::$scripts[] = "js/$file"; @@ -124,12 +124,12 @@ class OC_Util { * @param appid $application * @param filename $file */ - public static function addStyle( $application, $file = null ){ - if( is_null( $file )){ + public static function addStyle( $application, $file = null ) { + if( is_null( $file )) { $file = $application; $application = ""; } - if( !empty( $application )){ + if( !empty( $application )) { self::$styles[] = "$application/css/$file"; }else{ self::$styles[] = "css/$file"; @@ -142,7 +142,7 @@ class OC_Util { * @param array $attributes array of attributes for the element * @param string $text the text content for the element */ - public static function addHeader( $tag, $attributes, $text=''){ + public static function addHeader( $tag, $attributes, $text='') { self::$headers[]=array('tag'=>$tag,'attributes'=>$attributes,'text'=>$text); } @@ -152,8 +152,8 @@ class OC_Util { * @param int timestamp $timestamp * @param bool dateOnly option to ommit time from the result */ - public static function formatDate( $timestamp,$dateOnly=false){ - if(isset($_SESSION['timezone'])){//adjust to clients timezone if we know it + public static function formatDate( $timestamp,$dateOnly=false) { + if(isset($_SESSION['timezone'])) {//adjust to clients timezone if we know it $systemTimeZone = intval(date('O')); $systemTimeZone=(round($systemTimeZone/100,0)*60)+($systemTimeZone%100); $clientTimeZone=$_SESSION['timezone']*60; @@ -197,11 +197,11 @@ class OC_Util { * check if the current server configuration is suitable for ownCloud * @return array arrays with error messages and hints */ - public static function checkServer(){ + public static function checkServer() { $errors=array(); //check for database drivers - if(!(is_callable('sqlite_open') or class_exists('SQLite3')) and !is_callable('mysql_connect') and !is_callable('pg_connect')){ + if(!(is_callable('sqlite_open') or class_exists('SQLite3')) and !is_callable('mysql_connect') and !is_callable('pg_connect')) { $errors[]=array('error'=>'No database drivers (sqlite, mysql, or postgresql) installed.<br/>','hint'=>'');//TODO: sane hint } @@ -223,25 +223,25 @@ class OC_Util { $CONFIG_DATADIRECTORY = OC_Config::getValue( "datadirectory", OC::$SERVERROOT."/data" ); //check for correct file permissions - if(!stristr(PHP_OS, 'WIN')){ + if(!stristr(PHP_OS, 'WIN')) { $permissionsModHint="Please change the permissions to 0770 so that the directory cannot be listed by other users."; $prems=substr(decoct(@fileperms($CONFIG_DATADIRECTORY)),-3); - if(substr($prems,-1)!='0'){ + if(substr($prems,-1)!='0') { OC_Helper::chmodr($CONFIG_DATADIRECTORY,0770); clearstatcache(); $prems=substr(decoct(@fileperms($CONFIG_DATADIRECTORY)),-3); - if(substr($prems,2,1)!='0'){ + if(substr($prems,2,1)!='0') { $errors[]=array('error'=>'Data directory ('.$CONFIG_DATADIRECTORY.') is readable for other users<br/>','hint'=>$permissionsModHint); } } - if( OC_Config::getValue( "enablebackup", false )){ + if( OC_Config::getValue( "enablebackup", false )) { $CONFIG_BACKUPDIRECTORY = OC_Config::getValue( "backupdirectory", OC::$SERVERROOT."/backup" ); $prems=substr(decoct(@fileperms($CONFIG_BACKUPDIRECTORY)),-3); - if(substr($prems,-1)!='0'){ + if(substr($prems,-1)!='0') { OC_Helper::chmodr($CONFIG_BACKUPDIRECTORY,0770); clearstatcache(); $prems=substr(decoct(@fileperms($CONFIG_BACKUPDIRECTORY)),-3); - if(substr($prems,2,1)!='0'){ + if(substr($prems,2,1)!='0') { $errors[]=array('error'=>'Data directory ('.$CONFIG_BACKUPDIRECTORY.') is readable for other users<br/>','hint'=>$permissionsModHint); } } @@ -250,39 +250,39 @@ class OC_Util { //TODO: permissions checks for windows hosts } // Create root dir. - if(!is_dir($CONFIG_DATADIRECTORY)){ + if(!is_dir($CONFIG_DATADIRECTORY)) { $success=@mkdir($CONFIG_DATADIRECTORY); if(!$success) { $errors[]=array('error'=>"Can't create data directory (".$CONFIG_DATADIRECTORY.")",'hint'=>"You can usually fix this by giving the webserver write access to the ownCloud directory '".OC::$SERVERROOT."' (in a terminal, use the command 'chown -R www-data:www-data /path/to/your/owncloud/install/data' "); } - } else if(!is_writable($CONFIG_DATADIRECTORY)){ + } else if(!is_writable($CONFIG_DATADIRECTORY)) { $errors[]=array('error'=>'Data directory ('.$CONFIG_DATADIRECTORY.') not writable by ownCloud<br/>','hint'=>$permissionsHint); } // check if all required php modules are present - if(!class_exists('ZipArchive')){ + if(!class_exists('ZipArchive')) { $errors[]=array('error'=>'PHP module zip not installed.<br/>','hint'=>'Please ask your server administrator to install the module.'); } - if(!function_exists('mb_detect_encoding')){ + if(!function_exists('mb_detect_encoding')) { $errors[]=array('error'=>'PHP module mb multibyte not installed.<br/>','hint'=>'Please ask your server administrator to install the module.'); } - if(!function_exists('ctype_digit')){ + if(!function_exists('ctype_digit')) { $errors[]=array('error'=>'PHP module ctype is not installed.<br/>','hint'=>'Please ask your server administrator to install the module.'); } - if(!function_exists('json_encode')){ + if(!function_exists('json_encode')) { $errors[]=array('error'=>'PHP module JSON is not installed.<br/>','hint'=>'Please ask your server administrator to install the module.'); } - if(!function_exists('imagepng')){ + if(!function_exists('imagepng')) { $errors[]=array('error'=>'PHP module GD is not installed.<br/>','hint'=>'Please ask your server administrator to install the module.'); } - if(!function_exists('gzencode')){ + if(!function_exists('gzencode')) { $errors[]=array('error'=>'PHP module zlib is not installed.<br/>','hint'=>'Please ask your server administrator to install the module.'); } - if(floatval(phpversion())<5.3){ + if(floatval(phpversion())<5.3) { $errors[]=array('error'=>'PHP 5.3 is required.<br/>','hint'=>'Please ask your server administrator to update PHP to version 5.3 or higher. PHP 5.2 is no longer supported by ownCloud and the PHP community.'); } - if(!defined('PDO::ATTR_DRIVER_NAME')){ + if(!defined('PDO::ATTR_DRIVER_NAME')) { $errors[]=array('error'=>'PHP PDO module is not installed.<br/>','hint'=>'Please ask your server administrator to install the module.'); } @@ -316,8 +316,8 @@ class OC_Util { /** * Check if the app is enabled, redirects to home if not */ - public static function checkAppEnabled($app){ - if( !OC_App::isEnabled($app)){ + public static function checkAppEnabled($app) { + if( !OC_App::isEnabled($app)) { header( 'Location: '.OC_Helper::linkToAbsolute( '', 'index.php' )); exit(); } @@ -327,9 +327,9 @@ class OC_Util { * Check if the user is logged in, redirects to home if not. With * redirect URL parameter to the request URI. */ - public static function checkLoggedIn(){ + public static function checkLoggedIn() { // Check if we are a user - if( !OC_User::isLoggedIn()){ + if( !OC_User::isLoggedIn()) { header( 'Location: '.OC_Helper::linkToAbsolute( '', 'index.php', array('redirect_url' => urlencode($_SERVER["REQUEST_URI"])))); exit(); } @@ -338,10 +338,10 @@ class OC_Util { /** * Check if the user is a admin, redirects to home if not */ - public static function checkAdminUser(){ + public static function checkAdminUser() { // Check if we are a user self::checkLoggedIn(); - if( !OC_Group::inGroup( OC_User::getUser(), 'admin' )){ + if( !OC_Group::inGroup( OC_User::getUser(), 'admin' )) { header( 'Location: '.OC_Helper::linkToAbsolute( '', 'index.php' )); exit(); } @@ -351,13 +351,13 @@ class OC_Util { * Check if the user is a subadmin, redirects to home if not * @return array $groups where the current user is subadmin */ - public static function checkSubAdminUser(){ + public static function checkSubAdminUser() { // Check if we are a user self::checkLoggedIn(); - if(OC_Group::inGroup(OC_User::getUser(),'admin')){ + if(OC_Group::inGroup(OC_User::getUser(),'admin')) { return true; } - if(!OC_SubAdmin::isSubAdmin(OC_User::getUser())){ + if(!OC_SubAdmin::isSubAdmin(OC_User::getUser())) { header( 'Location: '.OC_Helper::linkToAbsolute( '', 'index.php' )); exit(); } @@ -367,7 +367,7 @@ class OC_Util { /** * Redirect to the user default page */ - public static function redirectToDefaultPage(){ + public static function redirectToDefaultPage() { if(isset($_REQUEST['redirect_url']) && (substr($_REQUEST['redirect_url'], 0, strlen(OC::$WEBROOT)) == OC::$WEBROOT || $_REQUEST['redirect_url'][0] == '/')) { $location = $_REQUEST['redirect_url']; } @@ -392,9 +392,9 @@ class OC_Util { * get an id unqiue for this instance * @return string */ - public static function getInstanceId(){ + public static function getInstanceId() { $id=OC_Config::getValue('instanceid',null); - if(is_null($id)){ + if(is_null($id)) { $id=uniqid(); OC_Config::setValue('instanceid',$id); } @@ -406,7 +406,7 @@ class OC_Util { * Todo: Write howto * @return $token Generated token. */ - public static function callRegister(){ + public static function callRegister() { //mamimum time before token exires $maxtime=(60*60); // 1 hour @@ -422,7 +422,7 @@ class OC_Util { foreach($_SESSION as $key=>$value) { // search all tokens in the session if(substr($key,0,12)=='requesttoken') { - if($value+$maxtime<time()){ + if($value+$maxtime<time()) { // remove outdated tokens unset($_SESSION[$key]); } @@ -438,14 +438,14 @@ class OC_Util { * @brief Check an ajax get/post call if the request token is valid. * @return boolean False if request token is not set or is invalid. */ - public static function isCallRegistered(){ + public static function isCallRegistered() { //mamimum time before token exires $maxtime=(60*60); // 1 hour if(isset($_GET['requesttoken'])) { $token=$_GET['requesttoken']; - }elseif(isset($_POST['requesttoken'])){ + }elseif(isset($_POST['requesttoken'])) { $token=$_POST['requesttoken']; - }elseif(isset($_SERVER['HTTP_REQUESTTOKEN'])){ + }elseif(isset($_SERVER['HTTP_REQUESTTOKEN'])) { $token=$_SERVER['HTTP_REQUESTTOKEN']; }else{ //no token found. @@ -453,7 +453,7 @@ class OC_Util { } if(isset($_SESSION['requesttoken-'.$token])) { $timestamp=$_SESSION['requesttoken-'.$token]; - if($timestamp+$maxtime<time()){ + if($timestamp+$maxtime<time()) { return false; }else{ //token valid @@ -468,7 +468,7 @@ class OC_Util { * @brief Check an ajax get/post call if the request token is valid. exit if not. * Todo: Write howto */ - public static function callCheck(){ + public static function callCheck() { if(!OC_Util::isCallRegistered()) { exit; } @@ -483,7 +483,7 @@ class OC_Util { * @param string or array of strings * @return array with sanitized strings or a single sanitized string, depends on the input parameter. */ - public static function sanitizeHTML( &$value ){ + public static function sanitizeHTML( &$value ) { if (is_array($value) || is_object($value)) array_walk_recursive($value,'OC_Util::sanitizeHTML'); else $value = htmlentities($value, ENT_QUOTES, 'UTF-8'); //Specify encoding for PHP<5.4 return $value; diff --git a/lib/vcategories.php b/lib/vcategories.php index 05dfe18db6f..f5123adeeb6 100644 --- a/lib/vcategories.php +++ b/lib/vcategories.php @@ -125,7 +125,7 @@ class OC_VCategories { * $result = $stmt->execute(); * $objects = array(); * if(!is_null($result)) { - * while( $row = $result->fetchRow()){ + * while( $row = $result->fetchRow()) { * $objects[] = $row['carddata']; * } * } @@ -183,7 +183,7 @@ class OC_VCategories { if(!is_null($objects)) { foreach($objects as $key=>&$value) { $vobject = OC_VObject::parse($value[1]); - if(!is_null($vobject)){ + if(!is_null($vobject)) { $categories = $vobject->getAsArray('CATEGORIES'); //OC_Log::write('core','OC_VCategories::delete, before: '.$key.': '.print_r($categories, true), OC_Log::DEBUG); foreach($names as $name) { diff --git a/lib/vobject.php b/lib/vobject.php index ec80e1d605a..b5a04b4bf65 100644 --- a/lib/vobject.php +++ b/lib/vobject.php @@ -30,7 +30,7 @@ class OC_VObject{ /** * @returns Sabre_VObject_Component */ - public function getVObject(){ + public function getVObject() { return $this->vobject; } @@ -39,11 +39,11 @@ class OC_VObject{ * @param string VObject as string * @returns Sabre_VObject or null */ - public static function parse($data){ + public static function parse($data) { try { Sabre_VObject_Property::$classMap['LAST-MODIFIED'] = 'Sabre_VObject_Property_DateTime'; $vobject = Sabre_VObject_Reader::read($data); - if ($vobject instanceof Sabre_VObject_Component){ + if ($vobject instanceof Sabre_VObject_Component) { $vobject = new OC_VObject($vobject); } return $vobject; @@ -58,8 +58,8 @@ class OC_VObject{ * @param string $value * @return string */ - public static function escapeSemicolons($value){ - foreach($value as &$i ){ + public static function escapeSemicolons($value) { + foreach($value as &$i ) { $i = implode("\\\\;", explode(';', $i)); } return implode(';',$value); @@ -70,11 +70,11 @@ class OC_VObject{ * @param string $value * @return array */ - public static function unescapeSemicolons($value){ + public static function unescapeSemicolons($value) { $array = explode(';',$value); - for($i=0;$i<count($array);$i++){ - if(substr($array[$i],-2,2)=="\\\\"){ - if(isset($array[$i+1])){ + for($i=0;$i<count($array);$i++) { + if(substr($array[$i],-2,2)=="\\\\") { + if(isset($array[$i+1])) { $array[$i] = substr($array[$i],0,count($array[$i])-2).';'.$array[$i+1]; unset($array[$i+1]); } @@ -91,16 +91,16 @@ class OC_VObject{ * Constuctor * @param Sabre_VObject_Component or string */ - public function __construct($vobject_or_name){ - if (is_object($vobject_or_name)){ + public function __construct($vobject_or_name) { + if (is_object($vobject_or_name)) { $this->vobject = $vobject_or_name; } else { $this->vobject = new Sabre_VObject_Component($vobject_or_name); } } - public function add($item, $itemValue = null){ - if ($item instanceof OC_VObject){ + public function add($item, $itemValue = null) { + if ($item instanceof OC_VObject) { $item = $item->getVObject(); } $this->vobject->add($item, $itemValue); @@ -113,12 +113,12 @@ class OC_VObject{ * @param object $parameters of property * @returns Sabre_VObject_Property newly created */ - public function addProperty($name, $value, $parameters=array()){ - if(is_array($value)){ + public function addProperty($name, $value, $parameters=array()) { + if(is_array($value)) { $value = OC_VObject::escapeSemicolons($value); } $property = new Sabre_VObject_Property( $name, $value ); - foreach($parameters as $name => $value){ + foreach($parameters as $name => $value) { $property->parameters[] = new Sabre_VObject_Parameter($name, $value); } @@ -126,13 +126,13 @@ class OC_VObject{ return $property; } - public function setUID(){ + public function setUID() { $uid = substr(md5(rand().time()),0,10); $this->vobject->add('UID',$uid); } - public function setString($name, $string){ - if ($string != ''){ + public function setString($name, $string) { + if ($string != '') { $string = strtr($string, array("\r\n"=>"\n")); $this->vobject->__set($name, $string); }else{ @@ -150,11 +150,11 @@ class OC_VObject{ * @param int $dateType * @return void */ - public function setDateTime($name, $datetime, $dateType=Sabre_VObject_Property_DateTime::LOCALTZ){ - if ($datetime == 'now'){ + public function setDateTime($name, $datetime, $dateType=Sabre_VObject_Property_DateTime::LOCALTZ) { + if ($datetime == 'now') { $datetime = new DateTime(); } - if ($datetime instanceof DateTime){ + if ($datetime instanceof DateTime) { $datetime_element = new Sabre_VObject_Property_DateTime($name); $datetime_element->setDateTime($datetime, $dateType); $this->vobject->__set($name, $datetime_element); @@ -163,45 +163,45 @@ class OC_VObject{ } } - public function getAsString($name){ + public function getAsString($name) { return $this->vobject->__isset($name) ? $this->vobject->__get($name)->value : ''; } - public function getAsArray($name){ + public function getAsArray($name) { $values = array(); - if ($this->vobject->__isset($name)){ + if ($this->vobject->__isset($name)) { $values = explode(',', $this->getAsString($name)); $values = array_map('trim', $values); } return $values; } - public function &__get($name){ - if ($name == 'children'){ + public function &__get($name) { + if ($name == 'children') { return $this->vobject->children; } $return = $this->vobject->__get($name); - if ($return instanceof Sabre_VObject_Component){ + if ($return instanceof Sabre_VObject_Component) { $return = new OC_VObject($return); } return $return; } - public function __set($name, $value){ + public function __set($name, $value) { return $this->vobject->__set($name, $value); } - public function __unset($name){ + public function __unset($name) { return $this->vobject->__unset($name); } - public function __isset($name){ + public function __isset($name) { return $this->vobject->__isset($name); } - public function __call($function,$arguments){ + public function __call($function,$arguments) { return call_user_func_array(array($this->vobject, $function), $arguments); } } diff --git a/search/ajax/search.php b/search/ajax/search.php index b524993d24f..41ee9ad5aba 100644 --- a/search/ajax/search.php +++ b/search/ajax/search.php @@ -29,7 +29,7 @@ require_once '../../lib/base.php'; OC_JSON::checkLoggedIn(); $query=(isset($_GET['query']))?$_GET['query']:''; -if($query){ +if($query) { $result=OC_Search::search($query); OC_JSON::encodedPrint($result); }else{ diff --git a/search/index.php b/search/index.php index 958065dc406..9c515ff3dd3 100644 --- a/search/index.php +++ b/search/index.php @@ -39,7 +39,7 @@ if($query) { } $resultTypes=array(); -foreach($results as $result){ +foreach($results as $result) { if(!isset($resultTypes[$result->type])) { $resultTypes[$result->type]=array(); } diff --git a/settings/admin.php b/settings/admin.php index 351c8a3fff1..a36f2190386 100755 --- a/settings/admin.php +++ b/settings/admin.php @@ -20,7 +20,7 @@ $htaccessworking=OC_Util::ishtaccessworking(); $entries=OC_Log_Owncloud::getEntries(3); $entriesremain=(count(OC_Log_Owncloud::getEntries(4)) > 3)?true:false; -function compareEntries($a,$b){ +function compareEntries($a,$b) { return $b->time - $a->time; } usort($entries, 'compareEntries'); @@ -35,7 +35,7 @@ $tmpl->assign('allowLinks', OC_Appconfig::getValue('core', 'shareapi_allow_links $tmpl->assign('allowResharing', OC_Appconfig::getValue('core', 'shareapi_allow_resharing', 'yes')); $tmpl->assign('sharePolicy', OC_Appconfig::getValue('core', 'shareapi_share_policy', 'global')); $tmpl->assign('forms',array()); -foreach($forms as $form){ +foreach($forms as $form) { $tmpl->append('forms',$form); } $tmpl->printPage(); diff --git a/settings/ajax/apps/ocs.php b/settings/ajax/apps/ocs.php index 1f3e3b3dfea..71cb046fc8d 100644 --- a/settings/ajax/apps/ocs.php +++ b/settings/ajax/apps/ocs.php @@ -32,10 +32,10 @@ if(is_array($catagoryNames)) { $page=0; $filter='approved'; $externalApps=OC_OCSClient::getApplications($categories, $page, $filter); - foreach($externalApps as $app){ + foreach($externalApps as $app) { // show only external apps that aren't enabled yet $local=false; - foreach($enabledApps as $a){ + foreach($enabledApps as $a) { if($a == $app['name']) { $local=true; } diff --git a/settings/ajax/createuser.php b/settings/ajax/createuser.php index 22320b870e8..bdf7e4983ac 100644 --- a/settings/ajax/createuser.php +++ b/settings/ajax/createuser.php @@ -21,7 +21,7 @@ if($isadmin) { }else{ if(isset( $_POST["groups"] )) { $groups = array(); - foreach($_POST["groups"] as $group){ + foreach($_POST["groups"] as $group) { if(OC_SubAdmin::isGroupAccessible(OC_User::getUser(), $group)) { $groups[] = $group; } @@ -45,7 +45,7 @@ if( in_array( $username, OC_User::getUsers())) { // Return Success story try { OC_User::createUser($username, $password); - foreach( $groups as $i ){ + foreach( $groups as $i ) { if(!OC_Group::groupExists($i)) { OC_Group::createGroup($i); } diff --git a/settings/ajax/togglesubadmins.php b/settings/ajax/togglesubadmins.php index 82bb6ac45f3..5f7126dca34 100644 --- a/settings/ajax/togglesubadmins.php +++ b/settings/ajax/togglesubadmins.php @@ -10,7 +10,7 @@ $username = $_POST["username"]; $group = OC_Util::sanitizeHTML($_POST["group"]); // Toggle group -if(OC_SubAdmin::isSubAdminofGroup($username, $group)){ +if(OC_SubAdmin::isSubAdminofGroup($username, $group)) { OC_SubAdmin::deleteSubAdmin($username, $group); }else{ OC_SubAdmin::createSubAdmin($username, $group); diff --git a/settings/apps.php b/settings/apps.php index 686972c3343..e613814fe94 100644 --- a/settings/apps.php +++ b/settings/apps.php @@ -57,7 +57,7 @@ foreach($registeredApps as $app) { } } -function app_sort($a, $b){ +function app_sort($a, $b) { if ($a['active'] != $b['active']) { return $b['active'] - $a['active']; } diff --git a/settings/personal.php b/settings/personal.php index 2fa8cd4f5e3..4f92985c797 100644 --- a/settings/personal.php +++ b/settings/personal.php @@ -41,11 +41,11 @@ array_unshift($languageCodes, $lang); $languageNames=include 'languageCodes.php'; $languages=array(); -foreach($languageCodes as $lang){ +foreach($languageCodes as $lang) { $l=OC_L10N::get('settings', $lang); if(substr($l->t('__language_name__'), 0, 1)!='_') {//first check if the language name is in the translation file $languages[]=array('code'=>$lang,'name'=>$l->t('__language_name__')); - }elseif(isset($languageNames[$lang])){ + }elseif(isset($languageNames[$lang])) { $languages[]=array('code'=>$lang,'name'=>$languageNames[$lang]); }else{//fallback to language code $languages[]=array('code'=>$lang,'name'=>$lang); @@ -62,7 +62,7 @@ $tmpl->assign('languages', $languages); $forms=OC_App::getForms('personal'); $tmpl->assign('forms', array()); -foreach($forms as $form){ +foreach($forms as $form) { $tmpl->append('forms', $form); } $tmpl->printPage(); diff --git a/settings/settings.php b/settings/settings.php index ae41fecaf9f..24099ef5742 100644 --- a/settings/settings.php +++ b/settings/settings.php @@ -14,7 +14,7 @@ OC_App::setActiveNavigationEntry( 'settings' ); $tmpl = new OC_Template( 'settings', 'settings', 'user'); $forms=OC_App::getForms('settings'); $tmpl->assign('forms', array()); -foreach($forms as $form){ +foreach($forms as $form) { $tmpl->append('forms', $form); } $tmpl->printPage(); diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 22e13571d0b..5fa9e26c9c7 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -23,17 +23,17 @@ if(!$_['htaccessworking']) { ?> -<?php foreach($_['forms'] as $form){ +<?php foreach($_['forms'] as $form) { echo $form; };?> <fieldset class="personalblock" id="backgroundjobs"> <legend><strong><?php echo $l->t('Cron');?></strong></legend> - <input type="radio" name="mode" value="ajax" id="backgroundjobs_ajax" <?php if( $_['backgroundjobs_mode'] == "ajax" ){ echo 'checked="checked"'; } ?>> + <input type="radio" name="mode" value="ajax" id="backgroundjobs_ajax" <?php if( $_['backgroundjobs_mode'] == "ajax" ) { echo 'checked="checked"'; } ?>> <label for="backgroundjobs_ajax" title="<?php echo $l->t("execute one task with each page loaded"); ?>">AJAX</label><br /> - <input type="radio" name="mode" value="webcron" id="backgroundjobs_webcron" <?php if( $_['backgroundjobs_mode'] == "webcron" ){ echo 'checked="checked"'; } ?>> + <input type="radio" name="mode" value="webcron" id="backgroundjobs_webcron" <?php if( $_['backgroundjobs_mode'] == "webcron" ) { echo 'checked="checked"'; } ?>> <label for="backgroundjobs_webcron" title="<?php echo $l->t("cron.php is registered at a webcron service"); ?>">Webcron</label><br /> - <input type="radio" name="mode" value="cron" id="backgroundjobs_cron" <?php if( $_['backgroundjobs_mode'] == "cron" ){ echo 'checked="checked"'; } ?>> + <input type="radio" name="mode" value="cron" id="backgroundjobs_cron" <?php if( $_['backgroundjobs_mode'] == "cron" ) { echo 'checked="checked"'; } ?>> <label for="backgroundjobs_cron" title="<?php echo $l->t("use systems cron service"); ?>">Cron</label><br /> </fieldset> diff --git a/settings/templates/personal.php b/settings/templates/personal.php index ee40120d724..4503f3d50b4 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -51,7 +51,7 @@ <em><?php echo $l->t('use this address to connect to your ownCloud in your file manager');?></em> </p> -<?php foreach($_['forms'] as $form){ +<?php foreach($_['forms'] as $form) { echo $form; };?> diff --git a/settings/templates/settings.php b/settings/templates/settings.php index 98acd541e36..12368a1cdb6 100644 --- a/settings/templates/settings.php +++ b/settings/templates/settings.php @@ -4,6 +4,6 @@ * See the COPYING-README file. */?> -<?php foreach($_['forms'] as $form){ +<?php foreach($_['forms'] as $form) { echo $form; };?> \ No newline at end of file diff --git a/settings/users.php b/settings/users.php index f176977ade1..e76505cc78d 100644 --- a/settings/users.php +++ b/settings/users.php @@ -29,7 +29,7 @@ if($isadmin) { $subadmins = false; } -foreach($accessibleusers as $i){ +foreach($accessibleusers as $i) { $users[] = array( "name" => $i, "groups" => join( ", ", /*array_intersect(*/OC_Group::getUserGroups($i)/*, OC_SubAdmin::getSubAdminsGroups(OC_User::getUser()))*/), @@ -37,13 +37,13 @@ foreach($accessibleusers as $i){ 'subadmin'=>implode(', ', OC_SubAdmin::getSubAdminsGroups($i))); } -foreach( $accessiblegroups as $i ){ +foreach( $accessiblegroups as $i ) { // Do some more work here soon $groups[] = array( "name" => $i ); } $quotaPreset=OC_Appconfig::getValue('files', 'quota_preset', 'default,none,1 GB, 5 GB, 10 GB'); $quotaPreset=explode(',',$quotaPreset); -foreach($quotaPreset as &$preset){ +foreach($quotaPreset as &$preset) { $preset=trim($preset); } diff --git a/tests/index.php b/tests/index.php index 032689970fa..82a61c281fd 100644 --- a/tests/index.php +++ b/tests/index.php @@ -31,14 +31,14 @@ require_once 'simpletest/default_reporter.php'; $testSuiteName="ownCloud Unit Test Suite"; // prepare the reporter -if(OC::$CLI){ +if(OC::$CLI) { $reporter=new TextReporter; $test=isset($_SERVER['argv'][1])?$_SERVER['argv'][1]:false; - if($test=='xml'){ + if($test=='xml') { $reporter= new XmlReporter; $test=false; - if(isset($_SERVER['argv'][2])){ + if(isset($_SERVER['argv'][2])) { $testSuiteName=$testSuiteName." (".$_SERVER['argv'][2].")"; } } @@ -60,30 +60,30 @@ loadTests(dirname(__FILE__), $testSuite, $test, 'lib'); // $apps=OC_App::getEnabledApps(); -foreach($apps as $app){ +foreach($apps as $app) { $testDir=OC_App::getAppPath($app).'/tests'; - if(is_dir($testDir)){ + if(is_dir($testDir)) { loadTests($testDir, $testSuite, $test, $app); } } // run the suite -if($testSuite->getSize()>0){ +if($testSuite->getSize()>0) { $testSuite->run($reporter); } // helper below -function loadTests($dir,$testSuite, $test, $app){ +function loadTests($dir,$testSuite, $test, $app) { $root=($app=='lib')?OC::$SERVERROOT.'/tests/lib/':OC_App::getAppPath($app).'/tests/'; - if($dh=opendir($dir)){ - while($name=readdir($dh)){ - if($name[0]!='.'){//no hidden files, '.' or '..' + if($dh=opendir($dir)) { + while($name=readdir($dh)) { + if($name[0]!='.') {//no hidden files, '.' or '..' $file=$dir.'/'.$name; - if(is_dir($file)){ + if(is_dir($file)) { loadTests($file, $testSuite, $test, $app); - }elseif(substr($file,-4)=='.php' and $file!=__FILE__){ + }elseif(substr($file,-4)=='.php' and $file!=__FILE__) { $name=$app.'/'.getTestName($file,$root); - if($test===false or $test==$name or substr($name,0,strlen($test))==$test){ + if($test===false or $test==$name or substr($name,0,strlen($test))==$test) { $extractor = new SimpleFileLoader(); $loadedSuite=$extractor->load($file); if ($loadedSuite->getSize() > 0) @@ -95,7 +95,7 @@ function loadTests($dir,$testSuite, $test, $app){ } } -function getTestName($file,$root){ +function getTestName($file,$root) { // //TODO: get better test names $file=substr($file,strlen($root)); return substr($file,0,-4);//strip .php diff --git a/tests/lib/archive.php b/tests/lib/archive.php index 1711be58e01..565c314cb8c 100644 --- a/tests/lib/archive.php +++ b/tests/lib/archive.php @@ -23,12 +23,12 @@ abstract class Test_Archive extends UnitTestCase { */ abstract protected function getNew(); - public function testGetFiles(){ + public function testGetFiles() { $this->instance=$this->getExisting(); $allFiles=$this->instance->getFiles(); $expected=array('lorem.txt','logo-wide.png','dir/','dir/lorem.txt'); $this->assertEqual(4,count($allFiles),'only found '.count($allFiles).' out of 4 expected files'); - foreach($expected as $file){ + foreach($expected as $file) { $this->assertNotIdentical(false,array_search($file,$allFiles),'cant find '.$file.' in archive'); $this->assertTrue($this->instance->fileExists($file),'file '.$file.' does not exist in archive'); } @@ -37,19 +37,19 @@ abstract class Test_Archive extends UnitTestCase { $rootContent=$this->instance->getFolder(''); $expected=array('lorem.txt','logo-wide.png','dir/'); $this->assertEqual(3,count($rootContent)); - foreach($expected as $file){ + foreach($expected as $file) { $this->assertNotIdentical(false,array_search($file,$rootContent),'cant find '.$file.' in archive'); } $dirContent=$this->instance->getFolder('dir/'); $expected=array('lorem.txt'); $this->assertEqual(1,count($dirContent)); - foreach($expected as $file){ + foreach($expected as $file) { $this->assertNotIdentical(false,array_search($file,$dirContent),'cant find '.$file.' in archive'); } } - public function testContent(){ + public function testContent() { $this->instance=$this->getExisting(); $dir=OC::$SERVERROOT.'/apps/files_archive/tests/data'; $textFile=$dir.'/lorem.txt'; @@ -60,7 +60,7 @@ abstract class Test_Archive extends UnitTestCase { $this->assertEqual(file_get_contents($textFile),file_get_contents($tmpFile)); } - public function testWrite(){ + public function testWrite() { $dir=OC::$SERVERROOT.'/apps/files_archive/tests/data'; $textFile=$dir.'/lorem.txt'; $this->instance=$this->getNew(); @@ -75,7 +75,7 @@ abstract class Test_Archive extends UnitTestCase { $this->assertEqual('foobar',$this->instance->getFile('lorem.txt')); } - public function testReadStream(){ + public function testReadStream() { $dir=OC::$SERVERROOT.'/apps/files_archive/tests/data'; $this->instance=$this->getExisting(); $fh=$this->instance->getStream('lorem.txt','r'); @@ -84,7 +84,7 @@ abstract class Test_Archive extends UnitTestCase { fclose($fh); $this->assertEqual(file_get_contents($dir.'/lorem.txt'),$content); } - public function testWriteStream(){ + public function testWriteStream() { $dir=OC::$SERVERROOT.'/apps/files_archive/tests/data'; $this->instance=$this->getNew(); $fh=$this->instance->getStream('lorem.txt','w'); @@ -95,7 +95,7 @@ abstract class Test_Archive extends UnitTestCase { $this->assertTrue($this->instance->fileExists('lorem.txt')); $this->assertEqual(file_get_contents($dir.'/lorem.txt'),$this->instance->getFile('lorem.txt')); } - public function testFolder(){ + public function testFolder() { $this->instance=$this->getNew(); $this->assertFalse($this->instance->fileExists('/test')); $this->assertFalse($this->instance->fileExists('/test/')); @@ -106,7 +106,7 @@ abstract class Test_Archive extends UnitTestCase { $this->assertFalse($this->instance->fileExists('/test')); $this->assertFalse($this->instance->fileExists('/test/')); } - public function testExtract(){ + public function testExtract() { $dir=OC::$SERVERROOT.'/apps/files_archive/tests/data'; $this->instance=$this->getExisting(); $tmpDir=OCP\Files::tmpFolder(); @@ -117,7 +117,7 @@ abstract class Test_Archive extends UnitTestCase { $this->assertEqual(file_get_contents($dir.'/lorem.txt'),file_get_contents($tmpDir.'lorem.txt')); OCP\Files::rmdirr($tmpDir); } - public function testMoveRemove(){ + public function testMoveRemove() { $dir=OC::$SERVERROOT.'/apps/files_archive/tests/data'; $textFile=$dir.'/lorem.txt'; $this->instance=$this->getNew(); @@ -130,7 +130,7 @@ abstract class Test_Archive extends UnitTestCase { $this->instance->remove('target.txt'); $this->assertFalse($this->instance->fileExists('target.txt')); } - public function testRecursive(){ + public function testRecursive() { $dir=OC::$SERVERROOT.'/apps/files_archive/tests/data'; $this->instance=$this->getNew(); $this->instance->addRecursive('/dir',$dir); diff --git a/tests/lib/archive/tar.php b/tests/lib/archive/tar.php index 22481f1a54a..2595b7cb195 100644 --- a/tests/lib/archive/tar.php +++ b/tests/lib/archive/tar.php @@ -8,14 +8,14 @@ require_once 'archive.php'; -if(is_dir(OC::$SERVERROOT.'/apps/files_archive/tests/data')){ +if(is_dir(OC::$SERVERROOT.'/apps/files_archive/tests/data')) { class Test_Archive_TAR extends Test_Archive{ - protected function getExisting(){ + protected function getExisting() { $dir=OC::$SERVERROOT.'/apps/files_archive/tests/data'; return new OC_Archive_TAR($dir.'/data.tar.gz'); } - protected function getNew(){ + protected function getNew() { return new OC_Archive_TAR(OCP\Files::tmpFile('.tar.gz')); } } diff --git a/tests/lib/archive/zip.php b/tests/lib/archive/zip.php index b61d8aeac2c..a7682e34180 100644 --- a/tests/lib/archive/zip.php +++ b/tests/lib/archive/zip.php @@ -8,14 +8,14 @@ require_once 'archive.php'; -if(is_dir(OC::$SERVERROOT.'/apps/files_archive/tests/data')){ +if(is_dir(OC::$SERVERROOT.'/apps/files_archive/tests/data')) { class Test_Archive_ZIP extends Test_Archive{ - protected function getExisting(){ + protected function getExisting() { $dir=OC::$SERVERROOT.'/apps/files_archive/tests/data'; return new OC_Archive_ZIP($dir.'/data.zip'); } - protected function getNew(){ + protected function getNew() { return new OC_Archive_ZIP(OCP\Files::tmpFile('.zip')); } } diff --git a/tests/lib/cache.php b/tests/lib/cache.php index 511999be956..9ada0accc21 100644 --- a/tests/lib/cache.php +++ b/tests/lib/cache.php @@ -12,11 +12,11 @@ abstract class Test_Cache extends UnitTestCase { */ protected $instance; - public function tearDown(){ + public function tearDown() { $this->instance->clear(); } - function testSimple(){ + function testSimple() { $this->assertNull($this->instance->get('value1')); $this->assertFalse($this->instance->hasKey('value1')); @@ -45,7 +45,7 @@ abstract class Test_Cache extends UnitTestCase { $this->assertFalse($this->instance->hasKey('value1')); } - function testClear(){ + function testClear() { $value='ipsum lorum'; $this->instance->set('1_value1',$value); $this->instance->set('1_value2',$value); @@ -65,7 +65,7 @@ abstract class Test_Cache extends UnitTestCase { $this->assertFalse($this->instance->hasKey('3_value1')); } - function testTTL(){ + function testTTL() { $value='foobar'; $this->instance->set('value1',$value,1); $value2='foobar'; diff --git a/tests/lib/cache/apc.php b/tests/lib/cache/apc.php index ab8eb188664..34ea968cd54 100644 --- a/tests/lib/cache/apc.php +++ b/tests/lib/cache/apc.php @@ -25,11 +25,11 @@ class Test_Cache_APC extends Test_Cache { $this->skipUnless(function_exists('apc_store')); } - public function setUp(){ + public function setUp() { $this->instance=new OC_Cache_APC(); } - function testTTL(){ + function testTTL() { // ttl doesn't work correctly in the same request // see https://bugs.php.net/bug.php?id=58084 } diff --git a/tests/lib/cache/file.php b/tests/lib/cache/file.php index 28778efb68c..00be005d08d 100644 --- a/tests/lib/cache/file.php +++ b/tests/lib/cache/file.php @@ -27,13 +27,13 @@ class Test_Cache_File extends Test_Cache { //$this->skipUnless(OC_User::isLoggedIn()); } - public function setUp(){ + public function setUp() { //clear all proxies and hooks so we can do clean testing OC_FileProxy::clearProxies(); OC_Hook::clear('OC_Filesystem'); //enable only the encryption hook if needed - if(OC_App::isEnabled('files_encryption')){ + if(OC_App::isEnabled('files_encryption')) { OC_FileProxy::register(new OC_FileProxy_Encryption()); } @@ -57,7 +57,7 @@ class Test_Cache_File extends Test_Cache { $this->instance=new OC_Cache_File(); } - public function tearDown(){ + public function tearDown() { OC_User::setUserId($this->user); } } diff --git a/tests/lib/cache/xcache.php b/tests/lib/cache/xcache.php index cc2077076ce..85cc2d8b3c6 100644 --- a/tests/lib/cache/xcache.php +++ b/tests/lib/cache/xcache.php @@ -25,11 +25,11 @@ class Test_Cache_XCache extends Test_Cache { $this->skipUnless(function_exists('xcache_get')); } - public function setUp(){ + public function setUp() { $this->instance=new OC_Cache_XCache(); } - function testTTL(){ + function testTTL() { // ttl doesn't work correctly in the same request } } diff --git a/tests/lib/filestorage.php b/tests/lib/filestorage.php index 0a8715600d5..3f7bb7b62dc 100644 --- a/tests/lib/filestorage.php +++ b/tests/lib/filestorage.php @@ -29,7 +29,7 @@ abstract class Test_FileStorage extends UnitTestCase { /** * the root folder of the storage should always exist, be readable and be recognized as a directory */ - public function testRoot(){ + public function testRoot() { $this->assertTrue($this->instance->file_exists('/'),'Root folder does not exist'); $this->assertTrue($this->instance->isReadable('/'),'Root folder is not readable'); $this->assertTrue($this->instance->is_dir('/'),'Root folder is not a directory'); @@ -40,7 +40,7 @@ abstract class Test_FileStorage extends UnitTestCase { $this->assertTrue($this->instance->isUpdatable('/'),'Root folder is not writable'); } - public function testDirectories(){ + public function testDirectories() { $this->assertFalse($this->instance->file_exists('/folder')); $this->assertTrue($this->instance->mkdir('/folder')); @@ -55,8 +55,8 @@ abstract class Test_FileStorage extends UnitTestCase { $dh=$this->instance->opendir('/'); $content=array(); - while($file=readdir($dh)){ - if($file!='.' and $file!='..'){ + while($file=readdir($dh)) { + if($file!='.' and $file!='..') { $content[]=$file; } } @@ -71,8 +71,8 @@ abstract class Test_FileStorage extends UnitTestCase { $dh=$this->instance->opendir('/'); $content=array(); - while($file=readdir($dh)){ - if($file!='.' and $file!='..'){ + while($file=readdir($dh)) { + if($file!='.' and $file!='..') { $content[]=$file; } } @@ -82,7 +82,7 @@ abstract class Test_FileStorage extends UnitTestCase { /** * test the various uses of file_get_contents and file_put_contents */ - public function testGetPutContents(){ + public function testGetPutContents() { $sourceFile=OC::$SERVERROOT.'/tests/data/lorem.txt'; $sourceText=file_get_contents($sourceFile); @@ -99,7 +99,7 @@ abstract class Test_FileStorage extends UnitTestCase { /** * test various known mimetypes */ - public function testMimeType(){ + public function testMimeType() { $this->assertEqual('httpd/unix-directory',$this->instance->getMimeType('/')); $this->assertEqual(false,$this->instance->getMimeType('/non/existing/file')); @@ -116,7 +116,7 @@ abstract class Test_FileStorage extends UnitTestCase { $this->assertEqual('image/svg+xml',$this->instance->getMimeType('/logo-wide.svg')); } - public function testCopyAndMove(){ + public function testCopyAndMove() { $textFile=OC::$SERVERROOT.'/tests/data/lorem.txt'; $this->instance->file_put_contents('/source.txt',file_get_contents($textFile)); $this->instance->copy('/source.txt','/target.txt'); @@ -129,7 +129,7 @@ abstract class Test_FileStorage extends UnitTestCase { $this->assertEqual(file_get_contents($textFile),$this->instance->file_get_contents('/target.txt')); } - public function testLocal(){ + public function testLocal() { $textFile=OC::$SERVERROOT.'/tests/data/lorem.txt'; $this->instance->file_put_contents('/lorem.txt',file_get_contents($textFile)); $localFile=$this->instance->getLocalFile('/lorem.txt'); @@ -150,7 +150,7 @@ abstract class Test_FileStorage extends UnitTestCase { $this->assertEqual(file_get_contents($localFolder.'/recursive/file.txt'),'foo'); } - public function testStat(){ + public function testStat() { $textFile=OC::$SERVERROOT.'/tests/data/lorem.txt'; $ctimeStart=time(); $this->instance->file_put_contents('/lorem.txt',file_get_contents($textFile)); @@ -158,7 +158,7 @@ abstract class Test_FileStorage extends UnitTestCase { $ctimeEnd=time(); $cTime=$this->instance->filectime('/lorem.txt'); $mTime=$this->instance->filemtime('/lorem.txt'); - if($cTime!=-1){//not everything can support ctime + if($cTime!=-1) {//not everything can support ctime $this->assertTrue(($ctimeStart-1)<=$cTime); $this->assertTrue($cTime<=($ctimeEnd+1)); } @@ -187,7 +187,7 @@ abstract class Test_FileStorage extends UnitTestCase { $this->assertTrue($this->instance->hasUpdated('/lorem.txt',$mtimeStart-1)); - if($this->instance->touch('/lorem.txt',100)!==false){ + if($this->instance->touch('/lorem.txt',100)!==false) { $mTime=$this->instance->filemtime('/lorem.txt'); $this->assertEqual($mTime,100); } @@ -207,7 +207,7 @@ abstract class Test_FileStorage extends UnitTestCase { $this->assertTrue($this->instance->hasUpdated('/',$mtimeStart-1)); } - public function testSearch(){ + public function testSearch() { $textFile=OC::$SERVERROOT.'/tests/data/lorem.txt'; $this->instance->file_put_contents('/lorem.txt',file_get_contents($textFile,'r')); $pngFile=OC::$SERVERROOT.'/tests/data/logo-wide.png'; diff --git a/tests/lib/filestorage/commontest.php b/tests/lib/filestorage/commontest.php index ab5375ec2b0..89e83589e5d 100644 --- a/tests/lib/filestorage/commontest.php +++ b/tests/lib/filestorage/commontest.php @@ -25,15 +25,15 @@ class Test_Filestorage_CommonTest extends Test_FileStorage { * @var string tmpDir */ private $tmpDir; - public function setUp(){ + public function setUp() { $this->tmpDir=get_temp_dir().'/filestoragecommon'; - if(!file_exists($this->tmpDir)){ + if(!file_exists($this->tmpDir)) { mkdir($this->tmpDir); } $this->instance=new OC_Filestorage_CommonTest(array('datadir'=>$this->tmpDir)); } - public function tearDown(){ + public function tearDown() { OC_Helper::rmdirr($this->tmpDir); } } diff --git a/tests/lib/filestorage/local.php b/tests/lib/filestorage/local.php index 692f05f9fca..f68fb69b97f 100644 --- a/tests/lib/filestorage/local.php +++ b/tests/lib/filestorage/local.php @@ -25,12 +25,12 @@ class Test_Filestorage_Local extends Test_FileStorage { * @var string tmpDir */ private $tmpDir; - public function setUp(){ + public function setUp() { $this->tmpDir=OC_Helper::tmpFolder(); $this->instance=new OC_Filestorage_Local(array('datadir'=>$this->tmpDir)); } - public function tearDown(){ + public function tearDown() { OC_Helper::rmdirr($this->tmpDir); } } diff --git a/tests/lib/filesystem.php b/tests/lib/filesystem.php index 72af0835788..1cfa35e305d 100644 --- a/tests/lib/filesystem.php +++ b/tests/lib/filesystem.php @@ -29,23 +29,23 @@ class Test_Filesystem extends UnitTestCase{ /** * @return array */ - private function getStorageData(){ + private function getStorageData() { $dir=OC_Helper::tmpFolder(); $this->tmpDirs[]=$dir; return array('datadir'=>$dir); } - public function tearDown(){ - foreach($this->tmpDirs as $dir){ + public function tearDown() { + foreach($this->tmpDirs as $dir) { OC_Helper::rmdirr($dir); } } - public function setUp(){ + public function setUp() { OC_Filesystem::clearMounts(); } - public function testMount(){ + public function testMount() { OC_Filesystem::mount('OC_Filestorage_Local',self::getStorageData(),'/'); $this->assertEqual('/',OC_Filesystem::getMountPoint('/')); $this->assertEqual('/',OC_Filesystem::getMountPoint('/some/folder')); @@ -60,14 +60,14 @@ class Test_Filesystem extends UnitTestCase{ $this->assertEqual('folder',OC_Filesystem::getInternalPath('/some/folder')); } - public function testNormalize(){ + public function testNormalize() { $this->assertEqual('/path',OC_Filesystem::normalizePath('/path/')); $this->assertEqual('/path/',OC_Filesystem::normalizePath('/path/',false)); $this->assertEqual('/path',OC_Filesystem::normalizePath('path')); $this->assertEqual('/path',OC_Filesystem::normalizePath('\path')); $this->assertEqual('/foo/bar',OC_Filesystem::normalizePath('/foo//bar/')); $this->assertEqual('/foo/bar',OC_Filesystem::normalizePath('/foo////bar')); - if(class_exists('Normalizer')){ + if(class_exists('Normalizer')) { $this->assertEqual("/foo/bar\xC3\xBC",OC_Filesystem::normalizePath("/foo/baru\xCC\x88")); } } diff --git a/tests/lib/group.php b/tests/lib/group.php index 922613211bc..0bea9a00886 100644 --- a/tests/lib/group.php +++ b/tests/lib/group.php @@ -21,11 +21,11 @@ */ class Test_Group extends UnitTestCase { - function setUp(){ + function setUp() { OC_Group::clearBackends(); } - function testSingleBackend(){ + function testSingleBackend() { OC_Group::useBackend(new OC_Group_Dummy()); $group1=uniqid(); @@ -62,7 +62,7 @@ class Test_Group extends UnitTestCase { $this->assertFalse(OC_Group::inGroup($user1,$group1)); } - function testMultiBackend(){ + function testMultiBackend() { $backend1=new OC_Group_Dummy(); $backend2=new OC_Group_Dummy(); OC_Group::useBackend($backend1); diff --git a/tests/lib/group/backend.php b/tests/lib/group/backend.php index 9405e90aabf..61e008b6ca5 100644 --- a/tests/lib/group/backend.php +++ b/tests/lib/group/backend.php @@ -31,7 +31,7 @@ abstract class Test_Group_Backend extends UnitTestCase { * test cases can override this in order to clean up created groups * @return array */ - public function getGroupName(){ + public function getGroupName() { return uniqid('test_'); } @@ -40,11 +40,11 @@ abstract class Test_Group_Backend extends UnitTestCase { * test cases can override this in order to clean up created user * @return array */ - public function getUserName(){ + public function getUserName() { return uniqid('test_'); } - public function testAddRemove(){ + public function testAddRemove() { //get the number of groups we start with, in case there are exising groups $startCount=count($this->backend->getGroups()); @@ -68,7 +68,7 @@ abstract class Test_Group_Backend extends UnitTestCase { $this->assertFalse((array_search($name2,$this->backend->getGroups())!==false)); } - public function testUser(){ + public function testUser() { $group1=$this->getGroupName(); $group2=$this->getGroupName(); $this->backend->createGroup($group1); diff --git a/tests/lib/group/database.php b/tests/lib/group/database.php index fb51bc8d8d9..5278c26f4df 100644 --- a/tests/lib/group/database.php +++ b/tests/lib/group/database.php @@ -28,7 +28,7 @@ class Test_Group_Database extends Test_Group_Backend { * test cases can override this in order to clean up created groups * @return array */ - public function getGroupName(){ + public function getGroupName() { $name=uniqid('test_'); $this->groups[]=$name; return $name; @@ -39,16 +39,16 @@ class Test_Group_Database extends Test_Group_Backend { * test cases can override this in order to clean up created user * @return array */ - public function getUserName(){ + public function getUserName() { return uniqid('test_'); } - public function setUp(){ + public function setUp() { $this->backend=new OC_Group_Database(); } - public function tearDown(){ - foreach($this->groups as $group){ + public function tearDown() { + foreach($this->groups as $group) { $this->backend->deleteGroup($group); } } diff --git a/tests/lib/group/dummy.php b/tests/lib/group/dummy.php index d0b475d3ec5..287d6f1a977 100644 --- a/tests/lib/group/dummy.php +++ b/tests/lib/group/dummy.php @@ -21,7 +21,7 @@ */ class Test_Group_Dummy extends Test_Group_Backend { - public function setUp(){ + public function setUp() { $this->backend=new OC_Group_Dummy(); } } diff --git a/tests/lib/streamwrappers.php b/tests/lib/streamwrappers.php index 17a92c6658c..5d6fe8da826 100644 --- a/tests/lib/streamwrappers.php +++ b/tests/lib/streamwrappers.php @@ -21,19 +21,19 @@ */ class Test_StreamWrappers extends UnitTestCase { - public function testFakeDir(){ + public function testFakeDir() { $items=array('foo','bar'); OC_FakeDirStream::$dirs['test']=$items; $dh=opendir('fakedir://test'); $result=array(); - while($file=readdir($dh)){ + while($file=readdir($dh)) { $result[]=$file; $this->assertNotIdentical(false,array_search($file,$items)); } $this->assertEqual(count($items),count($result)); } - public function testStaticStream(){ + public function testStaticStream() { $sourceFile=OC::$SERVERROOT.'/tests/data/lorem.txt'; $staticFile='static://test'; $this->assertFalse(file_exists($staticFile)); @@ -45,7 +45,7 @@ class Test_StreamWrappers extends UnitTestCase { $this->assertFalse(file_exists($staticFile)); } - public function testCloseStream(){ + public function testCloseStream() { //ensure all basic stream stuff works $sourceFile=OC::$SERVERROOT.'/tests/data/lorem.txt'; $tmpFile=OC_Helper::TmpFile('.txt'); @@ -66,13 +66,13 @@ class Test_StreamWrappers extends UnitTestCase { try{ fclose($fh); $this->fail('Expected exception'); - }catch(Exception $e){ + }catch(Exception $e) { $path=$e->getMessage(); $this->assertEqual($path,$tmpFile); } } - public static function closeCallBack($path){ + public static function closeCallBack($path) { throw new Exception($path); } } \ No newline at end of file diff --git a/tests/lib/user/backend.php b/tests/lib/user/backend.php index 984249e84eb..c69c1bad512 100644 --- a/tests/lib/user/backend.php +++ b/tests/lib/user/backend.php @@ -41,11 +41,11 @@ abstract class Test_User_Backend extends UnitTestCase { * test cases can override this in order to clean up created user * @return array */ - public function getUser(){ + public function getUser() { return uniqid('test_'); } - public function testAddRemove(){ + public function testAddRemove() { //get the number of groups we start with, in case there are exising groups $startCount=count($this->backend->getUsers()); @@ -69,7 +69,7 @@ abstract class Test_User_Backend extends UnitTestCase { $this->assertFalse((array_search($name2,$this->backend->getUsers())!==false)); } - public function testLogin(){ + public function testLogin() { $name1=$this->getUser(); $name2=$this->getUser(); diff --git a/tests/lib/user/database.php b/tests/lib/user/database.php index f484ffa78f7..fe7d87c44de 100644 --- a/tests/lib/user/database.php +++ b/tests/lib/user/database.php @@ -26,18 +26,18 @@ class Test_User_Database extends Test_User_Backend { * test cases can override this in order to clean up created user * @return array */ - public function getUser(){ + public function getUser() { $user=uniqid('test_'); $this->users[]=$user; return $user; } - public function setUp(){ + public function setUp() { $this->backend=new OC_User_Dummy(); } - public function tearDown(){ - foreach($this->users as $user){ + public function tearDown() { + foreach($this->users as $user) { $this->backend->deleteUser($user); } } diff --git a/tests/lib/user/dummy.php b/tests/lib/user/dummy.php index 062f55ba079..e417fd97603 100644 --- a/tests/lib/user/dummy.php +++ b/tests/lib/user/dummy.php @@ -21,7 +21,7 @@ */ class Test_User_Dummy extends Test_User_Backend { - public function setUp(){ + public function setUp() { $this->backend=new OC_User_Dummy(); } } -- cgit v1.2.3