diff options
author | Brice Maron <brice@bmaron.net> | 2012-09-05 16:16:36 +0000 |
---|---|---|
committer | Brice Maron <brice@bmaron.net> | 2012-09-05 16:16:36 +0000 |
commit | 5fc4c78106775ac717ffa64aaab7ae8b10cea3d0 (patch) | |
tree | fd7ca63e8392edfee7cc07f37c7d7b4ef7b499e2 | |
parent | a928b4cd6671aeeb4ad4488e814c1c4a6475b145 (diff) | |
parent | e2ead7db86f5d2a784b15f0ce2835e8e45fd21fa (diff) | |
download | nextcloud-server-5fc4c78106775ac717ffa64aaab7ae8b10cea3d0.tar.gz nextcloud-server-5fc4c78106775ac717ffa64aaab7ae8b10cea3d0.zip |
Merge branch 'master' of git://github.com/owncloud/core
191 files changed, 1715 insertions, 1063 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 85e5cfb14c2..ce215cb8431 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -3,7 +3,7 @@ var FileList={ update:function(fileListHtml) { $('#fileList').empty().html(fileListHtml); }, - addFile:function(name,size,lastModified,loading){ + addFile:function(name,size,lastModified,loading,hidden){ var img=(loading)?OC.imagePath('core', 'loading.gif'):OC.imagePath('core', 'filetypes/file.png'); var html='<tr data-type="file" data-size="'+size+'">'; if(name.indexOf('.')!=-1){ @@ -36,8 +36,11 @@ var FileList={ }else{ $('tr').filterAttr('data-file',name).find('td.filename').draggable(dragOptions); } + if (hidden) { + $('tr').filterAttr('data-file', name).hide(); + } }, - addDir:function(name,size,lastModified){ + addDir:function(name,size,lastModified,hidden){ html = $('<tr></tr>').attr({ "data-type": "dir", "data-size": size, "data-file": name}); td = $('<td></td>').attr({"class": "filename", "style": 'background-image:url('+OC.imagePath('core', 'filetypes/folder.png')+')' }); td.append('<input type="checkbox" />'); @@ -63,6 +66,9 @@ var FileList={ FileList.insertElement(name,'dir',html); $('tr').filterAttr('data-file',name).find('td.filename').draggable(dragOptions); $('tr').filterAttr('data-file',name).find('td.filename').droppable(folderDropOptions); + if (hidden) { + $('tr').filterAttr('data-file', name).hide(); + } }, refresh:function(data) { result = jQuery.parseJSON(data.responseText); @@ -82,7 +88,7 @@ var FileList={ }, insertElement:function(name,type,element){ //find the correct spot to insert the file or folder - var fileElements=$('tr[data-file][data-type="'+type+'"]'); + var fileElements=$('tr[data-file][data-type="'+type+'"]:visible'); var pos; if(name.localeCompare($(fileElements[0]).attr('data-file'))<0){ pos=-1; @@ -137,11 +143,7 @@ var FileList={ event.preventDefault(); var newname=input.val(); if (newname != name) { - if ($('tr').filterAttr('data-file', newname).length > 0) { - $('#notification').html(newname+' '+t('files', 'already exists')+'<span class="replace">'+t('files', 'replace')+'</span><span class="cancel">'+t('files', 'cancel')+'</span>'); - $('#notification').data('oldName', name); - $('#notification').data('newName', newname); - $('#notification').fadeIn(); + if (FileList.checkName(name, newname, false)) { newname = name; } else { $.get(OC.filePath('files','ajax','rename.php'), { dir : $('#dir').val(), newname: newname, file: name },function(result) { @@ -151,7 +153,6 @@ var FileList={ } }); } - } tr.attr('data-file', newname); var path = td.children('a.name').attr('href'); @@ -179,20 +180,62 @@ var FileList={ form.trigger('submit'); }); }, - replace:function(oldName, newName) { + checkName:function(oldName, newName, isNewFile) { + if (isNewFile || $('tr').filterAttr('data-file', newName).length > 0) { + if (isNewFile) { + $('#notification').html(newName+' '+t('files', 'already exists')+'<span class="replace">'+t('files', 'replace')+'</span><span class="suggest">'+t('files', 'suggest name')+'</span><span class="cancel">'+t('files', 'cancel')+'</span>'); + } else { + $('#notification').html(newName+' '+t('files', 'already exists')+'<span class="replace">'+t('files', 'replace')+'</span><span class="cancel">'+t('files', 'cancel')+'</span>'); + } + $('#notification').data('oldName', oldName); + $('#notification').data('newName', newName); + $('#notification').data('isNewFile', isNewFile); + $('#notification').fadeIn(); + return true; + } else { + return false; + } + }, + replace:function(oldName, newName, isNewFile) { // Finish any existing actions if (FileList.lastAction || !FileList.useUndo) { FileList.lastAction(); } - var tr = $('tr').filterAttr('data-file', oldName); - tr.hide(); + $('tr').filterAttr('data-file', oldName).hide(); + $('tr').filterAttr('data-file', newName).hide(); + var tr = $('tr').filterAttr('data-file', oldName).clone(); + tr.attr('data-replace', 'true'); + tr.attr('data-file', newName); + var td = tr.children('td.filename'); + td.children('a.name .span').text(newName); + var path = td.children('a.name').attr('href'); + td.children('a.name').attr('href', path.replace(encodeURIComponent(oldName), encodeURIComponent(newName))); + if (newName.indexOf('.') > 0) { + var basename = newName.substr(0, newName.lastIndexOf('.')); + } else { + var basename = newName; + } + td.children('a.name').empty(); + var span = $('<span class="nametext"></span>'); + span.text(basename); + td.children('a.name').append(span); + if (newName.indexOf('.') > 0) { + span.append($('<span class="extension">'+newName.substr(newName.lastIndexOf('.'))+'</span>')); + } + FileList.insertElement(newName, tr.data('type'), tr); + tr.show(); FileList.replaceCanceled = false; FileList.replaceOldName = oldName; FileList.replaceNewName = newName; + FileList.replaceIsNewFile = isNewFile; FileList.lastAction = function() { FileList.finishReplace(); }; - $('#notification').html(t('files', 'replaced')+' '+newName+' '+t('files', 'with')+' '+oldName+'<span class="undo">'+t('files', 'undo')+'</span>'); + if (isNewFile) { + $('#notification').html(t('files', 'replaced')+' '+newName+'<span class="undo">'+t('files', 'undo')+'</span>'); + } else { + $('#notification').html(t('files', 'replaced')+' '+newName+' '+t('files', 'with')+' '+oldName+'<span class="undo">'+t('files', 'undo')+'</span>'); + } $('#notification').fadeIn(); }, finishReplace:function() { @@ -203,25 +246,7 @@ var FileList={ FileList.finishDelete(function() { $.ajax({url: OC.filePath('files', 'ajax', 'rename.php'), async: false, data: { dir: $('#dir').val(), newname: FileList.replaceNewName, file: FileList.replaceOldName }, success: function(result) { if (result && result.status == 'success') { - var tr = $('tr').filterAttr('data-file', FileList.replaceOldName); - tr.attr('data-file', FileList.replaceNewName); - var td = tr.children('td.filename'); - td.children('a.name .span').text(FileList.replaceNewName); - var path = td.children('a.name').attr('href'); - td.children('a.name').attr('href', path.replace(encodeURIComponent(FileList.replaceOldName), encodeURIComponent(FileList.replaceNewName))); - if (FileList.replaceNewName.indexOf('.') > 0) { - var basename = FileList.replaceNewName.substr(0, FileList.replaceNewName.lastIndexOf('.')); - } else { - var basename = FileList.replaceNewName; - } - td.children('a.name').empty(); - var span = $('<span class="nametext"></span>'); - span.text(basename); - td.children('a.name').append(span); - if (FileList.replaceNewName.indexOf('.') > 0) { - span.append($('<span class="extension">'+FileList.replaceNewName.substr(FileList.replaceNewName.lastIndexOf('.'))+'</span>')); - } - tr.show(); + $('tr').filterAttr('data-replace', 'true').removeAttr('data-replace'); } else { OC.dialogs.alert(result.data.message, 'Error moving file'); } @@ -255,7 +280,7 @@ var FileList={ data: {dir:$('#dir').val(),files:fileNames}, complete: function(data){ boolOperationFinished(data, function(){ - $('#notification').fadeOut(); + $('#notification').fadeOut('400'); $.each(FileList.deleteFiles,function(index,file){ FileList.remove(file); }); @@ -299,21 +324,39 @@ $(document).ready(function(){ FileList.deleteCanceled=true; FileList.deleteFiles=null; } else if (FileList.replaceOldName && FileList.replaceNewName) { - $('tr').filterAttr('data-file', FileList.replaceOldName).show(); + if (FileList.replaceIsNewFile) { + // Delete the new uploaded file + FileList.deleteCanceled = false; + FileList.deleteFiles = [FileList.replaceOldName]; + FileList.finishDelete(null, true); + } else { + $('tr').filterAttr('data-file', FileList.replaceOldName).show(); + } + $('tr').filterAttr('data-replace', 'true').remove(); + $('tr').filterAttr('data-file', FileList.replaceNewName).show(); FileList.replaceCanceled = true; FileList.replaceOldName = null; FileList.replaceNewName = null; + FileList.replaceIsNewFile = null; } FileList.lastAction = null; - $('#notification').fadeOut(); + $('#notification').fadeOut('400'); }); $('#notification .replace').live('click', function() { $('#notification').fadeOut('400', function() { - FileList.replace($('#notification').data('oldName'), $('#notification').data('newName')); + FileList.replace($('#notification').data('oldName'), $('#notification').data('newName'), $('#notification').data('isNewFile')); }); }); + $('#notification .suggest').live('click', function() { + $('tr').filterAttr('data-file', $('#notification').data('oldName')).show(); + $('#notification').fadeOut('400'); + }); $('#notification .cancel').live('click', function() { - $('#notification').fadeOut(); + if ($('#notification').data('isNewFile')) { + FileList.deleteCanceled = false; + FileList.deleteFiles = [$('#notification').data('oldName')]; + FileList.finishDelete(null, true); + } }); FileList.useUndo=('onbeforeunload' in window) $(window).bind('beforeunload', function (){ diff --git a/apps/files/js/files.js b/apps/files/js/files.js index a729b5f2e6a..3d347c3f564 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -236,7 +236,14 @@ $(document).ready(function() { var size=t('files','Pending'); } if(files && !dirName){ - FileList.addFile(getUniqueName(files[i].name),size,date,true); + var uniqueName = getUniqueName(files[i].name); + if (uniqueName != files[i].name) { + FileList.checkName(uniqueName, files[i].name, true); + var hidden = true; + } else { + var hidden = false; + } + FileList.addFile(uniqueName,size,date,true,hidden); } else if(dirName) { var uploadtext = $('tr').filterAttr('data-type', 'dir').filterAttr('data-file', dirName).find('.uploadtext') var currentUploads = parseInt(uploadtext.attr('currentUploads')); @@ -255,7 +262,14 @@ $(document).ready(function() { } }else{ var filename=this.value.split('\\').pop(); //ie prepends C:\fakepath\ in front of the filename - FileList.addFile(getUniqueName(filename),'Pending',date,true); + var uniqueName = getUniqueName(filename); + if (uniqueName != filename) { + FileList.checkName(uniqueName, filename, true); + var hidden = true; + } else { + var hidden = false; + } + FileList.addFile(uniqueName,'Pending',date,true,hidden); } if($.support.xhrFileUpload) { for(var i=0;i<files.length;i++){ @@ -475,12 +489,18 @@ $(document).ready(function() { $(this).append(input); input.focus(); input.change(function(){ - var name=getUniqueName($(this).val()); - if(type != 'web' && name.indexOf('/')!=-1){ + if(type != 'web' && $(this).val().indexOf('/')!=-1){ $('#notification').text(t('files','Invalid name, \'/\' is not allowed.')); $('#notification').fadeIn(); return; } + var name = getUniqueName($(this).val()); + if (name != $(this).val()) { + FileList.checkName(name, $(this).val(), true); + var hidden = true; + } else { + var hidden = false; + } switch(type){ case 'file': $.post( @@ -489,7 +509,7 @@ $(document).ready(function() { function(result){ if (result.status == 'success') { var date=new Date(); - FileList.addFile(name,0,date); + FileList.addFile(name,0,date,false,hidden); var tr=$('tr').filterAttr('data-file',name); tr.data('mime','text/plain'); getMimeIcon('text/plain',function(path){ @@ -508,7 +528,7 @@ $(document).ready(function() { function(result){ if (result.status == 'success') { var date=new Date(); - FileList.addDir(name,0,date); + FileList.addDir(name,0,date,hidden); } else { OC.dialogs.alert(result.data.message, 'Error'); } @@ -539,7 +559,7 @@ $(document).ready(function() { eventSource.listen('success',function(mime){ $('#uploadprogressbar').fadeOut(); var date=new Date(); - FileList.addFile(localName,0,date); + FileList.addFile(localName,0,date,false,hidden); var tr=$('tr').filterAttr('data-file',localName); tr.data('mime',mime); getMimeIcon(mime,function(path){ diff --git a/apps/files_external/l10n/he.php b/apps/files_external/l10n/he.php new file mode 100644 index 00000000000..edfa9aa85f0 --- /dev/null +++ b/apps/files_external/l10n/he.php @@ -0,0 +1,13 @@ +<?php $TRANSLATIONS = array( +"External Storage" => "אחסון חיצוני", +"Configuration" => "הגדרות", +"Options" => "אפשרויות", +"All Users" => "כל המשתמשים", +"Groups" => "קבוצות", +"Users" => "משתמשים", +"Delete" => "מחיקה", +"SSL root certificates" => "שורש אישורי אבטחת SSL ", +"Import Root Certificate" => "ייבוא אישור אבטחת שורש", +"Enable User External Storage" => "הפעלת אחסון חיצוני למשתמשים", +"Allow users to mount their own external storage" => "יאפשר למשתמשים לעגן את האחסון החיצוני שלהם" +); diff --git a/apps/files_sharing/l10n/he.php b/apps/files_sharing/l10n/he.php new file mode 100644 index 00000000000..68a337241da --- /dev/null +++ b/apps/files_sharing/l10n/he.php @@ -0,0 +1,7 @@ +<?php $TRANSLATIONS = array( +"Password" => "ססמה", +"Submit" => "שליחה", +"Download" => "הורדה", +"No preview available for" => "אין תצוגה מקדימה זמינה עבור", +"web services under your control" => "שירותי רשת תחת השליטה שלך" +); diff --git a/apps/files_versions/l10n/he.php b/apps/files_versions/l10n/he.php new file mode 100644 index 00000000000..097169b2a49 --- /dev/null +++ b/apps/files_versions/l10n/he.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 f6d16f3acc1..8bf3a024efb 100644 --- a/apps/user_ldap/l10n/fi_FI.php +++ b/apps/user_ldap/l10n/fi_FI.php @@ -1,8 +1,8 @@ <?php $TRANSLATIONS = array( "Host" => "Isäntä", -"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Voit jättää protokollan määrittämättä, paitsi kun käytät SSL:ää. Aloita silloin ldaps://", +"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Voit jättää protokollan määrittämättä, paitsi kun vaadit SSL:ää. Aloita silloin ldaps://", "Base DN" => "Oletus DN", -"You can specify Base DN for users and groups in the Advanced tab" => "Voit määrittää käyttäjien ja ryhmien oletus DN:n (distinguished name) 'tarkemmat asetukset' välilehdeltä ", +"You can specify Base DN for users and groups in the Advanced tab" => "Voit määrittää käyttäjien ja ryhmien oletus DN:n (distinguished name) 'tarkemmat asetukset'-välilehdeltä ", "User DN" => "Käyttäjän 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." => "Asiakasohjelman DN, jolla yhdistäminen tehdään, ts. uid=agent,dc=example,dc=com. Mahdollistaaksesi anonyymin yhteyden, jätä DN ja salasana tyhjäksi.", "Password" => "Salasana", @@ -16,14 +16,14 @@ "Defines the filter to apply, when retrieving groups." => "Määrittelee käytettävän suodattimen, kun ryhmiä haetaan. ", "without any placeholder, e.g. \"objectClass=posixGroup\"." => "ilman paikanvaraustermiä, ts. \"objectClass=posixGroup\".", "Port" => "Portti", -"Base User Tree" => "Oletus käyttäjäpuu", +"Base User Tree" => "Oletuskäyttäjäpuu", "Base Group Tree" => "Ryhmien juuri", "Group-Member association" => "Ryhmä-jäsen 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. ", +"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)", -"Turn off SSL certificate validation." => "Sulje SSL sertifikaatin käyttö", -"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Jos yhteys toimii vain tällä optiolla, siirrä LDAP palvelimen SSL sertifikaatti onwCloud palvelimellesi. ", +"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.", "in bytes" => "tavuissa", "in seconds. A change empties the cache." => "sekunneissa. Muutos tyhjentää välimuistin.", diff --git a/db_structure.xml b/db_structure.xml index e42dc894e8d..523329e66de 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -402,9 +402,8 @@ <field> <name>configvalue</name> - <type>text</type> - <notnull>true</notnull> - <length>255</length> + <type>clob</type> + <notnull>false</notnull> </field> </declaration> diff --git a/l10n/af/files.po b/l10n/af/files.po index 8e51d3bfb68..f93921f751c 100644 --- a/l10n/af/files.po +++ b/l10n/af/files.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-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "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/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -164,6 +164,10 @@ msgstr "" msgid "Maximum input size for ZIP files" msgstr "" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "" diff --git a/l10n/af/settings.po b/l10n/af/settings.po index 3011a186624..b6b7b9e1565 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -62,6 +62,16 @@ msgstr "" msgid "Language changed" msgstr "" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -178,11 +188,7 @@ msgid "See application page at apps.owncloud.com" msgstr "" #: templates/apps.php:30 -msgid "-licensed" -msgstr "" - -#: templates/apps.php:30 -msgid "by" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" msgstr "" #: templates/help.php:9 diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 5c481bb7b5c..f0fdb23c940 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.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-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "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/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -165,6 +165,10 @@ msgstr "" msgid "Maximum input size for ZIP files" msgstr "" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "جديد" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 3de638d666b..ece25b8fda8 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -24,7 +24,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -64,6 +64,16 @@ msgstr "" msgid "Language changed" msgstr "تم تغيير اللغة" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -180,12 +190,8 @@ msgid "See application page at apps.owncloud.com" msgstr "" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-مسجل" - -#: templates/apps.php:30 -msgid "by" -msgstr "من قبل" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/ar_SA/files.po b/l10n/ar_SA/files.po index 70a8de06f9e..7f04256bac7 100644 --- a/l10n/ar_SA/files.po +++ b/l10n/ar_SA/files.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-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "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/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -164,6 +164,10 @@ msgstr "" msgid "Maximum input size for ZIP files" msgstr "" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "" diff --git a/l10n/ar_SA/settings.po b/l10n/ar_SA/settings.po index ee8598f1bf1..22e19d517db 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -62,6 +62,16 @@ msgstr "" msgid "Language changed" msgstr "" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -178,11 +188,7 @@ msgid "See application page at apps.owncloud.com" msgstr "" #: templates/apps.php:30 -msgid "-licensed" -msgstr "" - -#: templates/apps.php:30 -msgid "by" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" msgstr "" #: templates/help.php:9 diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 98e68910a2b..9eb5ac463a2 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.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-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "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/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -166,6 +166,10 @@ msgstr "0 означава без ограничение" msgid "Maximum input size for ZIP files" msgstr "" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Нов" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index a2fc986bb27..fc6de0ffaac 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -65,6 +65,16 @@ msgstr "" msgid "Language changed" msgstr "Езика е сменен" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -181,12 +191,8 @@ msgid "See application page at apps.owncloud.com" msgstr "" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-лицензирано" - -#: templates/apps.php:30 -msgid "by" -msgstr "от" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 0857b5ed92e..93e8a182607 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.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:28+0000\n" -"Last-Translator: rogerc <rcalvoi@yahoo.com>\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "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/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -166,6 +166,10 @@ msgstr "0 és sense límit" msgid "Maximum input size for ZIP files" msgstr "Mida màxima d'entrada per fitxers ZIP" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Nou" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 3a8b55e793f..baded31fd54 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -24,17 +24,17 @@ msgid "Unable to load list from App Store" msgstr "No s'ha pogut carregar la llista des de l'App Store" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Error d'autenticació" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "El grup ja existeix" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "No es pot afegir el grup" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -54,16 +54,26 @@ msgstr "Sol.licitud no vàlida" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "No es pot eliminar el grup" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "No es pot eliminar l'usuari" #: ajax/setlanguage.php:18 msgid "Language changed" msgstr "S'ha canviat l'idioma" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Error" @@ -180,12 +190,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Mireu la pàgina d'aplicacions a apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "- amb llicència" - -#: templates/apps.php:30 -msgid "by" -msgstr "de" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 0fbfcb882df..2e9b7e78c13 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.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-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "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/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -166,6 +166,10 @@ msgstr "0 znamená bez omezení" msgid "Maximum input size for ZIP files" msgstr "Maximální velikost vstupu pro ZIP soubory" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Nový" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index bd57318d44c..b83f36882a4 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -27,7 +27,7 @@ msgid "Unable to load list from App Store" msgstr "Nepodařílo se stáhnout seznam z App Store" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Chyba autorizace" @@ -67,6 +67,16 @@ msgstr "" msgid "Language changed" msgstr "Jazyk byl změněn" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Chyba" @@ -183,12 +193,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Více na stránce s aplikacemi na apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-licencováno" - -#: templates/apps.php:30 -msgid "by" -msgstr "podle" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/da/files.po b/l10n/da/files.po index de51c340b83..5c3233a2810 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.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-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-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "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/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -169,6 +169,10 @@ msgstr "0 er ubegrænset" msgid "Maximum input size for ZIP files" msgstr "Maksimal størrelse på ZIP filer" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Ny" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 48df28c6b19..022d5ee2338 100644 --- a/l10n/da/settings.po +++ b/l10n/da/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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -30,7 +30,7 @@ msgid "Unable to load list from App Store" msgstr "Kunne ikke indlæse listen fra App Store" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Adgangsfejl" @@ -70,6 +70,16 @@ msgstr "" msgid "Language changed" msgstr "Sprog ændret" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Fejl" @@ -186,12 +196,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Se applikationens side på apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-licenseret" - -#: templates/apps.php:30 -msgid "by" -msgstr "af" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/de/files.po b/l10n/de/files.po index 2f61acb8ec6..63ae8dc7c87 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.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 07:32+0000\n" -"Last-Translator: JamFX <niko@nik-o-mat.de>\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "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/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -175,6 +175,10 @@ msgstr "0 bedeutet unbegrenzt" msgid "Maximum input size for ZIP files" msgstr "Maximale Größe für ZIP-Dateien" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Neu" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 01a425d2516..795cd88fa26 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-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -32,17 +32,17 @@ msgid "Unable to load list from App Store" msgstr "Die Liste der Apps im Store konnte nicht geladen werden." #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Anmeldungsfehler" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "Gruppe existiert bereits" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "Gruppe konnte nicht angelegt werden" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -62,16 +62,26 @@ msgstr "Ungültige Anfrage" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "Gruppe konnte nicht gelöscht werden" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "Benutzer konnte nicht gelöscht werden" #: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Sprache geändert" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Fehler" @@ -188,12 +198,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Weitere Anwendungen finden Sie auf apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-lizenziert" - -#: templates/apps.php:30 -msgid "by" -msgstr "von" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/el/files.po b/l10n/el/files.po index cb1f1d7a3d7..ee2a70ac7cf 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.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-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "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/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -167,6 +167,10 @@ msgstr "0 για απεριόριστο" msgid "Maximum input size for ZIP files" msgstr "Μέγιστο μέγεθος για αρχεία ZIP" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Νέο" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 2592bb4253f..bbec7abd9bf 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -29,7 +29,7 @@ msgid "Unable to load list from App Store" msgstr "Σφάλμα στην φόρτωση της λίστας από το App Store" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Σφάλμα πιστοποίησης" @@ -69,6 +69,16 @@ msgstr "" msgid "Language changed" msgstr "Η γλώσσα άλλαξε" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Σφάλμα" @@ -185,12 +195,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Η σελίδα εφαρμογών στο apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-με άδεια" - -#: templates/apps.php:30 -msgid "by" -msgstr "από" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index d84ef73a64a..d771ee745f5 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.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-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "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/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -166,6 +166,10 @@ msgstr "0 signifas senlime" msgid "Maximum input size for ZIP files" msgstr "Maksimuma enirgrando por ZIP-dosieroj" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Nova" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 63892169303..d51e0c54239 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -24,7 +24,7 @@ msgid "Unable to load list from App Store" msgstr "Ne eblis ŝargi liston el aplikaĵovendejo" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Aŭtentiga eraro" @@ -64,6 +64,16 @@ msgstr "" msgid "Language changed" msgstr "La lingvo estas ŝanĝita" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Eraro" @@ -180,12 +190,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Vidu la paĝon pri aplikaĵoj ĉe apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-permesila" - -#: templates/apps.php:30 -msgid "by" -msgstr "de" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/es/files.po b/l10n/es/files.po index b8ef1ea5821..28809d589c5 100644 --- a/l10n/es/files.po +++ b/l10n/es/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-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" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "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/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -168,6 +168,10 @@ msgstr "0 es ilimitado" msgid "Maximum input size for ZIP files" msgstr "Tamaño máximo para archivos ZIP de entrada" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Nuevo" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index c8eaee979f2..2d38de5f755 100644 --- a/l10n/es/settings.po +++ b/l10n/es/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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -31,17 +31,17 @@ msgid "Unable to load list from App Store" msgstr "Imposible cargar la lista desde el App Store" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Error de autenticación" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "El grupo ya existe" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "No se pudo añadir el grupo" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -61,16 +61,26 @@ msgstr "Solicitud no válida" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "No se pudo eliminar el grupo" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "No se pudo eliminar el usuario" #: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Idioma cambiado" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Error" @@ -187,12 +197,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Echa un vistazo a la web de aplicaciones apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-autorizado" - -#: templates/apps.php:30 -msgid "by" -msgstr "por" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 89b36a84150..7b09da2e4f5 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.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-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "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/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -165,6 +165,10 @@ msgstr "0 tähendab piiramatut" msgid "Maximum input size for ZIP files" msgstr "Maksimaalne ZIP-faili sisestatava faili suurus" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Uus" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 4c8dabda4a5..2060adcac0d 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -24,7 +24,7 @@ msgid "Unable to load list from App Store" msgstr "App Sotre'i nimekirja laadimine ebaõnnestus" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Autentimise viga" @@ -64,6 +64,16 @@ msgstr "" msgid "Language changed" msgstr "Keel on muudetud" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Viga" @@ -180,12 +190,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Vaata rakenduste lehte aadressil apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-litsenseeritud" - -#: templates/apps.php:30 -msgid "by" -msgstr "kelle poolt" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index a0e689fba4d..19d4a2e58c1 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.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-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "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/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -166,6 +166,10 @@ msgstr "0 mugarik gabe esan nahi du" msgid "Maximum input size for ZIP files" msgstr "ZIP fitxategien gehienezko tamaina" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Berria" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index c7fd18eb34c..f23e12e7289 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgid "Unable to load list from App Store" msgstr "Ezin izan da App Dendatik zerrenda kargatu" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Autentifikazio errorea" @@ -65,6 +65,16 @@ msgstr "" msgid "Language changed" msgstr "Hizkuntza aldatuta" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Errorea" @@ -181,12 +191,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Ikusi programen orria apps.owncloud.com en" #: templates/apps.php:30 -msgid "-licensed" -msgstr "lizentziarekin" - -#: templates/apps.php:30 -msgid "by" -msgstr " Egilea:" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/eu_ES/files.po b/l10n/eu_ES/files.po index 1a86a78d4b6..5a8745c0316 100644 --- a/l10n/eu_ES/files.po +++ b/l10n/eu_ES/files.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-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "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/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -164,6 +164,10 @@ msgstr "" msgid "Maximum input size for ZIP files" msgstr "" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "" diff --git a/l10n/eu_ES/settings.po b/l10n/eu_ES/settings.po index a4cf700a20b..bca1c25debd 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -62,6 +62,16 @@ msgstr "" msgid "Language changed" msgstr "" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -178,11 +188,7 @@ msgid "See application page at apps.owncloud.com" msgstr "" #: templates/apps.php:30 -msgid "-licensed" -msgstr "" - -#: templates/apps.php:30 -msgid "by" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" msgstr "" #: templates/help.php:9 diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 136043a67d5..a1981830b70 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.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-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "Content-Transfer-Encoding: 8bit\n" "Language: fa\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -167,6 +167,10 @@ msgstr "0 نامحدود است" msgid "Maximum input size for ZIP files" msgstr "حداکثرمقدار برای بار گزاری پرونده های فشرده" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "جدید" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 17f939836af..9f3314e7060 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -24,7 +24,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -64,6 +64,16 @@ msgstr "" msgid "Language changed" msgstr "زبان تغییر کرد" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "خطا" @@ -180,12 +190,8 @@ msgid "See application page at apps.owncloud.com" msgstr "صفحه این اٌپ را در apps.owncloud.com ببینید" #: templates/apps.php:30 -msgid "-licensed" -msgstr "مجوزنامه" - -#: templates/apps.php:30 -msgid "by" -msgstr "به وسیله" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/fi/files.po b/l10n/fi/files.po index 64ed9831969..a46618c5029 100644 --- a/l10n/fi/files.po +++ b/l10n/fi/files.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-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "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/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -164,6 +164,10 @@ msgstr "" msgid "Maximum input size for ZIP files" msgstr "" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "" diff --git a/l10n/fi/settings.po b/l10n/fi/settings.po index e91b258aa20..b2daafd990f 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -62,6 +62,16 @@ msgstr "" msgid "Language changed" msgstr "" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -178,11 +188,7 @@ msgid "See application page at apps.owncloud.com" msgstr "" #: templates/apps.php:30 -msgid "-licensed" -msgstr "" - -#: templates/apps.php:30 -msgid "by" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" msgstr "" #: templates/help.php:9 diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 4bac70c1c2b..7b28a31a632 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-04 02:01+0200\n" -"PO-Revision-Date: 2012-09-03 16:25+0000\n" -"Last-Translator: teho <tehoratopato@gmail.com>\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" @@ -169,6 +169,10 @@ msgstr "0 on rajoittamaton" msgid "Maximum input size for ZIP files" msgstr "ZIP-tiedostojen enimmäiskoko" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Uusi" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 405a3a62d3a..e540a68630f 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgid "Unable to load list from App Store" msgstr "Ei pystytä lataamaan listaa sovellusvarastosta (App Store)" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Todennusvirhe" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "Ryhmä on jo olemassa" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "Ryhmän lisäys epäonnistui" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -55,16 +55,26 @@ msgstr "Virheellinen pyyntö" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "Ryhmän poisto epäonnistui" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "Käyttäjän poisto epäonnistui" #: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Kieli on vaihdettu" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Virhe" @@ -181,12 +191,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Katso sovellussivu osoitteessa apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-lisenssöity" - -#: templates/apps.php:30 -msgid "by" -msgstr "henkilölle" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index 8d3344a8317..e1e890a1617 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.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-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-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" "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:8 msgid "Host" @@ -26,7 +26,7 @@ msgstr "Isäntä" #: templates/settings.php:8 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "Voit jättää protokollan määrittämättä, paitsi kun käytät SSL:ää. Aloita silloin ldaps://" +msgstr "Voit jättää protokollan määrittämättä, paitsi kun vaadit SSL:ää. Aloita silloin ldaps://" #: templates/settings.php:9 msgid "Base DN" @@ -34,7 +34,7 @@ msgstr "Oletus DN" #: templates/settings.php:9 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Voit määrittää käyttäjien ja ryhmien oletus DN:n (distinguished name) 'tarkemmat asetukset' välilehdeltä " +msgstr "Voit määrittää käyttäjien ja ryhmien oletus DN:n (distinguished name) 'tarkemmat asetukset'-välilehdeltä " #: templates/settings.php:10 msgid "User DN" @@ -101,7 +101,7 @@ msgstr "Portti" #: templates/settings.php:18 msgid "Base User Tree" -msgstr "Oletus käyttäjäpuu" +msgstr "Oletuskäyttäjäpuu" #: templates/settings.php:19 msgid "Base Group Tree" @@ -117,7 +117,7 @@ msgstr "Käytä TLS:ää" #: templates/settings.php:21 msgid "Do not use it for SSL connections, it will fail." -msgstr "Älä käytä SSL yhteyttä varten, se epäonnistuu. " +msgstr "Älä käytä SSL-yhteyttä varten, se epäonnistuu. " #: templates/settings.php:22 msgid "Case insensitve LDAP server (Windows)" @@ -125,13 +125,13 @@ msgstr "Kirjainkoosta piittamaton LDAP-palvelin (Windows)" #: templates/settings.php:23 msgid "Turn off SSL certificate validation." -msgstr "Sulje SSL sertifikaatin käyttö" +msgstr "Poista käytöstä SSL-varmenteen vahvistus" #: templates/settings.php:23 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "Jos yhteys toimii vain tällä optiolla, siirrä LDAP palvelimen SSL sertifikaatti onwCloud palvelimellesi. " +msgstr "Jos yhteys toimii vain tällä valinnalla, siirrä LDAP-palvelimen SSL-varmenne ownCloud-palvelimellesi." #: templates/settings.php:23 msgid "Not recommended, use for testing only." diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 9131d0d3508..6467b476975 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.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 09:27+0000\n" -"Last-Translator: gp4004 <gp4004@arghh.org>\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "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/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -172,6 +172,10 @@ msgstr "0 est illimité" msgid "Maximum input size for ZIP files" msgstr "Taille maximale pour les fichiers ZIP" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Nouveau" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 0c8e1d758d3..0fd897ba24f 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/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-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -32,17 +32,17 @@ msgid "Unable to load list from App Store" msgstr "Impossible de charger la liste depuis l'App Store" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Erreur d'authentification" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "Ce groupe existe déjà" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "Impossible d'ajouter le groupe" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -62,16 +62,26 @@ msgstr "Requête invalide" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "Impossible de supprimer le groupe" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "Impossible de supprimer l'utilisateur" #: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Langue changée" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Erreur" @@ -188,12 +198,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Voir la page des applications à l'url apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "sous licence" - -#: templates/apps.php:30 -msgid "by" -msgstr "par" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index d42c63821bc..9413551a21a 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.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-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "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/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -166,6 +166,10 @@ msgstr "0 significa ilimitado" msgid "Maximum input size for ZIP files" msgstr "Tamaño máximo de descarga para os ZIP" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Novo" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index abf9124621e..60828ee96fa 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -24,7 +24,7 @@ msgid "Unable to load list from App Store" msgstr "Non se puido cargar a lista desde a App Store" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Erro na autenticación" @@ -64,6 +64,16 @@ msgstr "" msgid "Language changed" msgstr "O idioma mudou" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Erro" @@ -180,12 +190,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Vexa a páxina do aplicativo en apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-licenciado" - -#: templates/apps.php:30 -msgid "by" -msgstr "por" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/he/files.po b/l10n/he/files.po index 2d4d668d0cf..51db52ac274 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.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-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "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/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -167,6 +167,10 @@ msgstr "0 - ללא הגבלה" msgid "Maximum input size for ZIP files" msgstr "גודל הקלט המרבי לקובצי ZIP" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "חדש" diff --git a/l10n/he/files_external.po b/l10n/he/files_external.po index ba3aa0596eb..78e36b4a5ab 100644 --- a/l10n/he/files_external.po +++ b/l10n/he/files_external.po @@ -3,23 +3,24 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Tomer Cohen <tomerc+transifex.net@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-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-04 23:27+0000\n" +"Last-Translator: Tomer Cohen <tomerc+transifex.net@gmail.com>\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" #: templates/settings.php:3 msgid "External Storage" -msgstr "" +msgstr "אחסון חיצוני" #: templates/settings.php:7 templates/settings.php:19 msgid "Mount point" @@ -31,11 +32,11 @@ msgstr "" #: templates/settings.php:9 msgid "Configuration" -msgstr "" +msgstr "הגדרות" #: templates/settings.php:10 msgid "Options" -msgstr "" +msgstr "אפשרויות" #: templates/settings.php:11 msgid "Applicable" @@ -51,32 +52,32 @@ msgstr "" #: templates/settings.php:63 msgid "All Users" -msgstr "" +msgstr "כל המשתמשים" #: templates/settings.php:64 msgid "Groups" -msgstr "" +msgstr "קבוצות" #: templates/settings.php:69 msgid "Users" -msgstr "" +msgstr "משתמשים" #: templates/settings.php:77 templates/settings.php:96 msgid "Delete" -msgstr "" +msgstr "מחיקה" #: templates/settings.php:88 msgid "SSL root certificates" -msgstr "" +msgstr "שורש אישורי אבטחת SSL " #: templates/settings.php:102 msgid "Import Root Certificate" -msgstr "" +msgstr "ייבוא אישור אבטחת שורש" #: templates/settings.php:108 msgid "Enable User External Storage" -msgstr "" +msgstr "הפעלת אחסון חיצוני למשתמשים" #: templates/settings.php:109 msgid "Allow users to mount their own external storage" -msgstr "" +msgstr "יאפשר למשתמשים לעגן את האחסון החיצוני שלהם" diff --git a/l10n/he/files_sharing.po b/l10n/he/files_sharing.po index e9ce7816e23..0e6dea4b5b1 100644 --- a/l10n/he/files_sharing.po +++ b/l10n/he/files_sharing.po @@ -3,36 +3,37 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Tomer Cohen <tomerc+transifex.net@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-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-04 23:20+0000\n" +"Last-Translator: Tomer Cohen <tomerc+transifex.net@gmail.com>\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" #: templates/authenticate.php:4 msgid "Password" -msgstr "" +msgstr "ססמה" #: templates/authenticate.php:6 msgid "Submit" -msgstr "" +msgstr "שליחה" #: templates/public.php:9 templates/public.php:19 msgid "Download" -msgstr "" +msgstr "הורדה" #: templates/public.php:18 msgid "No preview available for" -msgstr "" +msgstr "אין תצוגה מקדימה זמינה עבור" -#: templates/public.php:23 +#: templates/public.php:25 msgid "web services under your control" -msgstr "" +msgstr "שירותי רשת תחת השליטה שלך" diff --git a/l10n/he/files_versions.po b/l10n/he/files_versions.po index bab655f32c2..e0cb0e526e3 100644 --- a/l10n/he/files_versions.po +++ b/l10n/he/files_versions.po @@ -3,32 +3,33 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Tomer Cohen <tomerc+transifex.net@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-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-04 23:22+0000\n" +"Last-Translator: Tomer Cohen <tomerc+transifex.net@gmail.com>\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" #: 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/he/lib.po b/l10n/he/lib.po index eed328e6ce5..d85313a6ab8 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -3,123 +3,124 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Tomer Cohen <tomerc+transifex.net@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-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-04 23:19+0000\n" +"Last-Translator: Tomer Cohen <tomerc+transifex.net@gmail.com>\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" #: app.php:288 msgid "Help" -msgstr "" +msgstr "עזרה" #: app.php:295 msgid "Personal" -msgstr "" +msgstr "אישי" #: app.php:300 msgid "Settings" -msgstr "" +msgstr "הגדרות" #: app.php:305 msgid "Users" -msgstr "" +msgstr "משתמשים" #: app.php:312 msgid "Apps" -msgstr "" +msgstr "יישומים" #: app.php:314 msgid "Admin" -msgstr "" +msgstr "מנהל" #: files.php:280 msgid "ZIP download is turned off." -msgstr "" +msgstr "הורדת ZIP כבויה" #: files.php:281 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "יש להוריד את הקבצים אחד אחרי השני." #: files.php:281 files.php:306 msgid "Back to Files" -msgstr "" +msgstr "חזרה לקבצים" #: 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 +#: template.php:87 msgid "seconds ago" -msgstr "" +msgstr "שניות" -#: template.php:87 +#: template.php:88 msgid "1 minute ago" -msgstr "" +msgstr "לפני דקה אחת" -#: template.php:88 +#: template.php:89 #, php-format msgid "%d minutes ago" -msgstr "" +msgstr "לפני %d דקות" -#: template.php:91 +#: template.php:92 msgid "today" -msgstr "" +msgstr "היום" -#: template.php:92 +#: template.php:93 msgid "yesterday" -msgstr "" +msgstr "אתמול" -#: template.php:93 +#: template.php:94 #, php-format msgid "%d days ago" -msgstr "" +msgstr "לפני %d ימים" -#: template.php:94 +#: template.php:95 msgid "last month" -msgstr "" +msgstr "חודש שעבר" -#: template.php:95 +#: template.php:96 msgid "months ago" -msgstr "" +msgstr "חודשים" -#: template.php:96 +#: template.php:97 msgid "last year" -msgstr "" +msgstr "שנה שעברה" -#: template.php:97 +#: template.php:98 msgid "years ago" -msgstr "" +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/he/settings.po b/l10n/he/settings.po index 1bad10caaf8..bd56d364279 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -65,6 +65,16 @@ msgstr "" msgid "Language changed" msgstr "שפה השתנתה" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -181,12 +191,8 @@ msgid "See application page at apps.owncloud.com" msgstr "צפה בעמוד הישום ב apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "רשיון" - -#: templates/apps.php:30 -msgid "by" -msgstr "מאת" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 8270c796eb7..58546409d54 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.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-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "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/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -164,6 +164,10 @@ msgstr "" msgid "Maximum input size for ZIP files" msgstr "" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index f29fbed4142..db0cc7e30fa 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -62,6 +62,16 @@ msgstr "" msgid "Language changed" msgstr "" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -178,11 +188,7 @@ msgid "See application page at apps.owncloud.com" msgstr "" #: templates/apps.php:30 -msgid "-licensed" -msgstr "" - -#: templates/apps.php:30 -msgid "by" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" msgstr "" #: templates/help.php:9 diff --git a/l10n/hr/files.po b/l10n/hr/files.po index f6640c03c3d..c0d12a58c89 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.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-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "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/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -167,6 +167,10 @@ msgstr "0 je \"bez limita\"" msgid "Maximum input size for ZIP files" msgstr "Maksimalna veličina za ZIP datoteke" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "novo" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 22cbd59156d..ef3eacff148 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgid "Unable to load list from App Store" msgstr "Nemogićnost učitavanja liste sa Apps Stora" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Greška kod autorizacije" @@ -65,6 +65,16 @@ msgstr "" msgid "Language changed" msgstr "Jezik promijenjen" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Greška" @@ -181,12 +191,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Pogledajte stranicu s aplikacijama na apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-licencirano" - -#: templates/apps.php:30 -msgid "by" -msgstr "od" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 4a97620ae7e..a2baaea8442 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.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-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "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/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -167,6 +167,10 @@ msgstr "0 = korlátlan" msgid "Maximum input size for ZIP files" msgstr "ZIP file-ok maximum mérete" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Új" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 1a47a633a73..5f3d66a4dd9 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -24,7 +24,7 @@ msgid "Unable to load list from App Store" msgstr "Nem tölthető le a lista az App Store-ból" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Hitelesítési hiba" @@ -64,6 +64,16 @@ msgstr "" msgid "Language changed" msgstr "A nyelv megváltozott" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Hiba" @@ -180,12 +190,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Lásd apps.owncloud.com, alkalmazások oldal" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-licencelt" - -#: templates/apps.php:30 -msgid "by" -msgstr ":" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index 1e64d6f49e5..fdc067d3262 100644 --- a/l10n/hy/files.po +++ b/l10n/hy/files.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-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "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/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -164,6 +164,10 @@ msgstr "" msgid "Maximum input size for ZIP files" msgstr "" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index 17b840f15d0..394122cdf15 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -62,6 +62,16 @@ msgstr "" msgid "Language changed" msgstr "" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -178,11 +188,7 @@ msgid "See application page at apps.owncloud.com" msgstr "" #: templates/apps.php:30 -msgid "-licensed" -msgstr "" - -#: templates/apps.php:30 -msgid "by" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" msgstr "" #: templates/help.php:9 diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 66430afef4b..b2010914e28 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.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-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "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/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -166,6 +166,10 @@ msgstr "" msgid "Maximum input size for ZIP files" msgstr "" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Nove" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index b495b59ed97..ab80ed851ad 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -24,7 +24,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -64,6 +64,16 @@ msgstr "" msgid "Language changed" msgstr "Linguage cambiate" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -180,13 +190,9 @@ msgid "See application page at apps.owncloud.com" msgstr "" #: templates/apps.php:30 -msgid "-licensed" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" msgstr "" -#: templates/apps.php:30 -msgid "by" -msgstr "per" - #: templates/help.php:9 msgid "Documentation" msgstr "Documentation" diff --git a/l10n/id/files.po b/l10n/id/files.po index 53122c53b6a..806ae3250e2 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.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-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "Content-Transfer-Encoding: 8bit\n" "Language: id\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -167,6 +167,10 @@ msgstr "0 adalah tidak terbatas" msgid "Maximum input size for ZIP files" msgstr "Ukuran masukan maksimal untuk berkas ZIP" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Baru" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index b5a17ff7645..c2bd93b9e17 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -65,6 +65,16 @@ msgstr "" msgid "Language changed" msgstr "Bahasa telah diganti" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -181,12 +191,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Lihat halaman aplikasi di apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-terlisensi" - -#: templates/apps.php:30 -msgid "by" -msgstr "oleh" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/id_ID/files.po b/l10n/id_ID/files.po index cbc59367cd1..a138ce1d22c 100644 --- a/l10n/id_ID/files.po +++ b/l10n/id_ID/files.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-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "Content-Transfer-Encoding: 8bit\n" "Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -164,6 +164,10 @@ msgstr "" msgid "Maximum input size for ZIP files" msgstr "" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "" diff --git a/l10n/id_ID/settings.po b/l10n/id_ID/settings.po index 140d43b4803..b70af6b0c3f 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -62,6 +62,16 @@ msgstr "" msgid "Language changed" msgstr "" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -178,11 +188,7 @@ msgid "See application page at apps.owncloud.com" msgstr "" #: templates/apps.php:30 -msgid "-licensed" -msgstr "" - -#: templates/apps.php:30 -msgid "by" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" msgstr "" #: templates/help.php:9 diff --git a/l10n/it/files.po b/l10n/it/files.po index ccf33f1c454..29c50647d14 100644 --- a/l10n/it/files.po +++ b/l10n/it/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-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" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "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/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -168,6 +168,10 @@ msgstr "0 è illimitato" msgid "Maximum input size for ZIP files" msgstr "Dimensione massima per i file ZIP" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Nuovo" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index a0f75975444..7a1601c8818 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -29,17 +29,17 @@ msgid "Unable to load list from App Store" msgstr "Impossibile caricare l'elenco dall'App Store" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Errore di autenticazione" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "Il gruppo esiste già" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "Impossibile aggiungere il gruppo" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -59,16 +59,26 @@ msgstr "Richiesta non valida" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "Impossibile eliminare il gruppo" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "Impossibile eliminare l'utente" #: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Lingua modificata" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Errore" @@ -185,12 +195,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Vedere la pagina dell'applicazione su apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-rilasciato" - -#: templates/apps.php:30 -msgid "by" -msgstr "da" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 3fbe7f60e99..74741422170 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.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:52+0000\n" -"Last-Translator: ttyn <tetuyano+transi@gmail.com>\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "Content-Transfer-Encoding: 8bit\n" "Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -166,6 +166,10 @@ msgstr "0を指定した場合は無制限" msgid "Maximum input size for ZIP files" msgstr "ZIPファイルへの最大入力サイズ" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "新規" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 4721075e9d3..b98da01025a 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -24,7 +24,7 @@ msgid "Unable to load list from App Store" msgstr "アプリストアからリストをロードできません" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "認証エラー" @@ -64,6 +64,16 @@ msgstr "" msgid "Language changed" msgstr "言語が変更されました" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "エラー" @@ -180,12 +190,8 @@ msgid "See application page at apps.owncloud.com" msgstr "apps.owncloud.com でアプリケーションのページを見てください" #: templates/apps.php:30 -msgid "-licensed" -msgstr "ライセンス" - -#: templates/apps.php:30 -msgid "by" -msgstr "@" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index fa66c139882..05dda7be5a3 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.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-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "Content-Transfer-Encoding: 8bit\n" "Language: ko\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -166,6 +166,10 @@ msgstr "0은 무제한 입니다" msgid "Maximum input size for ZIP files" msgstr "ZIP 파일에 대한 최대 입력 크기" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "새로 만들기" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 8fd52bd74a0..74a1df47382 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -24,7 +24,7 @@ msgid "Unable to load list from App Store" msgstr "앱 스토어에서 목록을 가져올 수 없습니다" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "인증 오류" @@ -64,6 +64,16 @@ msgstr "" msgid "Language changed" msgstr "언어가 변경되었습니다" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "에러" @@ -180,12 +190,8 @@ msgid "See application page at apps.owncloud.com" msgstr "application page at apps.owncloud.com을 보시오." #: templates/apps.php:30 -msgid "-licensed" -msgstr " 라이선스 사용" - -#: templates/apps.php:30 -msgid "by" -msgstr " by " +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 45773897b67..bda384f1ce1 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/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-09-04 02:01+0200\n" -"PO-Revision-Date: 2012-09-03 21:52+0000\n" -"Last-Translator: sim0n <sim0n@trypill.org>\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" @@ -165,6 +165,10 @@ msgstr "0 ass onlimitéiert" msgid "Maximum input size for ZIP files" msgstr "Maximal Gréisst fir ZIP Fichieren" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Nei" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 1359a8c64f8..ae12b3db40d 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -23,7 +23,7 @@ msgid "Unable to load list from App Store" msgstr "Konnt Lescht net vum App Store lueden" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Authentifikatioun's Fehler" @@ -63,6 +63,16 @@ msgstr "" msgid "Language changed" msgstr "Sprooch huet geännert" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Fehler" @@ -179,12 +189,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Kuck dir d'Applicatioun's Säit op apps.owncloud.com un" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-Lizenséiert" - -#: templates/apps.php:30 -msgid "by" -msgstr "vun" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 940281d35e3..1aff17e92e2 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.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-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "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/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -166,6 +166,10 @@ msgstr "0 yra neribotas" msgid "Maximum input size for ZIP files" msgstr "Maksimalus ZIP archyvo failo dydis" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Naujas" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index d6268c7d3f4..5db913f5a2b 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -23,7 +23,7 @@ msgid "Unable to load list from App Store" msgstr "Neįmanoma įkelti sąrašo iš Programų Katalogo" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -63,6 +63,16 @@ msgstr "" msgid "Language changed" msgstr "Kalba pakeista" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Klaida" @@ -179,11 +189,7 @@ msgid "See application page at apps.owncloud.com" msgstr "" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-licencijuota" - -#: templates/apps.php:30 -msgid "by" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" msgstr "" #: templates/help.php:9 diff --git a/l10n/lv/files.po b/l10n/lv/files.po index f4af2d90e40..b6fb8d8d076 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.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-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "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/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -165,6 +165,10 @@ msgstr "0 ir neierobežots" msgid "Maximum input size for ZIP files" msgstr "" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Jauns" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 3e27f0ed58c..6c04e77d75a 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -23,7 +23,7 @@ msgid "Unable to load list from App Store" msgstr "Nebija iespējams lejuplādēt sarakstu no aplikāciju veikala" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Ielogošanās kļūme" @@ -63,6 +63,16 @@ msgstr "" msgid "Language changed" msgstr "Valoda tika nomainīta" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Kļūme" @@ -179,12 +189,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Apskatie aplikāciju lapu - apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "licenzēts" - -#: templates/apps.php:30 -msgid "by" -msgstr "no" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 378ca4a4e1e..2ddfad5b8ce 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.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-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "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/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -167,6 +167,10 @@ msgstr "0 е неограничено" msgid "Maximum input size for ZIP files" msgstr "Максимална големина за внес на ZIP датотеки" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Ново" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index ab5e4f3717d..6bd27051c39 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -24,7 +24,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -64,6 +64,16 @@ msgstr "" msgid "Language changed" msgstr "Јазикот е сменет" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -180,12 +190,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Види ја страницата со апликации на apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-licensed" - -#: templates/apps.php:30 -msgid "by" -msgstr "од" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index ebf4d8af0f5..9ba3bb1e22b 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/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" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "Content-Transfer-Encoding: 8bit\n" "Language: ms_MY\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -168,6 +168,10 @@ msgstr "0 adalah tanpa had" msgid "Maximum input size for ZIP files" msgstr "Saiz maksimum input untuk fail ZIP" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Baru" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index 68249d4e7ec..585daefb75b 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -26,7 +26,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Ralat pengesahan" @@ -66,6 +66,16 @@ msgstr "" msgid "Language changed" msgstr "Bahasa diubah" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -182,12 +192,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Lihat halaman applikasi di apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-dilesen" - -#: templates/apps.php:30 -msgid "by" -msgstr "oleh" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index e909322805c..a65a66c9649 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.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-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "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/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -169,6 +169,10 @@ msgstr "0 er ubegrenset" msgid "Maximum input size for ZIP files" msgstr "Maksimal størrelse på ZIP-filer" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Ny" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 56f93ec3e43..4b095682b56 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -28,7 +28,7 @@ msgid "Unable to load list from App Store" msgstr "Lasting av liste fra App Store feilet." #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Autentikasjonsfeil" @@ -68,6 +68,16 @@ msgstr "" msgid "Language changed" msgstr "Språk endret" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Feil" @@ -184,12 +194,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Se applikasjonens side på apps.owncloud.org" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-lisensiert" - -#: templates/apps.php:30 -msgid "by" -msgstr "av" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index f5d8cf3bfe5..96f7a87e84e 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.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-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "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/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -172,6 +172,10 @@ msgstr "0 is ongelimiteerd" msgid "Maximum input size for ZIP files" msgstr "Maximale grootte voor ZIP bestanden" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Nieuw" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index a3a72a33798..3c52376d35c 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -29,7 +29,7 @@ msgid "Unable to load list from App Store" msgstr "Kan de lijst niet van de App store laden" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Authenticatie fout" @@ -69,6 +69,16 @@ msgstr "" msgid "Language changed" msgstr "Taal aangepast" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Fout" @@ -185,12 +195,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Zie de applicatiepagina op apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-gelicentieerd" - -#: templates/apps.php:30 -msgid "by" -msgstr "door" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 1fecca7984d..9bf43656e8a 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.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-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "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/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -166,6 +166,10 @@ msgstr "" msgid "Maximum input size for ZIP files" msgstr "" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Ny" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index 82dfce0048e..8276d41ed6d 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -24,7 +24,7 @@ msgid "Unable to load list from App Store" msgstr "Klarer ikkje å laste inn liste fra App Store" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Feil i autentisering" @@ -64,6 +64,16 @@ msgstr "" msgid "Language changed" msgstr "Språk endra" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Feil" @@ -180,12 +190,8 @@ msgid "See application page at apps.owncloud.com" msgstr "" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-lisensiert" - -#: templates/apps.php:30 -msgid "by" -msgstr "av" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 02f24afbe72..cce7204605e 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/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-04 02:01+0200\n" -"PO-Revision-Date: 2012-09-03 06:33+0000\n" -"Last-Translator: Cyryl Sochacki <>\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" @@ -168,6 +168,10 @@ msgstr "0 jest nielimitowane" msgid "Maximum input size for ZIP files" msgstr "Maksymalna wielkość pliku wejściowego ZIP " +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Nowy" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index b0b24757ca6..d6fef0cea3e 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -29,17 +29,17 @@ msgid "Unable to load list from App Store" msgstr "Nie mogę załadować listy aplikacji" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Błąd uwierzytelniania" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "Grupa już istnieje" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "Nie można dodać grupy" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -59,16 +59,26 @@ msgstr "Nieprawidłowe żądanie" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "Nie można usunąć grupy" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "Nie można usunąć użytkownika" #: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Język zmieniony" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Błąd" @@ -185,12 +195,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Zobacz stronę aplikacji na apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-licencjonowany" - -#: templates/apps.php:30 -msgid "by" -msgstr "przez" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/pl_PL/files.po b/l10n/pl_PL/files.po index de6cf10414c..c47ae7e8223 100644 --- a/l10n/pl_PL/files.po +++ b/l10n/pl_PL/files.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-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "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/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -164,6 +164,10 @@ msgstr "" msgid "Maximum input size for ZIP files" msgstr "" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "" diff --git a/l10n/pl_PL/settings.po b/l10n/pl_PL/settings.po index 7f69392cff9..0d571388740 100644 --- a/l10n/pl_PL/settings.po +++ b/l10n/pl_PL/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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -62,6 +62,16 @@ msgstr "" msgid "Language changed" msgstr "" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -178,11 +188,7 @@ msgid "See application page at apps.owncloud.com" msgstr "" #: templates/apps.php:30 -msgid "-licensed" -msgstr "" - -#: templates/apps.php:30 -msgid "by" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" msgstr "" #: templates/help.php:9 diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index c7241bdb7df..82a5a58bd6e 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.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-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "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/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -169,6 +169,10 @@ msgstr "0 para ilimitado" msgid "Maximum input size for ZIP files" msgstr "Tamanho máximo para arquivo ZIP" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Novo" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index f8da7b4d5d3..5c7f19c7695 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -28,7 +28,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "erro de autenticação" @@ -68,6 +68,16 @@ msgstr "" msgid "Language changed" msgstr "Mudou Idioma" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Erro" @@ -184,12 +194,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Ver página do aplicativo em apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-licenciados" - -#: templates/apps.php:30 -msgid "by" -msgstr "por" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 57098cd5e05..80b71ab553e 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.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-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "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/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -167,6 +167,10 @@ msgstr "0 é ilimitado" msgid "Maximum input size for ZIP files" msgstr "Tamanho máximo para ficheiros ZIP" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Novo" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 7e75ded7dfc..05fcf5b8bd0 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgid "Unable to load list from App Store" msgstr "Incapaz de carregar a lista da App Store" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Erro de autenticação" @@ -65,6 +65,16 @@ msgstr "" msgid "Language changed" msgstr "Idioma alterado" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Erro" @@ -181,12 +191,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Ver a página da aplicação em apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-licenciado" - -#: templates/apps.php:30 -msgid "by" -msgstr "por" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 44b3e74b60b..c9ff62753cc 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.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-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "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/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -167,6 +167,10 @@ msgstr "0 e nelimitat" msgid "Maximum input size for ZIP files" msgstr "Dimensiunea maximă de intrare pentru fișiere compresate" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Nou" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index a79fb9745d9..a1bc80deb8a 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -27,7 +27,7 @@ msgid "Unable to load list from App Store" msgstr "Imposibil de încărcat lista din App Store" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Eroare de autentificare" @@ -67,6 +67,16 @@ msgstr "" msgid "Language changed" msgstr "Limba a fost schimbată" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Erroare" @@ -183,12 +193,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Vizualizează pagina applicației pe apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-autorizat" - -#: templates/apps.php:30 -msgid "by" -msgstr "de" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 2203f972c16..e558e9777a9 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.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 02:57+0000\n" -"Last-Translator: Denis <reg.transifex.net@demitel.ru>\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "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/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -170,6 +170,10 @@ msgstr "0 - без ограничений" msgid "Maximum input size for ZIP files" msgstr "Максимальный исходный размер для ZIP файлов" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Новый" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 77b85075ddf..e898279374c 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -30,7 +30,7 @@ msgid "Unable to load list from App Store" msgstr "Загрузка из App Store запрещена" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Ошибка авторизации" @@ -70,6 +70,16 @@ msgstr "" msgid "Language changed" msgstr "Язык изменён" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Ошибка" @@ -186,12 +196,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Смотрите дополнения на apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-лицензия" - -#: templates/apps.php:30 -msgid "by" -msgstr "от" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/ru_RU/files.po b/l10n/ru_RU/files.po index f9bdd2abc96..2ea2165835d 100644 --- a/l10n/ru_RU/files.po +++ b/l10n/ru_RU/files.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-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "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/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -164,6 +164,10 @@ msgstr "" msgid "Maximum input size for ZIP files" msgstr "" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "" diff --git a/l10n/ru_RU/settings.po b/l10n/ru_RU/settings.po index 83bd8af32d9..210a41b0491 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -62,6 +62,16 @@ msgstr "" msgid "Language changed" msgstr "" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -178,11 +188,7 @@ msgid "See application page at apps.owncloud.com" msgstr "" #: templates/apps.php:30 -msgid "-licensed" -msgstr "" - -#: templates/apps.php:30 -msgid "by" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" msgstr "" #: templates/help.php:9 diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 49d1f0dcb6b..5d83420becd 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.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-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "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/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -166,6 +166,10 @@ msgstr "0 znamená neobmedzené" msgid "Maximum input size for ZIP files" msgstr "Najväčšia veľkosť ZIP súborov" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Nový" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 3bf4af03dcd..952da745483 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -65,6 +65,16 @@ msgstr "" msgid "Language changed" msgstr "Jazyk zmenený" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -181,12 +191,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Pozrite si stránku aplikácie na apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-licencované" - -#: templates/apps.php:30 -msgid "by" -msgstr "od" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 10c581f9878..f905c7b48cb 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.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:14+0000\n" -"Last-Translator: Peter Peroša <peter.perosa@gmail.com>\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "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/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -167,6 +167,10 @@ msgstr "0 je neskončno" msgid "Maximum input size for ZIP files" msgstr "Največja vhodna velikost za ZIP datoteke" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Nova" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index b30ea513e31..870976e9060 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgid "Unable to load list from App Store" msgstr "Ne morem naložiti seznama iz App Store" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Napaka overitve" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "Skupina že obstaja" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "Ni mogoče dodati skupine" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -55,16 +55,26 @@ msgstr "Neveljaven zahtevek" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "Ni mogoče izbrisati skupine" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "Ni mogoče izbrisati uporabnika" #: ajax/setlanguage.php:18 msgid "Language changed" msgstr "Jezik je bil spremenjen" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Napaka" @@ -181,12 +191,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Obiščite spletno stran aplikacije na apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-licencirana" - -#: templates/apps.php:30 -msgid "by" -msgstr "s strani" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/so/files.po b/l10n/so/files.po index 346d96b8bd9..c9c8fbd1ca1 100644 --- a/l10n/so/files.po +++ b/l10n/so/files.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-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "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/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -164,6 +164,10 @@ msgstr "" msgid "Maximum input size for ZIP files" msgstr "" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "" diff --git a/l10n/so/settings.po b/l10n/so/settings.po index 6663a83b9ab..8ed5f9eb221 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -62,6 +62,16 @@ msgstr "" msgid "Language changed" msgstr "" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -178,11 +188,7 @@ msgid "See application page at apps.owncloud.com" msgstr "" #: templates/apps.php:30 -msgid "-licensed" -msgstr "" - -#: templates/apps.php:30 -msgid "by" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" msgstr "" #: templates/help.php:9 diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 67e491506f3..49d3090e681 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.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-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "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/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -165,6 +165,10 @@ msgstr "" msgid "Maximum input size for ZIP files" msgstr "" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Нови" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 2106184cec8..bccf5024d34 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -23,7 +23,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -63,6 +63,16 @@ msgstr "" msgid "Language changed" msgstr "Језик је измењен" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -179,12 +189,8 @@ msgid "See application page at apps.owncloud.com" msgstr "" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-лиценциран" - -#: templates/apps.php:30 -msgid "by" -msgstr "од" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index 0c7f3b5acae..fd9e18816f3 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.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-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "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/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -165,6 +165,10 @@ msgstr "" msgid "Maximum input size for ZIP files" msgstr "" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index 4ed74b2b60e..4e8ca925401 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -23,7 +23,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -63,6 +63,16 @@ msgstr "" msgid "Language changed" msgstr "Jezik je izmenjen" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -179,12 +189,8 @@ msgid "See application page at apps.owncloud.com" msgstr "" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-licenciran" - -#: templates/apps.php:30 -msgid "by" -msgstr "od" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 719ccf3db60..38e7c5af596 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.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:09+0000\n" -"Last-Translator: Magnus Höglund <magnus@linux.com>\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "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/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -170,6 +170,10 @@ msgstr "0 är oändligt" msgid "Maximum input size for ZIP files" msgstr "Största tillåtna storlek för ZIP-filer" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Ny" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index d764dba4745..77788a1797d 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -29,7 +29,7 @@ msgid "Unable to load list from App Store" msgstr "Kan inte ladda listan från App Store" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Autentiseringsfel" @@ -69,6 +69,16 @@ msgstr "" msgid "Language changed" msgstr "Språk ändrades" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Fel" @@ -185,12 +195,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Se programsida på apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-licensierat" - -#: templates/apps.php:30 -msgid "by" -msgstr "av" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index bd9a67a3e18..329879e864c 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-04 12:42+0200\n" +"POT-Creation-Date: 2012-09-05 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,55 +33,55 @@ msgstr "" 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 "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 44f427e91d9..9d519c1a517 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-04 12:42+0200\n" +"POT-Creation-Date: 2012-09-05 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" @@ -164,6 +164,10 @@ msgstr "" msgid "Maximum input size for ZIP files" msgstr "" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 9a7f6a0e570..460fd2df782 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-04 12:42+0200\n" +"POT-Creation-Date: 2012-09-05 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 f8a9b597aa2..de03296ccbb 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-04 12:42+0200\n" +"POT-Creation-Date: 2012-09-05 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 7365c769038..e1ab849fe35 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-04 12:42+0200\n" +"POT-Creation-Date: 2012-09-05 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 bf919618a28..61a011e4e32 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-04 12:42+0200\n" +"POT-Creation-Date: 2012-09-05 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 100a1972264..82f5c27fddd 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-04 12:42+0200\n" +"POT-Creation-Date: 2012-09-05 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 15dce5bb11d..7c8028eff73 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-04 12:42+0200\n" +"POT-Creation-Date: 2012-09-05 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" @@ -22,7 +22,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -62,6 +62,16 @@ msgstr "" msgid "Language changed" msgstr "" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -177,11 +187,8 @@ msgid "See application page at apps.owncloud.com" msgstr "" #: templates/apps.php:30 -msgid "-licensed" -msgstr "" - -#: templates/apps.php:30 -msgid "by" +msgid "" +"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" msgstr "" #: templates/help.php:9 diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 0b3490afd51..b33a2245ac2 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-04 12:42+0200\n" +"POT-Creation-Date: 2012-09-05 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/files.po b/l10n/th_TH/files.po index 5068c75cf78..93ca73a3d10 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.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:03+0000\n" -"Last-Translator: AriesAnywhere Anywhere <ariesanywhere@gmail.com>\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "Content-Transfer-Encoding: 8bit\n" "Language: th_TH\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -166,6 +166,10 @@ msgstr "0 หมายถึงไม่จำกัด" msgid "Maximum input size for ZIP files" msgstr "ขนาดไฟล์ ZIP สูงสุด" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "อัพโหลดไฟล์ใหม่" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 0e3f5e33989..4de68241556 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgid "Unable to load list from App Store" msgstr "ไม่สามารถโหลดรายการจาก App Store ได้" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "เกิดข้อผิดพลาดเกี่ยวกับสิทธิ์การเข้าใช้งาน" @@ -65,6 +65,16 @@ msgstr "" msgid "Language changed" msgstr "เปลี่ยนภาษาเรียบร้อยแล้ว" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "ข้อผิดพลาด" @@ -181,12 +191,8 @@ msgid "See application page at apps.owncloud.com" msgstr "ดูหน้าแอพพลิเคชั่นที่ apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-ได้รับอนุญาติแล้ว" - -#: templates/apps.php:30 -msgid "by" -msgstr "โดย" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 94595a995e7..865f2bc6d66 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/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-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" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "Content-Transfer-Encoding: 8bit\n" "Language: tr\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -168,6 +168,10 @@ msgstr "0 limitsiz demektir" msgid "Maximum input size for ZIP files" msgstr "ZIP dosyaları için en fazla girdi sayısı" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Yeni" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index f5eccfa4001..927817d5436 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Eşleşme hata" @@ -65,6 +65,16 @@ msgstr "" msgid "Language changed" msgstr "Dil değiştirildi" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -181,12 +191,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Uygulamanın sayfasına apps.owncloud.com adresinden bakın " #: templates/apps.php:30 -msgid "-licensed" -msgstr "-lisanslı" - -#: templates/apps.php:30 -msgid "by" -msgstr "yapan" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 7b0f0a27ec5..ebdc5f8b9c0 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.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-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "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/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -166,6 +166,10 @@ msgstr "0 є безліміт" msgid "Maximum input size for ZIP files" msgstr "" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Створити" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index c0020d02c08..7a1ef6e3a0a 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -23,7 +23,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "" @@ -63,6 +63,16 @@ msgstr "" msgid "Language changed" msgstr "Мова змінена" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "" @@ -179,12 +189,8 @@ msgid "See application page at apps.owncloud.com" msgstr "" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-ліцензовано" - -#: templates/apps.php:30 -msgid "by" -msgstr "по" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 556eb3d9acb..6e2d43a3496 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.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-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "Content-Transfer-Encoding: 8bit\n" "Language: vi\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -165,6 +165,10 @@ msgstr "0 là không giới hạn" msgid "Maximum input size for ZIP files" msgstr "Kích thước tối đa cho các tập tin ZIP" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "Mới" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index d1b52d33422..b8c57b37234 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgid "Unable to load list from App Store" msgstr "Không thể tải danh sách ứng dụng từ App Store" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Lỗi xác thực" @@ -65,6 +65,16 @@ msgstr "" msgid "Language changed" msgstr "Ngôn ngữ đã được thay đổi" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "Lỗi" @@ -181,12 +191,8 @@ msgid "See application page at apps.owncloud.com" msgstr "Xem ứng dụng tại apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "Giấy phép đã được cấp" - -#: templates/apps.php:30 -msgid "by" -msgstr "bởi" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index fb7416be4a0..00bdb62e96f 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.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-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "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/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -165,6 +165,10 @@ msgstr "0是无限的" msgid "Maximum input size for ZIP files" msgstr "最大的ZIP文件输入大小" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "新建" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index 5b26ea59048..5e3311e0216 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -23,7 +23,7 @@ msgid "Unable to load list from App Store" msgstr "不能从App Store 中加载列表" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "认证错误" @@ -63,6 +63,16 @@ msgstr "" msgid "Language changed" msgstr "语言改变了" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "错误" @@ -179,12 +189,8 @@ msgid "See application page at apps.owncloud.com" msgstr "在owncloud.com上查看应用程序" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-许可了" - -#: templates/apps.php:30 -msgid "by" -msgstr "由" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 315f2654827..4e2d600c1e5 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.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-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -167,6 +167,10 @@ msgstr "0 为无限制" msgid "Maximum input size for ZIP files" msgstr "ZIP 文件的最大输入大小" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "新建" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 9d7fb799dbb..8af73f8879a 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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -26,7 +26,7 @@ msgid "Unable to load list from App Store" msgstr "无法从应用商店载入列表" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "认证错误" @@ -66,6 +66,16 @@ msgstr "" msgid "Language changed" msgstr "语言已修改" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "错误" @@ -182,12 +192,8 @@ msgid "See application page at apps.owncloud.com" msgstr "查看在 app.owncloud.com 的应用程序页面" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-许可证" - -#: templates/apps.php:30 -msgid "by" -msgstr "由" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 2bbfc8d8603..3c6aad93fce 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.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 20:40+0000\n" -"Last-Translator: ywang <ywang1007@gmail.com>\n" +"POT-Creation-Date: 2012-09-05 02:01+0200\n" +"PO-Revision-Date: 2012-09-05 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" "Content-Transfer-Encoding: 8bit\n" "Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" @@ -167,6 +167,10 @@ msgstr "0代表沒有限制" msgid "Maximum input size for ZIP files" msgstr "針對ZIP檔案最大輸入大小" +#: templates/admin.php:14 +msgid "Save" +msgstr "" + #: templates/index.php:7 msgid "New" msgstr "新增" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index fe812d4e273..ed6dc81bc13 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/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-09-04 12:42+0200\n" -"PO-Revision-Date: 2012-09-04 10:42+0000\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" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgid "Unable to load list from App Store" msgstr "無法從 App Store 讀取清單" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:18 +#: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "認證錯誤" @@ -65,6 +65,16 @@ msgstr "" msgid "Language changed" msgstr "語言已變更" +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + #: js/apps.js:18 msgid "Error" msgstr "錯誤" @@ -181,12 +191,8 @@ msgid "See application page at apps.owncloud.com" msgstr "查看應用程式頁面於 apps.owncloud.com" #: templates/apps.php:30 -msgid "-licensed" -msgstr "-已許可" - -#: templates/apps.php:30 -msgid "by" -msgstr "由" +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" #: templates/help.php:9 msgid "Documentation" diff --git a/lib/base.php b/lib/base.php index 61dea18689b..6c556e3d19c 100644 --- a/lib/base.php +++ b/lib/base.php @@ -51,7 +51,8 @@ class OC{ */ public static $THIRDPARTYWEBROOT = ''; /** - * The installation path array of the apps folder on the server (e.g. /srv/http/owncloud) 'path' and web path in 'url' + * The installation path array of the apps folder on the server (e.g. /srv/http/owncloud) 'path' and + * web path in 'url' */ public static $APPSROOTS = array(); /* @@ -89,7 +90,7 @@ class OC{ elseif(strpos($className, 'Sabre_')===0) { $path = str_replace('_', '/', $className) . '.php'; } - elseif(strpos($className,'Test_')===0) { + elseif(strpos($className, 'Test_')===0) { $path = 'tests/lib/'.strtolower(str_replace('_', '/', substr($className, 5)) . '.php'); }else{ return false; @@ -241,7 +242,7 @@ class OC{ //OC_Util::addScript( "multiselect" ); OC_Util::addScript('search', 'result'); - if( OC_Config::getValue( 'installed', false )){ + if( OC_Config::getValue( 'installed', false )) { if( OC_Appconfig::getValue( 'core', 'backgroundjobs_mode', 'ajax' ) == 'ajax' ) { OC_Util::addScript( 'backgroundjobs' ); } @@ -316,7 +317,7 @@ class OC{ // set debug mode if an xdebug session is active if (!defined('DEBUG') || !DEBUG) { if(isset($_COOKIE['XDEBUG_SESSION'])) { - define('DEBUG',true); + define('DEBUG', true); } } @@ -366,7 +367,7 @@ class OC{ OC_Hook::connect('OC_User', 'post_login', 'OC_Cache_File', 'loginListener'); // Check for blacklisted files - OC_Hook::connect('OC_Filesystem','write', 'OC_Filesystem', 'isBlacklisted'); + OC_Hook::connect('OC_Filesystem', 'write', 'OC_Filesystem', 'isBlacklisted'); OC_Hook::connect('OC_Filesystem', 'rename', 'OC_Filesystem', 'isBlacklisted'); //make sure temporary files are cleaned up @@ -558,7 +559,7 @@ class OC{ return false; } OC_App::loadApps(array('authentication')); - if (OC_User::login($_SERVER["PHP_AUTH_USER"],$_SERVER["PHP_AUTH_PW"])) { + if (OC_User::login($_SERVER["PHP_AUTH_USER"], $_SERVER["PHP_AUTH_PW"])) { //OC_Log::write('core',"Logged in with HTTP Authentication",OC_Log::DEBUG); OC_User::unsetMagicInCookie(); $_REQUEST['redirect_url'] = (isset($_SERVER['REQUEST_URI'])?$_SERVER['REQUEST_URI']:''); diff --git a/lib/cache.php b/lib/cache.php index fed990b5b34..62003793d5f 100644 --- a/lib/cache.php +++ b/lib/cache.php @@ -44,8 +44,8 @@ class OC_Cache { self::$global_cache = new OC_Cache_Broker(self::$global_cache_fast, self::$global_cache); } } - if($fast){ - if(self::$global_cache_fast){ + if($fast) { + if(self::$global_cache_fast) { return self::$global_cache_fast; }else{ return false; @@ -74,8 +74,8 @@ class OC_Cache { } } - if($fast){ - if(self::$user_cache_fast){ + if($fast) { + if(self::$user_cache_fast) { return self::$user_cache_fast; }else{ return false; @@ -138,7 +138,7 @@ class OC_Cache { * @return true */ static public function isFast() { - if(is_null(self::$isFast)){ + if(is_null(self::$isFast)) { self::$isFast=function_exists('xcache_set') || function_exists('apc_store'); } return self::$isFast; diff --git a/lib/config.php b/lib/config.php index 266d559126c..390469beacf 100644 --- a/lib/config.php +++ b/lib/config.php @@ -70,7 +70,7 @@ class OC_Config{ public static function getValue( $key, $default = null ){ self::readData(); - if( array_key_exists( $key, self::$cache )){ + if( array_key_exists( $key, self::$cache )) { return self::$cache[$key]; } @@ -108,7 +108,7 @@ class OC_Config{ public static function deleteKey( $key ){ self::readData(); - if( array_key_exists( $key, self::$cache )){ + if( array_key_exists( $key, self::$cache )) { // Delete key from cache unset( self::$cache[$key] ); @@ -126,17 +126,17 @@ class OC_Config{ * Reads the config file and saves it to the cache */ private static function readData(){ - if( self::$init ){ + if( self::$init ) { return true; } - if( !file_exists( OC::$SERVERROOT."/config/config.php" )){ + if( !file_exists( OC::$SERVERROOT."/config/config.php" )) { return false; } // Include the file, save the data from $CONFIG - include( OC::$SERVERROOT."/config/config.php" ); - if( isset( $CONFIG ) && is_array( $CONFIG )){ + include OC::$SERVERROOT."/config/config.php"; + if( isset( $CONFIG ) && is_array( $CONFIG )) { self::$cache = $CONFIG; } @@ -164,7 +164,9 @@ class OC_Config{ $result=@file_put_contents( $filename, $content ); if(!$result) { $tmpl = new OC_Template( '', 'error', 'guest' ); - $tmpl->assign('errors',array(1=>array('error'=>"Can't write into config directory 'config'",'hint'=>"You can usually fix this by giving the webserver user write access to the config directory in owncloud"))); + $tmpl->assign('errors', array(1=>array( + 'error'=>"Can't write into config directory 'config'", + 'hint'=>"You can usually fix this by giving the webserver user write access to the config directory in owncloud"))); $tmpl->printPage(); exit; } diff --git a/lib/db.php b/lib/db.php index 16b39208735..2f36416d0a6 100644 --- a/lib/db.php +++ b/lib/db.php @@ -42,14 +42,15 @@ class OC_DB { * @return BACKEND_MDB2 or BACKEND_PDO */ private static function getDBBackend(){ - if(class_exists('PDO') && OC_Config::getValue('installed', false)){//check if we can use PDO, else use MDB2 (installation always needs to be done my mdb2) + //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" ); if($type=='oci') { //oracle also always needs mdb2 return self::BACKEND_MDB2; } if($type=='sqlite3') $type='sqlite'; $drivers=PDO::getAvailableDrivers(); - if(array_search($type,$drivers)!==false){ + if(array_search($type, $drivers)!==false) { return self::BACKEND_PDO; } } @@ -63,13 +64,13 @@ class OC_DB { * Connects to the database as specified in config.php */ public static function connect($backend=null){ - if(self::$connection){ + if(self::$connection) { return; } - if(is_null($backend)){ + if(is_null($backend)) { $backend=self::getDBBackend(); } - if($backend==self::BACKEND_PDO){ + if($backend==self::BACKEND_PDO) { self::connectPDO(); self::$connection=self::$PDO; self::$backend=self::BACKEND_PDO; @@ -84,8 +85,8 @@ class OC_DB { * connect to the database using pdo */ public static function connectPDO(){ - if(self::$connection){ - if(self::$backend==self::BACKEND_MDB2){ + if(self::$connection) { + if(self::$backend==self::BACKEND_MDB2) { self::disconnect(); }else{ return; @@ -97,8 +98,8 @@ class OC_DB { $user = OC_Config::getValue( "dbuser", "" ); $pass = OC_Config::getValue( "dbpassword", "" ); $type = OC_Config::getValue( "dbtype", "sqlite" ); - if(strpos($host,':')){ - list($host,$port)=explode(':',$host,2); + if(strpos($host, ':')) { + list($host, $port)=explode(':', $host,2); }else{ $port=false; } @@ -106,9 +107,9 @@ class OC_DB { $datadir=OC_Config::getValue( "datadirectory", OC::$SERVERROOT.'/data' ); // do nothing if the connection already has been established - if(!self::$PDO){ + if(!self::$PDO) { // Add the dsn according to the database type - switch($type){ + switch($type) { case 'sqlite': $dsn='sqlite2:'.$datadir.'/'.$name.'.db'; break; @@ -116,7 +117,7 @@ class OC_DB { $dsn='sqlite:'.$datadir.'/'.$name.'.db'; break; case 'mysql': - if($port){ + if($port) { $dsn='mysql:dbname='.$name.';host='.$host.';port='.$port; }else{ $dsn='mysql:dbname='.$name.';host='.$host; @@ -124,7 +125,7 @@ class OC_DB { $opts[PDO::MYSQL_ATTR_INIT_COMMAND] = "SET NAMES 'UTF8'"; break; case 'pgsql': - if($port){ + if($port) { $dsn='pgsql:dbname='.$name.';host='.$host.';port='.$port; }else{ $dsn='pgsql:dbname='.$name.';host='.$host; @@ -139,22 +140,22 @@ class OC_DB { /** END OF FIX***/ break; case 'oci': // Oracle with PDO is unsupported - if ($port) { - $dsn = 'oci:dbname=//' . $host . ':' . $port . '/' . $name; - } else { - $dsn = 'oci:dbname=//' . $host . '/' . $name; - } - break; + if ($port) { + $dsn = 'oci:dbname=//' . $host . ':' . $port . '/' . $name; + } else { + $dsn = 'oci:dbname=//' . $host . '/' . $name; + } + break; } try{ - self::$PDO=new PDO($dsn,$user,$pass,$opts); + self::$PDO=new PDO($dsn, $user, $pass, $opts); }catch(PDOException $e){ echo( '<b>can not connect to database, using '.$type.'. ('.$e->getMessage().')</center>'); die(); } // We always, really always want associative arrays - self::$PDO->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE,PDO::FETCH_ASSOC); - self::$PDO->setAttribute(PDO::ATTR_ERRMODE,PDO::ERRMODE_EXCEPTION); + self::$PDO->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE, PDO::FETCH_ASSOC); + self::$PDO->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); } return true; } @@ -162,9 +163,9 @@ class OC_DB { /** * connect to the database using mdb2 */ - public static function connectMDB2(){ - if(self::$connection){ - if(self::$backend==self::BACKEND_PDO){ + public static function connectMDB2() { + if(self::$connection) { + if(self::$backend==self::BACKEND_PDO) { self::disconnect(); }else{ return; @@ -180,9 +181,9 @@ class OC_DB { $datadir=OC_Config::getValue( "datadirectory", "$SERVERROOT/data" ); // do nothing if the connection already has been established - if(!self::$MDB2){ + if(!self::$MDB2) { // Require MDB2.php (not required in the head of the file so we only load it when needed) - require_once('MDB2.php'); + require_once 'MDB2.php'; // Prepare options array $options = array( @@ -239,10 +240,10 @@ class OC_DB { self::$MDB2 = MDB2::factory( $dsn, $options ); // Die if we could not connect - if( PEAR::isError( self::$MDB2 )){ + if( PEAR::isError( self::$MDB2 )) { echo( '<b>can not connect to database, using '.$type.'. ('.self::$MDB2->getUserInfo().')</center>'); - OC_Log::write('core',self::$MDB2->getUserInfo(),OC_Log::FATAL); - OC_Log::write('core',self::$MDB2->getMessage(),OC_Log::FATAL); + OC_Log::write('core', self::$MDB2->getUserInfo(), OC_Log::FATAL); + OC_Log::write('core', self::$MDB2->getMessage(), OC_Log::FATAL); die( $error ); } @@ -290,14 +291,14 @@ class OC_DB { self::connect(); // return the result - if(self::$backend==self::BACKEND_MDB2){ + if(self::$backend==self::BACKEND_MDB2) { $result = self::$connection->prepare( $query ); // Die if we have an error (error means: bad query, not 0 results!) if( PEAR::isError($result)) { $entry = 'DB Error: "'.$result->getMessage().'"<br />'; $entry .= 'Offending command was: '.$query.'<br />'; - OC_Log::write('core',$entry,OC_Log::FATAL); + OC_Log::write('core', $entry,OC_Log::FATAL); error_log('DB error: '.$entry); die( $entry ); } @@ -307,7 +308,7 @@ class OC_DB { }catch(PDOException $e){ $entry = 'DB Error: "'.$e->getMessage().'"<br />'; $entry .= 'Offending command was: '.$query.'<br />'; - OC_Log::write('core',$entry,OC_Log::FATAL); + OC_Log::write('core', $entry,OC_Log::FATAL); error_log('DB error: '.$entry); die( $entry ); } @@ -328,7 +329,7 @@ class OC_DB { */ public static function insertid($table=null){ self::connect(); - if($table !== null){ + if($table !== null) { $prefix = OC_Config::getValue( "dbtableprefix", "oc_" ); $suffix = OC_Config::getValue( "dbsequencesuffix", "_id_seq" ); $table = str_replace( '*PREFIX*', $prefix, $table ); @@ -344,8 +345,8 @@ class OC_DB { */ public static function disconnect(){ // Cut connection if required - if(self::$connection){ - if(self::$backend==self::BACKEND_MDB2){ + if(self::$connection) { + if(self::$backend==self::BACKEND_MDB2) { self::$connection->disconnect(); } self::$connection=false; @@ -407,7 +408,7 @@ class OC_DB { * 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 ); } @@ -420,10 +421,10 @@ class OC_DB { unlink( $file2 ); // Die in case something went wrong - if( $definition instanceof MDB2_Schema_Error ){ + if( $definition instanceof MDB2_Schema_Error ) { die( $definition->getMessage().': '.$definition->getUserInfo()); } - if(OC_Config::getValue('dbtype','sqlite')==='oci'){ + if(OC_Config::getValue('dbtype', 'sqlite')==='oci') { unset($definition['charset']); //or MDB2 tries SHUTDOWN IMMEDIATE $oldname = $definition['name']; $definition['name']=OC_Config::getValue( "dbuser", $oldname ); @@ -432,7 +433,7 @@ class OC_DB { $ret=self::$schema->createDatabase( $definition ); // Die in case something went wrong - if( $ret instanceof MDB2_Error ){ + if( $ret instanceof MDB2_Error ) { echo (self::$MDB2->getDebugOutput()); die ($ret->getMessage() . ': ' . $ret->getUserInfo()); } @@ -456,7 +457,7 @@ class OC_DB { $previousSchema = self::$schema->getDefinitionFromDatabase(); if (PEAR::isError($previousSchema)) { $error = $previousSchema->getMessage(); - OC_Log::write('core','Failed to get existing database structure for upgrading ('.$error.')',OC_Log::FATAL); + OC_Log::write('core', 'Failed to get existing database structure for upgrading ('.$error.')', OC_Log::FATAL); return false; } @@ -483,7 +484,7 @@ class OC_DB { if (PEAR::isError($op)) { $error = $op->getMessage(); $detail = $op->getDebugInfo(); - OC_Log::write('core','Failed to update database structure ('.$error.', '.$detail.')',OC_Log::FATAL); + OC_Log::write('core', 'Failed to update database structure ('.$error.', '.$detail.')', OC_Log::FATAL); return false; } return true; @@ -502,8 +503,8 @@ class OC_DB { self::$MDB2->loadModule('Reverse'); // Connect if this did not happen before - if(!self::$schema){ - require_once('MDB2/Schema.php'); + if(!self::$schema) { + require_once 'MDB2/Schema.php'; self::$schema=MDB2_Schema::factory(self::$MDB2); } @@ -521,24 +522,24 @@ class OC_DB { private static function processQuery( $query ){ self::connect(); // We need Database type and table prefix - if(is_null(self::$type)){ + if(is_null(self::$type)) { self::$type=OC_Config::getValue( "dbtype", "sqlite" ); } $type = self::$type; - if(is_null(self::$prefix)){ + if(is_null(self::$prefix)) { self::$prefix=OC_Config::getValue( "dbtableprefix", "oc_" ); } $prefix = self::$prefix; // differences in escaping of table names ('`' for mysql) and getting the current timestamp - if( $type == 'sqlite' || $type == 'sqlite3' ){ + if( $type == 'sqlite' || $type == 'sqlite3' ) { $query = str_replace( '`', '"', $query ); $query = str_ireplace( 'NOW()', 'datetime(\'now\')', $query ); $query = str_ireplace( 'UNIX_TIMESTAMP()', 'strftime(\'%s\',\'now\')', $query ); - }elseif( $type == 'pgsql' ){ + }elseif( $type == 'pgsql' ) { $query = str_replace( '`', '"', $query ); $query = str_ireplace( 'UNIX_TIMESTAMP()', 'cast(extract(epoch from current_timestamp) as integer)', $query ); - }elseif( $type == 'oci' ){ + }elseif( $type == 'oci' ) { $query = str_replace( '`', '"', $query ); $query = str_ireplace( 'NOW()', 'CURRENT_TIMESTAMP', $query ); } @@ -600,7 +601,7 @@ class OC_DB { foreach($apps as $app){ $path = OC_App::getAppPath($app).'/appinfo/database.xml'; - if(file_exists($path)){ + if(file_exists($path)) { self::removeDBStructure( $path ); } } @@ -608,8 +609,7 @@ class OC_DB { // Create new tables self::createDBFromStructure( $file ); self::commit(); - - } + } /** * Start a transaction @@ -626,9 +626,9 @@ class OC_DB { /** * Commit the database changes done during a transaction that is in progress */ - public static function commit(){ + public static function commit() { self::connect(); - if(!self::$inTransaction){ + if(!self::$inTransaction) { return false; } self::$connection->commit(); @@ -641,7 +641,7 @@ class OC_DB { * @return bool */ public static function isError($result){ - if(!$result){ + if(!$result) { return true; }elseif(self::$backend==self::BACKEND_MDB2 and PEAR::isError($result)){ return true; @@ -672,7 +672,7 @@ class PDOStatementWrapper{ }else{ $result=$this->statement->execute(); } - if($result){ + if($result) { return $this; }else{ return false; @@ -703,7 +703,7 @@ class PDOStatementWrapper{ * pass all other function directly to the PDOStatement */ public function __call($name,$arguments){ - return call_user_func_array(array($this->statement,$name),$arguments); + return call_user_func_array(array($this->statement,$name), $arguments); } /** diff --git a/lib/l10n/he.php b/lib/l10n/he.php new file mode 100644 index 00000000000..149637d09d2 --- /dev/null +++ b/lib/l10n/he.php @@ -0,0 +1,28 @@ +<?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." => "הקבצים הנבחרים גדולים מידי ליצירת קובץ zip.", +"Application is not enabled" => "יישומים אינם מופעלים", +"Authentication error" => "שגיאת הזדהות", +"Token expired. Please reload page." => "פג תוקף. נא לטעון שוב את הדף.", +"seconds ago" => "שניות", +"1 minute ago" => "לפני דקה אחת", +"%d minutes ago" => "לפני %d דקות", +"today" => "היום", +"yesterday" => "אתמול", +"%d days ago" => "לפני %d ימים", +"last month" => "חודש שעבר", +"months ago" => "חודשים", +"last year" => "שנה שעברה", +"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/ar.php b/settings/l10n/ar.php index ff711e7ccc9..eca8a300b1b 100644 --- a/settings/l10n/ar.php +++ b/settings/l10n/ar.php @@ -4,8 +4,6 @@ "Language changed" => "تم تغيير اللغة", "__language_name__" => "__language_name__", "Select an App" => "إختر تطبيقاً", -"-licensed" => "-مسجل", -"by" => "من قبل", "Ask a question" => "إسأل سؤال", "Problems connecting to help database." => "الاتصال بقاعدة بيانات المساعدة لم يتم بنجاح", "Go there manually." => "إذهب هنالك بنفسك", diff --git a/settings/l10n/bg_BG.php b/settings/l10n/bg_BG.php index 4464f7596d3..b261c22b032 100644 --- a/settings/l10n/bg_BG.php +++ b/settings/l10n/bg_BG.php @@ -8,8 +8,6 @@ "Enable" => "Включване", "Saving..." => "Записване...", "Select an App" => "Изберете програма", -"-licensed" => "-лицензирано", -"by" => "от", "Documentation" => "Документация", "Ask a question" => "Задайте въпрос", "Problems connecting to help database." => "Проблеми при свързване с помощната база", diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 5c3f0edd97c..76fb2fd7fe5 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -1,10 +1,14 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "No s'ha pogut carregar la llista des de l'App Store", "Authentication error" => "Error d'autenticació", +"Group already exists" => "El grup ja existeix", +"Unable to add group" => "No es pot afegir el grup", "Email saved" => "S'ha desat el correu electrònic", "Invalid email" => "El correu electrònic no és vàlid", "OpenID Changed" => "OpenID ha canviat", "Invalid request" => "Sol.licitud no vàlida", +"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", "Error" => "Error", "Disable" => "Desactiva", @@ -32,8 +36,6 @@ "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", -"-licensed" => "- amb llicència", -"by" => "de", "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 a9c14b53663..e0be2117b84 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -21,8 +21,6 @@ "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", -"-licensed" => "-licencováno", -"by" => "podle", "Documentation" => "Dokumentace", "Managing Big Files" => "Spravování velkých souborů", "Ask a question" => "Zeptat se", diff --git a/settings/l10n/da.php b/settings/l10n/da.php index 35d34f6d3e4..0c09a25dfdb 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -29,8 +29,6 @@ "Add your App" => "Tilføj din App", "Select an App" => "Vælg en App", "See application page at apps.owncloud.com" => "Se applikationens side på apps.owncloud.com", -"-licensed" => "-licenseret", -"by" => "af", "Documentation" => "Dokumentation", "Managing Big Files" => "Håndter store filer", "Ask a question" => "Stil et spørgsmål", diff --git a/settings/l10n/de.php b/settings/l10n/de.php index 09fc7674d50..d955b75d0c3 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -1,10 +1,14 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Die Liste der Apps im Store konnte nicht geladen werden.", "Authentication error" => "Anmeldungsfehler", +"Group already exists" => "Gruppe existiert bereits", +"Unable to add group" => "Gruppe konnte nicht angelegt werden", "Email saved" => "E-Mail gespeichert", "Invalid email" => "Ungültige E-Mail", "OpenID Changed" => "OpenID geändert", "Invalid request" => "Ungültige Anfrage", +"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", "Error" => "Fehler", "Disable" => "Deaktivieren", @@ -32,8 +36,6 @@ "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", -"-licensed" => "-lizenziert", -"by" => "von", "Documentation" => "Dokumentation", "Managing Big Files" => "Große Dateien verwalten", "Ask a question" => "Stellen Sie eine Frage", diff --git a/settings/l10n/el.php b/settings/l10n/el.php index 671c3960bdd..833ef8e10d5 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -21,8 +21,6 @@ "Add your App" => "Πρόσθεσε τη δικιά σου εφαρμογή ", "Select an App" => "Επιλέξτε μια εφαρμογή", "See application page at apps.owncloud.com" => "Η σελίδα εφαρμογών στο apps.owncloud.com", -"-licensed" => "-με άδεια", -"by" => "από", "Documentation" => "Τεκμηρίωση", "Managing Big Files" => "Διαχείριση μεγάλων αρχείων", "Ask a question" => "Ρωτήστε μια ερώτηση", diff --git a/settings/l10n/eo.php b/settings/l10n/eo.php index ccc184097a5..cb84b2da037 100644 --- a/settings/l10n/eo.php +++ b/settings/l10n/eo.php @@ -21,8 +21,6 @@ "Add your App" => "Aldonu vian aplikaĵon", "Select an App" => "Elekti aplikaĵon", "See application page at apps.owncloud.com" => "Vidu la paĝon pri aplikaĵoj ĉe apps.owncloud.com", -"-licensed" => "-permesila", -"by" => "de", "Documentation" => "Dokumentaro", "Managing Big Files" => "Administrante grandajn dosierojn", "Ask a question" => "Faru demandon", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index 4b6bb2b90be..3ab7cb32ba8 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -1,10 +1,14 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Imposible cargar la lista desde el App Store", "Authentication error" => "Error de autenticación", +"Group already exists" => "El grupo ya existe", +"Unable to add group" => "No se pudo añadir el grupo", "Email saved" => "Correo guardado", "Invalid email" => "Correo no válido", "OpenID Changed" => "OpenID cambiado", "Invalid request" => "Solicitud no válida", +"Unable to delete group" => "No se pudo eliminar el grupo", +"Unable to delete user" => "No se pudo eliminar el usuario", "Language changed" => "Idioma cambiado", "Error" => "Error", "Disable" => "Desactivar", @@ -32,8 +36,6 @@ "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", -"-licensed" => "-autorizado", -"by" => "por", "Documentation" => "Documentación", "Managing Big Files" => "Administra archivos grandes", "Ask a question" => "Hacer una pregunta", diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index e0f0bcf7cf0..1f6cf1265dd 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -21,8 +21,6 @@ "Add your App" => "Lisa oma rakendus", "Select an App" => "Vali programm", "See application page at apps.owncloud.com" => "Vaata rakenduste lehte aadressil apps.owncloud.com", -"-licensed" => "-litsenseeritud", -"by" => "kelle poolt", "Documentation" => "Dokumentatsioon", "Managing Big Files" => "Suurte failide haldamine", "Ask a question" => "Küsi küsimus", diff --git a/settings/l10n/eu.php b/settings/l10n/eu.php index ab3d36e2a46..4c95c7e4718 100644 --- a/settings/l10n/eu.php +++ b/settings/l10n/eu.php @@ -32,8 +32,6 @@ "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", -"-licensed" => "lizentziarekin", -"by" => " Egilea:", "Documentation" => "Dokumentazioa", "Managing Big Files" => "Fitxategi handien kudeaketa", "Ask a question" => "Egin galdera bat", diff --git a/settings/l10n/fa.php b/settings/l10n/fa.php index 5fe6df4d9d9..215966728d6 100644 --- a/settings/l10n/fa.php +++ b/settings/l10n/fa.php @@ -15,8 +15,6 @@ "Add your App" => "برنامه خود را بیافزایید", "Select an App" => "یک برنامه انتخاب کنید", "See application page at apps.owncloud.com" => "صفحه این اٌپ را در apps.owncloud.com ببینید", -"-licensed" => "مجوزنامه", -"by" => "به وسیله", "Documentation" => "مستندات", "Managing Big Files" => "مدیریت پرونده های بزرگ", "Ask a question" => "یک سوال بپرسید", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index 4671f8b39a2..37a80aaeea1 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -1,10 +1,14 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Ei pystytä lataamaan listaa sovellusvarastosta (App Store)", "Authentication error" => "Todennusvirhe", +"Group already exists" => "Ryhmä on jo olemassa", +"Unable to add group" => "Ryhmän lisäys epäonnistui", "Email saved" => "Sähköposti tallennettu", "Invalid email" => "Virheellinen sähköposti", "OpenID Changed" => "OpenID on vaihdettu", "Invalid request" => "Virheellinen pyyntö", +"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", "Error" => "Virhe", "Disable" => "Poista käytöstä", @@ -32,8 +36,6 @@ "Add your App" => "Lisää ohjelmasi", "Select an App" => "Valitse ohjelma", "See application page at apps.owncloud.com" => "Katso sovellussivu osoitteessa apps.owncloud.com", -"-licensed" => "-lisenssöity", -"by" => "henkilölle", "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 c0a9b17df0f..890d1e39f10 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -1,10 +1,14 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Impossible de charger la liste depuis l'App Store", "Authentication error" => "Erreur d'authentification", +"Group already exists" => "Ce groupe existe déjà", +"Unable to add group" => "Impossible d'ajouter le groupe", "Email saved" => "E-mail sauvegardé", "Invalid email" => "E-mail invalide", "OpenID Changed" => "Identifiant OpenID changé", "Invalid request" => "Requête invalide", +"Unable to delete group" => "Impossible de supprimer le groupe", +"Unable to delete user" => "Impossible de supprimer l'utilisateur", "Language changed" => "Langue changée", "Error" => "Erreur", "Disable" => "Désactiver", @@ -32,8 +36,6 @@ "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", -"-licensed" => "sous licence", -"by" => "par", "Documentation" => "Documentation", "Managing Big Files" => "Gérer les gros fichiers", "Ask a question" => "Poser une question", diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php index 96a6b53694e..52aa13c461c 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -21,8 +21,6 @@ "Add your App" => "Engade o teu aplicativo", "Select an App" => "Escolla un Aplicativo", "See application page at apps.owncloud.com" => "Vexa a páxina do aplicativo en apps.owncloud.com", -"-licensed" => "-licenciado", -"by" => "por", "Documentation" => "Documentación", "Managing Big Files" => "Xestionar Grandes Ficheiros", "Ask a question" => "Pregunte", diff --git a/settings/l10n/he.php b/settings/l10n/he.php index 17e803a3256..c7189e94354 100644 --- a/settings/l10n/he.php +++ b/settings/l10n/he.php @@ -13,8 +13,6 @@ "Add your App" => "הוספת היישום שלך", "Select an App" => "בחירת יישום", "See application page at apps.owncloud.com" => "צפה בעמוד הישום ב apps.owncloud.com", -"-licensed" => "רשיון", -"by" => "מאת", "Documentation" => "תיעוד", "Managing Big Files" => "ניהול קבצים גדולים", "Ask a question" => "שאל שאלה", diff --git a/settings/l10n/hr.php b/settings/l10n/hr.php index 608a23e69ec..8c5251520cc 100644 --- a/settings/l10n/hr.php +++ b/settings/l10n/hr.php @@ -19,8 +19,6 @@ "Add your App" => "Dodajte vašu aplikaciju", "Select an App" => "Odaberite Aplikaciju", "See application page at apps.owncloud.com" => "Pogledajte stranicu s aplikacijama na apps.owncloud.com", -"-licensed" => "-licencirano", -"by" => "od", "Documentation" => "dokumentacija", "Managing Big Files" => "Upravljanje velikih datoteka", "Ask a question" => "Postavite pitanje", diff --git a/settings/l10n/hu_HU.php b/settings/l10n/hu_HU.php index 0a8c6c14cd3..23534d85759 100644 --- a/settings/l10n/hu_HU.php +++ b/settings/l10n/hu_HU.php @@ -17,8 +17,6 @@ "Add your App" => "App hozzáadása", "Select an App" => "Egy App kiválasztása", "See application page at apps.owncloud.com" => "Lásd apps.owncloud.com, alkalmazások oldal", -"-licensed" => "-licencelt", -"by" => ":", "Documentation" => "Dokumentáció", "Managing Big Files" => "Nagy fájlok kezelése", "Ask a question" => "Tégy fel egy kérdést", diff --git a/settings/l10n/ia.php b/settings/l10n/ia.php index 7b2b631b687..e9d6a065a21 100644 --- a/settings/l10n/ia.php +++ b/settings/l10n/ia.php @@ -7,7 +7,6 @@ "More" => "Plus", "Add your App" => "Adder tu application", "Select an App" => "Selectionar un app", -"by" => "per", "Documentation" => "Documentation", "Ask a question" => "Facer un question", "Answer" => "Responsa", diff --git a/settings/l10n/id.php b/settings/l10n/id.php index a69d9855cae..636be1af955 100644 --- a/settings/l10n/id.php +++ b/settings/l10n/id.php @@ -14,8 +14,6 @@ "Add your App" => "Tambahkan App anda", "Select an App" => "Pilih satu aplikasi", "See application page at apps.owncloud.com" => "Lihat halaman aplikasi di apps.owncloud.com", -"-licensed" => "-terlisensi", -"by" => "oleh", "Documentation" => "Dokumentasi", "Managing Big Files" => "Mengelola berkas besar", "Ask a question" => "Ajukan pertanyaan", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index cc3e6578ac3..8c8ec63f4c4 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -1,10 +1,14 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Impossibile caricare l'elenco dall'App Store", "Authentication error" => "Errore di autenticazione", +"Group already exists" => "Il gruppo esiste già", +"Unable to add group" => "Impossibile aggiungere il gruppo", "Email saved" => "Email salvata", "Invalid email" => "Email non valida", "OpenID Changed" => "OpenID modificato", "Invalid request" => "Richiesta non valida", +"Unable to delete group" => "Impossibile eliminare il gruppo", +"Unable to delete user" => "Impossibile eliminare l'utente", "Language changed" => "Lingua modificata", "Error" => "Errore", "Disable" => "Disabilita", @@ -32,8 +36,6 @@ "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", -"-licensed" => "-rilasciato", -"by" => "da", "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 0e5add877c0..dcf0568cbaa 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -32,8 +32,6 @@ "Add your App" => "アプリを追加", "Select an App" => "アプリを選択してください", "See application page at apps.owncloud.com" => "apps.owncloud.com でアプリケーションのページを見てください", -"-licensed" => "ライセンス", -"by" => "@", "Documentation" => "ドキュメント", "Managing Big Files" => "大きなファイルを扱うには", "Ask a question" => "質問してください", diff --git a/settings/l10n/ko.php b/settings/l10n/ko.php index e0baad73d23..ada09c845cf 100644 --- a/settings/l10n/ko.php +++ b/settings/l10n/ko.php @@ -21,8 +21,6 @@ "Add your App" => "앱 추가", "Select an App" => "프로그램 선택", "See application page at apps.owncloud.com" => "application page at apps.owncloud.com을 보시오.", -"-licensed" => " 라이선스 사용", -"by" => " by ", "Documentation" => "문서", "Managing Big Files" => "큰 파일 관리", "Ask a question" => "질문하기", diff --git a/settings/l10n/lb.php b/settings/l10n/lb.php index 8dc05e6b497..55db067f8cf 100644 --- a/settings/l10n/lb.php +++ b/settings/l10n/lb.php @@ -27,8 +27,6 @@ "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", "Managing Big Files" => "Grouss Fichieren verwalten", "Ask a question" => "Stell eng Fro", diff --git a/settings/l10n/lt_LT.php b/settings/l10n/lt_LT.php index e8076e293be..701ec867270 100644 --- a/settings/l10n/lt_LT.php +++ b/settings/l10n/lt_LT.php @@ -17,7 +17,6 @@ "More" => "Daugiau", "Add your App" => "Pridėti programėlę", "Select an App" => "Pasirinkite programą", -"-licensed" => "-licencijuota", "Documentation" => "Dokumentacija", "Ask a question" => "Užduoti klausimą", "Problems connecting to help database." => "Problemos jungiantis prie duomenų bazės", diff --git a/settings/l10n/lv.php b/settings/l10n/lv.php index 67b55f90017..9780127890a 100644 --- a/settings/l10n/lv.php +++ b/settings/l10n/lv.php @@ -18,8 +18,6 @@ "Add your App" => "Pievieno savu aplikāciju", "Select an App" => "Izvēlies aplikāciju", "See application page at apps.owncloud.com" => "Apskatie aplikāciju lapu - apps.owncloud.com", -"-licensed" => "licenzēts", -"by" => "no", "Documentation" => "Dokumentācija", "Managing Big Files" => "Rīkoties ar apjomīgiem failiem", "Ask a question" => "Uzdod jautajumu", diff --git a/settings/l10n/mk.php b/settings/l10n/mk.php index 38e3cc6e09e..ce89f3b40c7 100644 --- a/settings/l10n/mk.php +++ b/settings/l10n/mk.php @@ -13,8 +13,6 @@ "Add your App" => "Додадете ја Вашата апликација", "Select an App" => "Избери аппликација", "See application page at apps.owncloud.com" => "Види ја страницата со апликации на apps.owncloud.com", -"-licensed" => "-licensed", -"by" => "од", "Documentation" => "Документација", "Managing Big Files" => "Управување со големи датотеки", "Ask a question" => "Постави прашање", diff --git a/settings/l10n/ms_MY.php b/settings/l10n/ms_MY.php index 8d9ac2fa695..a1d3007c895 100644 --- a/settings/l10n/ms_MY.php +++ b/settings/l10n/ms_MY.php @@ -15,8 +15,6 @@ "Add your App" => "Tambah apps anda", "Select an App" => "Pilih aplikasi", "See application page at apps.owncloud.com" => "Lihat halaman applikasi di apps.owncloud.com", -"-licensed" => "-dilesen", -"by" => "oleh", "Documentation" => "Dokumentasi", "Managing Big Files" => "Mengurus Fail Besar", "Ask a question" => "Tanya soalan", diff --git a/settings/l10n/nb_NO.php b/settings/l10n/nb_NO.php index 6536e50e21f..57c18813522 100644 --- a/settings/l10n/nb_NO.php +++ b/settings/l10n/nb_NO.php @@ -21,8 +21,6 @@ "Add your App" => "Legg til din App", "Select an App" => "Velg en app", "See application page at apps.owncloud.com" => "Se applikasjonens side på apps.owncloud.org", -"-licensed" => "-lisensiert", -"by" => "av", "Documentation" => "Dokumentasjon", "Managing Big Files" => "Håndtere store filer", "Ask a question" => "Still et spørsmål", diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index 081e6af8f50..ffa00dabaa1 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -30,8 +30,6 @@ "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", -"-licensed" => "-gelicentieerd", -"by" => "door", "Documentation" => "Documentatie", "Managing Big Files" => "Onderhoud van grote bestanden", "Ask a question" => "Stel een vraag", diff --git a/settings/l10n/nn_NO.php b/settings/l10n/nn_NO.php index 7b1a35c8efb..25cf29b91d5 100644 --- a/settings/l10n/nn_NO.php +++ b/settings/l10n/nn_NO.php @@ -11,8 +11,6 @@ "Enable" => "Slå på", "__language_name__" => "Nynorsk", "Select an App" => "Vel ein applikasjon", -"-licensed" => "-lisensiert", -"by" => "av", "Ask a question" => "Spør om noko", "Problems connecting to help database." => "Problem ved tilkopling til hjelpedatabasen.", "Go there manually." => "Gå der på eigen hand.", diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index 693727bcb75..ee50d0fffa7 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -1,10 +1,14 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Nie mogę załadować listy aplikacji", "Authentication error" => "Błąd uwierzytelniania", +"Group already exists" => "Grupa już istnieje", +"Unable to add group" => "Nie można dodać grupy", "Email saved" => "Email zapisany", "Invalid email" => "Niepoprawny email", "OpenID Changed" => "Zmieniono OpenID", "Invalid request" => "Nieprawidłowe żądanie", +"Unable to delete group" => "Nie można usunąć grupy", +"Unable to delete user" => "Nie można usunąć użytkownika", "Language changed" => "Język zmieniony", "Error" => "Błąd", "Disable" => "Wyłączone", @@ -26,8 +30,6 @@ "Add your App" => "Dodaj aplikacje", "Select an App" => "Zaznacz aplikacje", "See application page at apps.owncloud.com" => "Zobacz stronę aplikacji na apps.owncloud.com", -"-licensed" => "-licencjonowany", -"by" => "przez", "Documentation" => "Dokumentacja", "Managing Big Files" => "Zarządzanie dużymi plikami", "Ask a question" => "Zadaj pytanie", diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php index 55b09b27f89..6933e585545 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -18,8 +18,6 @@ "Add your App" => "Adicione seu Aplicativo", "Select an App" => "Selecione uma Aplicação", "See application page at apps.owncloud.com" => "Ver página do aplicativo em apps.owncloud.com", -"-licensed" => "-licenciados", -"by" => "por", "Documentation" => "Documentação", "Managing Big Files" => "Gerênciando Arquivos Grandes", "Ask a question" => "Faça uma pergunta", diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index c3c575bcbe6..bf939df4aeb 100644 --- a/settings/l10n/pt_PT.php +++ b/settings/l10n/pt_PT.php @@ -21,8 +21,6 @@ "Add your App" => "Adicione a sua aplicação", "Select an App" => "Selecione uma aplicação", "See application page at apps.owncloud.com" => "Ver a página da aplicação em apps.owncloud.com", -"-licensed" => "-licenciado", -"by" => "por", "Documentation" => "Documentação", "Managing Big Files" => "Gestão de ficheiros grandes", "Ask a question" => "Coloque uma questão", diff --git a/settings/l10n/ro.php b/settings/l10n/ro.php index ebb1066a742..c82cdaab2a4 100644 --- a/settings/l10n/ro.php +++ b/settings/l10n/ro.php @@ -21,8 +21,6 @@ "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", "Managing Big Files" => "Gestionînd fișiere mari", "Ask a question" => "Întreabă", diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index 3d8ecbf5163..5cbeb002ec6 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -21,8 +21,6 @@ "Add your App" => "Добавить приложение", "Select an App" => "Выберите приложение", "See application page at apps.owncloud.com" => "Смотрите дополнения на apps.owncloud.com", -"-licensed" => "-лицензия", -"by" => "от", "Documentation" => "Документация", "Managing Big Files" => "Управление большими файлами", "Ask a question" => "Задать вопрос", diff --git a/settings/l10n/sk_SK.php b/settings/l10n/sk_SK.php index edf908ce097..f8032afe5b4 100644 --- a/settings/l10n/sk_SK.php +++ b/settings/l10n/sk_SK.php @@ -13,8 +13,6 @@ "Add your App" => "Pridať vašu aplikáciu", "Select an App" => "Vyberte aplikáciu", "See application page at apps.owncloud.com" => "Pozrite si stránku aplikácie na apps.owncloud.com", -"-licensed" => "-licencované", -"by" => "od", "Documentation" => "Dokumentácia", "Managing Big Files" => "Spravovanie veľké súbory", "Ask a question" => "Opýtajte sa otázku", diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index 834311a7e73..fc49d940b47 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -1,10 +1,14 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Ne morem naložiti seznama iz App Store", "Authentication error" => "Napaka overitve", +"Group already exists" => "Skupina že obstaja", +"Unable to add group" => "Ni mogoče dodati skupine", "Email saved" => "E-poštni naslov je bil shranjen", "Invalid email" => "Neveljaven e-poštni naslov", "OpenID Changed" => "OpenID je bil spremenjen", "Invalid request" => "Neveljaven zahtevek", +"Unable to delete group" => "Ni mogoče izbrisati skupine", +"Unable to delete user" => "Ni mogoče izbrisati uporabnika", "Language changed" => "Jezik je bil spremenjen", "Error" => "Napaka", "Disable" => "Onemogoči", @@ -32,8 +36,6 @@ "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", -"-licensed" => "-licencirana", -"by" => "s strani", "Documentation" => "Dokumentacija", "Managing Big Files" => "Upravljanje velikih datotek", "Ask a question" => "Postavi vprašanje", diff --git a/settings/l10n/sr.php b/settings/l10n/sr.php index 7dede8fdc74..84881c2f1a8 100644 --- a/settings/l10n/sr.php +++ b/settings/l10n/sr.php @@ -3,8 +3,6 @@ "Invalid request" => "Неисправан захтев", "Language changed" => "Језик је измењен", "Select an App" => "Изаберите програм", -"-licensed" => "-лиценциран", -"by" => "од", "Ask a question" => "Поставите питање", "Problems connecting to help database." => "Проблем у повезивању са базом помоћи", "Go there manually." => "Отиђите тамо ручно.", diff --git a/settings/l10n/sr@latin.php b/settings/l10n/sr@latin.php index 0229a763613..8bfc0fa989f 100644 --- a/settings/l10n/sr@latin.php +++ b/settings/l10n/sr@latin.php @@ -3,8 +3,6 @@ "Invalid request" => "Neispravan zahtev", "Language changed" => "Jezik je izmenjen", "Select an App" => "Izaberite program", -"-licensed" => "-licenciran", -"by" => "od", "Ask a question" => "Postavite pitanje", "Problems connecting to help database." => "Problem u povezivanju sa bazom pomoći", "Go there manually." => "Otiđite tamo ručno.", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index c2292b23f9c..9beb500194d 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -32,8 +32,6 @@ "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", -"-licensed" => "-licensierat", -"by" => "av", "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 46bdf08aa92..7166c26a1ce 100644 --- a/settings/l10n/th_TH.php +++ b/settings/l10n/th_TH.php @@ -32,8 +32,6 @@ "Add your App" => "เพิ่มแอปของคุณ", "Select an App" => "เลือก App", "See application page at apps.owncloud.com" => "ดูหน้าแอพพลิเคชั่นที่ apps.owncloud.com", -"-licensed" => "-ได้รับอนุญาติแล้ว", -"by" => "โดย", "Documentation" => "เอกสารคู่มือการใช้งาน", "Managing Big Files" => "การจัดการไฟล์ขนาดใหญ่", "Ask a question" => "สอบถามข้อมูล", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index 2350dc49aa6..6e68d792e74 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -15,8 +15,6 @@ "Add your App" => "Uygulamanı Ekle", "Select an App" => "Bir uygulama seçin", "See application page at apps.owncloud.com" => "Uygulamanın sayfasına apps.owncloud.com adresinden bakın ", -"-licensed" => "-lisanslı", -"by" => "yapan", "Documentation" => "Dökümantasyon", "Managing Big Files" => "Büyük Dosyaların Yönetimi", "Ask a question" => "Bir soru sorun", diff --git a/settings/l10n/uk.php b/settings/l10n/uk.php index 7331ff324c1..37ecd73fb68 100644 --- a/settings/l10n/uk.php +++ b/settings/l10n/uk.php @@ -3,8 +3,6 @@ "Invalid request" => "Помилковий запит", "Language changed" => "Мова змінена", "Select an App" => "Вибрати додаток", -"-licensed" => "-ліцензовано", -"by" => "по", "Ask a question" => "Запитати", "Problems connecting to help database." => "Проблема при з'єднані з базою допомоги", "You use" => "Ви використовуєте", diff --git a/settings/l10n/vi.php b/settings/l10n/vi.php index 95dd88c62c0..1cad2e148d0 100644 --- a/settings/l10n/vi.php +++ b/settings/l10n/vi.php @@ -17,8 +17,6 @@ "Add your App" => "Thêm ứng dụng của bạn", "Select an App" => "Chọn một ứng dụng", "See application page at apps.owncloud.com" => "Xem ứng dụng tại apps.owncloud.com", -"-licensed" => "Giấy phép đã được cấp", -"by" => "bởi", "Documentation" => "Tài liệu", "Managing Big Files" => "Quản lý tập tin lớn", "Ask a question" => "Đặt câu hỏi", diff --git a/settings/l10n/zh_CN.GB2312.php b/settings/l10n/zh_CN.GB2312.php index f4e0a42c83b..83111beb10e 100644 --- a/settings/l10n/zh_CN.GB2312.php +++ b/settings/l10n/zh_CN.GB2312.php @@ -18,8 +18,6 @@ "Add your App" => "添加你的应用程序", "Select an App" => "选择一个程序", "See application page at apps.owncloud.com" => "在owncloud.com上查看应用程序", -"-licensed" => "-许可了", -"by" => "由", "Documentation" => "文档", "Managing Big Files" => "管理大文件", "Ask a question" => "提一个问题", diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php index 2adb0e104e5..0667cee74bb 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -21,8 +21,6 @@ "Add your App" => "添加应用", "Select an App" => "选择一个应用", "See application page at apps.owncloud.com" => "查看在 app.owncloud.com 的应用程序页面", -"-licensed" => "-许可证", -"by" => "由", "Documentation" => "文档", "Managing Big Files" => "管理大文件", "Ask a question" => "提问", diff --git a/settings/l10n/zh_TW.php b/settings/l10n/zh_TW.php index 82dd8dd42be..e0eeddb375e 100644 --- a/settings/l10n/zh_TW.php +++ b/settings/l10n/zh_TW.php @@ -17,8 +17,6 @@ "Add your App" => "添加你的 App", "Select an App" => "選擇一個應用程式", "See application page at apps.owncloud.com" => "查看應用程式頁面於 apps.owncloud.com", -"-licensed" => "-已許可", -"by" => "由", "Documentation" => "文件", "Managing Big Files" => "管理大檔案", "Ask a question" => "提問", diff --git a/settings/templates/users.php b/settings/templates/users.php index d862fa1cadf..eef9b291357 100644 --- a/settings/templates/users.php +++ b/settings/templates/users.php @@ -17,7 +17,7 @@ $_['subadmingroups'] = array_flip($items); var isadmin = <?php echo $_['isadmin']?'true':'false'; ?>; </script> <div id="controls"> - <form id="newuser"> + <form id="newuser" autocomplete="off"> <input id="newusername" type="text" placeholder="<?php echo $l->t('Name')?>" /> <input type="password" id="newuserpassword" placeholder="<?php echo $l->t('Password')?>" /> <select |