Merge branch 'master' of git://github.com/owncloud/core

This commit is contained in:
Brice Maron 2012-09-05 16:16:36 +00:00
commit 5fc4c78106
191 changed files with 1718 additions and 1066 deletions

View file

@ -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 (){

View file

@ -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){

View file

@ -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" => "יאפשר למשתמשים לעגן את האחסון החיצוני שלהם"
);

View file

@ -0,0 +1,7 @@
<?php $TRANSLATIONS = array(
"Password" => "ססמה",
"Submit" => "שליחה",
"Download" => "הורדה",
"No preview available for" => "אין תצוגה מקדימה זמינה עבור",
"web services under your control" => "שירותי רשת תחת השליטה שלך"
);

View file

@ -0,0 +1,6 @@
<?php $TRANSLATIONS = array(
"Expire all versions" => "הפגת תוקף כל הגרסאות",
"Versions" => "גרסאות",
"This will delete all existing backup versions of your files" => "פעולה זו תמחק את כל גיבויי הגרסאות הקיימים של הקבצים שלך",
"Enable Files Versioning" => "הפעלת ניהול גרסאות לקבצים"
);

View file

@ -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.",

View file

@ -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>

View file

@ -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 ""

View file

@ -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

View file

@ -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 "جديد"

View file

@ -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"

View file

@ -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 ""

View file

@ -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

View file

@ -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 "Нов"

View file

@ -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"

View file

@ -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"

View file

@ -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"

View file

@ -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ý"

View file

@ -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"

View file

@ -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"

View file

@ -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"

View file

@ -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"

View file

@ -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"

View file

@ -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 "Νέο"

View file

@ -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"

View file

@ -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"

View file

@ -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"

View file

@ -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"

View file

@ -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"

View file

@ -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"

View file

@ -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"

View file

@ -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"

View file

@ -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"

View file

@ -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 ""

View file

@ -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

View file

@ -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 "جدید"

View file

@ -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"

View file

@ -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 ""

View file

@ -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

View file

@ -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"

View file

@ -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"

View file

@ -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."

View file

@ -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"

View file

@ -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"

View file

@ -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"

View file

@ -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"

View file

@ -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 "חדש"

View file

@ -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 "יאפשר למשתמשים לעגן את האחסון החיצוני שלהם"

View file

@ -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 "שירותי רשת תחת השליטה שלך"

View file

@ -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 "הפעלת ניהול גרסאות לקבצים"

View file

@ -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 ""
#: template.php:86
msgid "seconds ago"
msgstr ""
msgstr "פג תוקף. נא לטעון שוב את הדף."
#: template.php:87
msgid "1 minute ago"
msgstr ""
msgid "seconds ago"
msgstr "שניות"
#: template.php:88
msgid "1 minute ago"
msgstr "לפני דקה אחת"
#: template.php:89
#, php-format
msgid "%d minutes ago"
msgstr ""
#: template.php:91
msgid "today"
msgstr ""
msgstr "לפני %d דקות"
#: template.php:92
msgid "yesterday"
msgstr ""
msgid "today"
msgstr "היום"
#: template.php:93
#, php-format
msgid "%d days ago"
msgstr ""
msgid "yesterday"
msgstr "אתמול"
#: template.php:94
msgid "last month"
msgstr ""
#, php-format
msgid "%d days ago"
msgstr "לפני %d ימים"
#: template.php:95
msgid "months ago"
msgstr ""
msgid "last month"
msgstr "חודש שעבר"
#: template.php:96
msgid "last year"
msgstr ""
msgid "months ago"
msgstr "חודשים"
#: template.php:97
msgid "last year"
msgstr "שנה שעברה"
#: 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 "בדיקת עדכונים מנוטרלת"

View file

@ -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"

View file

@ -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 ""

View file

@ -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

View file

@ -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"

View file

@ -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"

View file

@ -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"

View file

@ -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"

View file

@ -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 ""

View file

@ -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

View file

@ -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"

View file

@ -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"

View file

@ -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"

View file

@ -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"

View file

@ -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 ""

View file

@ -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

View file

@ -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"

View file

@ -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"

View file

@ -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 "新規"

View file

@ -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"

View file

@ -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 "새로 만들기"

View file

@ -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"

View file

@ -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"

View file

@ -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"

View file

@ -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"

View file

@ -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

View file

@ -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"

View file

@ -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"

View file

@ -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 "Ново"

View file

@ -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"

View file

@ -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"

View file

@ -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"

View file

@ -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"

View file

@ -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"

View file

@ -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"

View file

@ -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"

View file

@ -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"

View file

@ -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"

View file

@ -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"

View file

@ -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"

View file

@ -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 ""

View file

@ -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

View file

@ -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"

View file

@ -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"

View file

@ -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"

View file

@ -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"

View file

@ -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"

View file

@ -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"

View file

@ -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 "Новый"

View file

@ -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"

Some files were not shown because too many files have changed in this diff Show more