Merge branch 'master' into filesystem
This commit is contained in:
commit
ac44506b40
|
@ -5,7 +5,7 @@
|
|||
<description>File Management</description>
|
||||
<licence>AGPL</licence>
|
||||
<author>Robin Appelman</author>
|
||||
<require>4</require>
|
||||
<require>4.9</require>
|
||||
<shipped>true</shipped>
|
||||
<standalone/>
|
||||
<default_enable/>
|
||||
|
|
|
@ -1,16 +1,16 @@
|
|||
<?php
|
||||
|
||||
// fix webdav properties,add namespace in front of the property, update for OC4.5
|
||||
$installedVersion=OCP\Config::getAppValue('files', 'installed_version');
|
||||
if (version_compare($installedVersion, '1.1.6', '<')) {
|
||||
$query = OC_DB::prepare( "SELECT propertyname, propertypath, userid FROM `*PREFIX*properties`" );
|
||||
$result = $query->execute();
|
||||
// fix webdav properties,add namespace in front of the property, update for OC4.5
|
||||
$installedVersion=OCP\Config::getAppValue('files', 'installed_version');
|
||||
if (version_compare($installedVersion, '1.1.6', '<')) {
|
||||
$query = OC_DB::prepare( "SELECT `propertyname`, `propertypath`, `userid` FROM `*PREFIX*properties`" );
|
||||
$result = $query->execute();
|
||||
while( $row = $result->fetchRow()){
|
||||
if ( $row["propertyname"][0] != '{' ) {
|
||||
$query = OC_DB::prepare( 'UPDATE *PREFIX*properties SET propertyname = ? WHERE userid = ? AND propertypath = ?' );
|
||||
if ( $row["propertyname"][0] != '{' ) {
|
||||
$query = OC_DB::prepare( 'UPDATE `*PREFIX*properties` SET `propertyname` = ? WHERE `userid` = ? AND `propertypath` = ?' );
|
||||
$query->execute( array( '{DAV:}' + $row["propertyname"], $row["userid"], $row["propertypath"] ));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//update from OC 3
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
.file_upload_form, #file_newfolder_form { display:inline; float: left; margin-left:0; }
|
||||
#fileSelector, #file_upload_submit, #file_newfolder_submit { display:none; }
|
||||
.file_upload_wrapper, #file_newfolder_name { background-repeat:no-repeat; background-position:.5em .5em; padding-left:2em; }
|
||||
.file_upload_wrapper { font-weight:bold; display:-moz-inline-box; /* fallback for older firefox versions*/ display:inline-block; padding-left:0; overflow:hidden; position:relative; margin:0;}
|
||||
.file_upload_wrapper { font-weight:bold; display:-moz-inline-box; /* fallback for older firefox versions*/ display:block; float:left; padding-left:0; overflow:hidden; position:relative; margin:0;}
|
||||
.file_upload_wrapper .file_upload_button_wrapper { position:absolute; top:0; left:0; width:100%; height:100%; cursor:pointer; z-index:1000; }
|
||||
#new { background-color:#5bb75b; float:left; border-top-right-radius:0; border-bottom-right-radius:0; margin:0 0 0 1em; border-right:none; z-index:1010; height:1.3em; }
|
||||
#new:hover, a.file_upload_button_wrapper:hover + button.file_upload_filename { background-color:#4b964b; }
|
||||
|
|
|
@ -157,22 +157,21 @@ var FileList={
|
|||
});
|
||||
|
||||
}
|
||||
|
||||
tr.attr('data-file', newname);
|
||||
var path = td.children('a.name').attr('href');
|
||||
td.children('a.name').attr('href', path.replace(encodeURIComponent(name), encodeURIComponent(newname)));
|
||||
if (newname.indexOf('.') > 0 && tr.data('type') != 'dir') {
|
||||
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 && tr.data('type') != 'dir') {
|
||||
span.append($('<span class="extension">'+newname.substr(newname.lastIndexOf('.'))+'</span>'));
|
||||
}
|
||||
}
|
||||
tr.attr('data-file', newname);
|
||||
var path = td.children('a.name').attr('href');
|
||||
td.children('a.name').attr('href', path.replace(encodeURIComponent(name), encodeURIComponent(newname)));
|
||||
if (newname.indexOf('.') > 0 && tr.data('type') != 'dir') {
|
||||
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 && tr.data('type') != 'dir') {
|
||||
span.append($('<span class="extension">'+newname.substr(newname.lastIndexOf('.'))+'</span>'));
|
||||
}
|
||||
return false;
|
||||
});
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
"Files" => "Fitxers",
|
||||
"Unshare" => "Deixa de compartir",
|
||||
"Delete" => "Suprimeix",
|
||||
"Rename" => "Reanomena",
|
||||
"already exists" => "ja existeix",
|
||||
"replace" => "substitueix",
|
||||
"suggest name" => "sugereix un nom",
|
||||
|
@ -22,6 +23,8 @@
|
|||
"Unable to upload your file as it is a directory or has 0 bytes" => "No es pot pujar el fitxer perquè és una carpeta o té 0 bytes",
|
||||
"Upload Error" => "Error en la pujada",
|
||||
"Pending" => "Pendents",
|
||||
"1 file uploading" => "1 fitxer pujant",
|
||||
"files uploading" => "fitxers pujant",
|
||||
"Upload cancelled." => "La pujada s'ha cancel·lat.",
|
||||
"File upload is in progress. Leaving the page now will cancel the upload." => "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·larà.",
|
||||
"Invalid name, '/' is not allowed." => "El nom no és vàlid, no es permet '/'.",
|
||||
|
@ -34,6 +37,16 @@
|
|||
"folders" => "carpetes",
|
||||
"file" => "fitxer",
|
||||
"files" => "fitxers",
|
||||
"seconds ago" => "segons enrere",
|
||||
"minute ago" => "minut enrere",
|
||||
"minutes ago" => "minuts enrere",
|
||||
"today" => "avui",
|
||||
"yesterday" => "ahir",
|
||||
"days ago" => "dies enrere",
|
||||
"last month" => "el mes passat",
|
||||
"months ago" => "mesos enrere",
|
||||
"last year" => "l'any passat",
|
||||
"years ago" => "anys enrere",
|
||||
"File handling" => "Gestió de fitxers",
|
||||
"Maximum upload size" => "Mida màxima de pujada",
|
||||
"max. possible: " => "màxim possible:",
|
||||
|
|
|
@ -7,20 +7,29 @@
|
|||
"Missing a temporary folder" => "Falta uma pasta temporária",
|
||||
"Failed to write to disk" => "Falhou a escrita no disco",
|
||||
"Files" => "Ficheiros",
|
||||
"Unshare" => "Deixar de partilhar",
|
||||
"Delete" => "Apagar",
|
||||
"Rename" => "Renomear",
|
||||
"already exists" => "Já existe",
|
||||
"replace" => "substituir",
|
||||
"suggest name" => "Sugira um nome",
|
||||
"cancel" => "cancelar",
|
||||
"replaced" => "substituido",
|
||||
"undo" => "desfazer",
|
||||
"with" => "com",
|
||||
"unshared" => "não partilhado",
|
||||
"deleted" => "apagado",
|
||||
"generating ZIP-file, it may take some time." => "a gerar o ficheiro ZIP, poderá demorar algum tempo.",
|
||||
"Unable to upload your file as it is a directory or has 0 bytes" => "Não é possivel fazer o upload do ficheiro devido a ser uma pasta ou ter 0 bytes",
|
||||
"Upload Error" => "Erro no upload",
|
||||
"Pending" => "Pendente",
|
||||
"1 file uploading" => "A enviar 1 ficheiro",
|
||||
"files uploading" => "ficheiros a serem enviados",
|
||||
"Upload cancelled." => "O upload foi cancelado.",
|
||||
"File upload is in progress. Leaving the page now will cancel the upload." => "Envio de ficheiro em progresso. Irá cancelar o envio se sair da página agora.",
|
||||
"Invalid name, '/' is not allowed." => "nome inválido, '/' não permitido.",
|
||||
"files scanned" => "ficheiros analisados",
|
||||
"error while scanning" => "erro ao analisar",
|
||||
"Name" => "Nome",
|
||||
"Size" => "Tamanho",
|
||||
"Modified" => "Modificado",
|
||||
|
@ -28,6 +37,16 @@
|
|||
"folders" => "pastas",
|
||||
"file" => "ficheiro",
|
||||
"files" => "ficheiros",
|
||||
"seconds ago" => "à segundos",
|
||||
"minute ago" => "à um minuto",
|
||||
"minutes ago" => "à minutos",
|
||||
"today" => "hoje",
|
||||
"yesterday" => "ontem",
|
||||
"days ago" => "à dias",
|
||||
"last month" => "mês passado",
|
||||
"months ago" => "à meses",
|
||||
"last year" => "ano passado",
|
||||
"years ago" => "à anos",
|
||||
"File handling" => "Manuseamento de ficheiros",
|
||||
"Maximum upload size" => "Tamanho máximo de envio",
|
||||
"max. possible: " => "max. possivel: ",
|
||||
|
@ -35,6 +54,7 @@
|
|||
"Enable ZIP-download" => "Ativar dowload de ficheiros ZIP",
|
||||
"0 is unlimited" => "0 é ilimitado",
|
||||
"Maximum input size for ZIP files" => "Tamanho máximo para ficheiros ZIP",
|
||||
"Save" => "Guardar",
|
||||
"New" => "Novo",
|
||||
"Text file" => "Ficheiro de texto",
|
||||
"Folder" => "Pasta",
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
"Files" => "Súbory",
|
||||
"Unshare" => "Nezdielať",
|
||||
"Delete" => "Odstrániť",
|
||||
"Rename" => "Premenovať",
|
||||
"already exists" => "už existuje",
|
||||
"replace" => "nahradiť",
|
||||
"suggest name" => "pomôcť s menom",
|
||||
|
@ -22,6 +23,8 @@
|
|||
"Unable to upload your file as it is a directory or has 0 bytes" => "Nemôžem nahrať súbor lebo je to priečinok alebo má 0 bajtov.",
|
||||
"Upload Error" => "Chyba nahrávania",
|
||||
"Pending" => "Čaká sa",
|
||||
"1 file uploading" => "1 súbor sa posiela ",
|
||||
"files uploading" => "súbory sa posielajú",
|
||||
"Upload cancelled." => "Nahrávanie zrušené",
|
||||
"File upload is in progress. Leaving the page now will cancel the upload." => "Opustenie stránky zruší práve prebiehajúce odosielanie súboru.",
|
||||
"Invalid name, '/' is not allowed." => "Chybný názov, \"/\" nie je povolené",
|
||||
|
@ -34,6 +37,16 @@
|
|||
"folders" => "priečinky",
|
||||
"file" => "súbor",
|
||||
"files" => "súbory",
|
||||
"seconds ago" => "pred sekundami",
|
||||
"minute ago" => "pred minútou",
|
||||
"minutes ago" => "pred minútami",
|
||||
"today" => "dnes",
|
||||
"yesterday" => "včera",
|
||||
"days ago" => "pred pár dňami",
|
||||
"last month" => "minulý mesiac",
|
||||
"months ago" => "pred mesiacmi",
|
||||
"last year" => "minulý rok",
|
||||
"years ago" => "pred rokmi",
|
||||
"File handling" => "Nastavenie správanie k súborom",
|
||||
"Maximum upload size" => "Maximálna veľkosť odosielaného súboru",
|
||||
"max. possible: " => "najväčšie možné:",
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<description>Server side encryption of files. DEPRECATED. This app is no longer supported and will be replaced with an improved version in ownCloud 5. Only enable this features if you want to read old encrypted data. Warning: You will lose your data if you enable this App and forget your password. Encryption is not yet compatible with LDAP.</description>
|
||||
<licence>AGPL</licence>
|
||||
<author>Robin Appelman</author>
|
||||
<require>4</require>
|
||||
<require>4.9</require>
|
||||
<shipped>true</shipped>
|
||||
<types>
|
||||
<filesystem/>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<description>Mount external storage sources</description>
|
||||
<licence>AGPL</licence>
|
||||
<author>Robin Appelman, Michael Gapczynski</author>
|
||||
<require>4</require>
|
||||
<require>4.9</require>
|
||||
<shipped>true</shipped>
|
||||
<types>
|
||||
<filesystem/>
|
||||
|
|
|
@ -4,7 +4,7 @@ $(document).ready(function() {
|
|||
var configured = $(this).find('[data-parameter="configured"]');
|
||||
if ($(configured).val() == 'true') {
|
||||
$(this).find('.configuration input').attr('disabled', 'disabled');
|
||||
$(this).find('.configuration').append('<span id="access" style="padding-left:0.5em;">Access granted</span>');
|
||||
$(this).find('.configuration').append('<span id="access" style="padding-left:0.5em;">'+t('files_external', 'Access granted')+'</span>');
|
||||
} else {
|
||||
var app_key = $(this).find('.configuration [data-parameter="app_key"]').val();
|
||||
var app_secret = $(this).find('.configuration [data-parameter="app_secret"]').val();
|
||||
|
@ -22,14 +22,16 @@ $(document).ready(function() {
|
|||
$(configured).val('true');
|
||||
OC.MountConfig.saveStorage(tr);
|
||||
$(tr).find('.configuration input').attr('disabled', 'disabled');
|
||||
$(tr).find('.configuration').append('<span id="access" style="padding-left:0.5em;">Access granted</span>');
|
||||
$(tr).find('.configuration').append('<span id="access" style="padding-left:0.5em;">'+t('files_external', 'Access granted')+'</span>');
|
||||
} else {
|
||||
OC.dialogs.alert(result.data.message, 'Error configuring Dropbox storage');
|
||||
OC.dialogs.alert(result.data.message,
|
||||
t('files_external', 'Error configuring Dropbox storage')
|
||||
);
|
||||
}
|
||||
});
|
||||
}
|
||||
} else if ($(this).find('.mountPoint input').val() != '' && $(config).find('[data-parameter="app_key"]').val() != '' && $(config).find('[data-parameter="app_secret"]').val() != '' && $(this).find('.dropbox').length == 0) {
|
||||
$(this).find('.configuration').append('<a class="button dropbox">Grant access</a>');
|
||||
$(this).find('.configuration').append('<a class="button dropbox">'+t('files_external', 'Grant access')+'</a>');
|
||||
}
|
||||
}
|
||||
});
|
||||
|
@ -40,7 +42,7 @@ $(document).ready(function() {
|
|||
var config = $(tr).find('.configuration');
|
||||
if ($(tr).find('.mountPoint input').val() != '' && $(config).find('[data-parameter="app_key"]').val() != '' && $(config).find('[data-parameter="app_secret"]').val() != '') {
|
||||
if ($(tr).find('.dropbox').length == 0) {
|
||||
$(config).append('<a class="button dropbox">Grant access</a>');
|
||||
$(config).append('<a class="button dropbox">'+t('files_external', 'Grant access')+'</a>');
|
||||
} else {
|
||||
$(tr).find('.dropbox').show();
|
||||
}
|
||||
|
@ -67,14 +69,22 @@ $(document).ready(function() {
|
|||
if (OC.MountConfig.saveStorage(tr)) {
|
||||
window.location = result.data.url;
|
||||
} else {
|
||||
OC.dialogs.alert('Fill out all required fields', 'Error configuring Dropbox storage');
|
||||
OC.dialogs.alert(
|
||||
t('files_external', 'Fill out all required fields'),
|
||||
t('files_external', 'Error configuring Dropbox storage')
|
||||
);
|
||||
}
|
||||
} else {
|
||||
OC.dialogs.alert(result.data.message, 'Error configuring Dropbox storage');
|
||||
OC.dialogs.alert(result.data.message,
|
||||
t('files_external', 'Error configuring Dropbox storage')
|
||||
);
|
||||
}
|
||||
});
|
||||
} else {
|
||||
OC.dialogs.alert('Please provide a valid Dropbox app key and secret.', 'Error configuring Dropbox storage');
|
||||
OC.dialogs.alert(
|
||||
t('files_external', 'Please provide a valid Dropbox app key and secret.'),
|
||||
t('files_external', 'Error configuring Dropbox storage')
|
||||
);
|
||||
}
|
||||
});
|
||||
|
||||
|
|
|
@ -3,7 +3,8 @@ $(document).ready(function() {
|
|||
$('#externalStorage tbody tr.OC_Filestorage_Google').each(function() {
|
||||
var configured = $(this).find('[data-parameter="configured"]');
|
||||
if ($(configured).val() == 'true') {
|
||||
$(this).find('.configuration').append('<span id="access" style="padding-left:0.5em;">Access granted</span>');
|
||||
$(this).find('.configuration')
|
||||
.append('<span id="access" style="padding-left:0.5em;">'+t('files_external', 'Access granted')+'</span>');
|
||||
} else {
|
||||
var token = $(this).find('[data-parameter="token"]');
|
||||
var token_secret = $(this).find('[data-parameter="token_secret"]');
|
||||
|
@ -19,13 +20,15 @@ $(document).ready(function() {
|
|||
$(token_secret).val(result.access_token_secret);
|
||||
$(configured).val('true');
|
||||
OC.MountConfig.saveStorage(tr);
|
||||
$(tr).find('.configuration').append('<span id="access" style="padding-left:0.5em;">Access granted</span>');
|
||||
$(tr).find('.configuration').append('<span id="access" style="padding-left:0.5em;">'+t('files_external', 'Access granted')+'</span>');
|
||||
} else {
|
||||
OC.dialogs.alert(result.data.message, 'Error configuring Google Drive storage');
|
||||
OC.dialogs.alert(result.data.message,
|
||||
t('files_external', 'Error configuring Google Drive storage')
|
||||
);
|
||||
}
|
||||
});
|
||||
} else if ($(this).find('.google').length == 0) {
|
||||
$(this).find('.configuration').append('<a class="button google">Grant access</a>');
|
||||
$(this).find('.configuration').append('<a class="button google">'+t('files_external', 'Grant access')+'</a>');
|
||||
}
|
||||
}
|
||||
});
|
||||
|
@ -34,7 +37,7 @@ $(document).ready(function() {
|
|||
if ($(this).hasClass('OC_Filestorage_Google') && $(this).find('[data-parameter="configured"]').val() != 'true') {
|
||||
if ($(this).find('.mountPoint input').val() != '') {
|
||||
if ($(this).find('.google').length == 0) {
|
||||
$(this).find('.configuration').append('<a class="button google">Grant access</a>');
|
||||
$(this).find('.configuration').append('<a class="button google">'+t('files_external', 'Grant access')+'</a>');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -65,10 +68,15 @@ $(document).ready(function() {
|
|||
if (OC.MountConfig.saveStorage(tr)) {
|
||||
window.location = result.data.url;
|
||||
} else {
|
||||
OC.dialogs.alert('Fill out all required fields', 'Error configuring Google Drive storage');
|
||||
OC.dialogs.alert(
|
||||
t('files_external', 'Fill out all required fields'),
|
||||
t('files_external', 'Error configuring Google Drive storage')
|
||||
);
|
||||
}
|
||||
} else {
|
||||
OC.dialogs.alert(result.data.message, 'Error configuring Google Drive storage');
|
||||
OC.dialogs.alert(result.data.message,
|
||||
t('files_external', 'Error configuring Google Drive storage')
|
||||
);
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
|
@ -11,8 +11,8 @@
|
|||
"Groups" => "Grups",
|
||||
"Users" => "Usuaris",
|
||||
"Delete" => "Elimina",
|
||||
"SSL root certificates" => "Certificats SSL root",
|
||||
"Import Root Certificate" => "Importa certificat root",
|
||||
"Enable User External Storage" => "Habilita l'emmagatzemament extern d'usuari",
|
||||
"Allow users to mount their own external storage" => "Permet als usuaris muntar el seu emmagatzemament extern propi"
|
||||
"Allow users to mount their own external storage" => "Permet als usuaris muntar el seu emmagatzemament extern propi",
|
||||
"SSL root certificates" => "Certificats SSL root",
|
||||
"Import Root Certificate" => "Importa certificat root"
|
||||
);
|
||||
|
|
|
@ -11,8 +11,8 @@
|
|||
"Groups" => "Skupiny",
|
||||
"Users" => "Uživatelé",
|
||||
"Delete" => "Smazat",
|
||||
"SSL root certificates" => "Kořenové certifikáty SSL",
|
||||
"Import Root Certificate" => "Importovat kořenového certifikátu",
|
||||
"Enable User External Storage" => "Zapnout externí uživatelské úložiště",
|
||||
"Allow users to mount their own external storage" => "Povolit uživatelům připojení jejich vlastních externích úložišť"
|
||||
"Allow users to mount their own external storage" => "Povolit uživatelům připojení jejich vlastních externích úložišť",
|
||||
"SSL root certificates" => "Kořenové certifikáty SSL",
|
||||
"Import Root Certificate" => "Importovat kořenového certifikátu"
|
||||
);
|
||||
|
|
|
@ -11,8 +11,8 @@
|
|||
"Groups" => "Gruppen",
|
||||
"Users" => "Benutzer",
|
||||
"Delete" => "Löschen",
|
||||
"SSL root certificates" => "SSL-Root-Zertifikate",
|
||||
"Import Root Certificate" => "Root-Zertifikate importieren",
|
||||
"Enable User External Storage" => "Externen Speicher für Benutzer aktivieren",
|
||||
"Allow users to mount their own external storage" => "Erlaubt Benutzern ihre eigenen externen Speicher einzubinden"
|
||||
"Allow users to mount their own external storage" => "Erlaubt Benutzern ihre eigenen externen Speicher einzubinden",
|
||||
"SSL root certificates" => "SSL-Root-Zertifikate",
|
||||
"Import Root Certificate" => "Root-Zertifikate importieren"
|
||||
);
|
||||
|
|
|
@ -11,8 +11,8 @@
|
|||
"Groups" => "Ομάδες",
|
||||
"Users" => "Χρήστες",
|
||||
"Delete" => "Διαγραφή",
|
||||
"SSL root certificates" => "Πιστοποιητικά SSL root",
|
||||
"Import Root Certificate" => "Εισαγωγή Πιστοποιητικού Root",
|
||||
"Enable User External Storage" => "Ενεργοποίηση Εξωτερικού Αποθηκευτικού Χώρου Χρήστη",
|
||||
"Allow users to mount their own external storage" => "Να επιτρέπεται στους χρήστες να προσαρτούν δικό τους εξωτερικό αποθηκευτικό χώρο"
|
||||
"Allow users to mount their own external storage" => "Να επιτρέπεται στους χρήστες να προσαρτούν δικό τους εξωτερικό αποθηκευτικό χώρο",
|
||||
"SSL root certificates" => "Πιστοποιητικά SSL root",
|
||||
"Import Root Certificate" => "Εισαγωγή Πιστοποιητικού Root"
|
||||
);
|
||||
|
|
|
@ -11,8 +11,8 @@
|
|||
"Groups" => "Grupoj",
|
||||
"Users" => "Uzantoj",
|
||||
"Delete" => "Forigi",
|
||||
"SSL root certificates" => "Radikaj SSL-atestoj",
|
||||
"Import Root Certificate" => "Enporti radikan ateston",
|
||||
"Enable User External Storage" => "Kapabligi malenan memorilon de uzanto",
|
||||
"Allow users to mount their own external storage" => "Permesi al uzantoj surmeti siajn proprajn malenajn memorilojn"
|
||||
"Allow users to mount their own external storage" => "Permesi al uzantoj surmeti siajn proprajn malenajn memorilojn",
|
||||
"SSL root certificates" => "Radikaj SSL-atestoj",
|
||||
"Import Root Certificate" => "Enporti radikan ateston"
|
||||
);
|
||||
|
|
|
@ -11,8 +11,8 @@
|
|||
"Groups" => "Grupos",
|
||||
"Users" => "Usuarios",
|
||||
"Delete" => "Eliiminar",
|
||||
"SSL root certificates" => "Raíz de certificados SSL ",
|
||||
"Import Root Certificate" => "Importar certificado raíz",
|
||||
"Enable User External Storage" => "Habilitar almacenamiento de usuario externo",
|
||||
"Allow users to mount their own external storage" => "Permitir a los usuarios montar su propio almacenamiento externo"
|
||||
"Allow users to mount their own external storage" => "Permitir a los usuarios montar su propio almacenamiento externo",
|
||||
"SSL root certificates" => "Raíz de certificados SSL ",
|
||||
"Import Root Certificate" => "Importar certificado raíz"
|
||||
);
|
||||
|
|
|
@ -11,8 +11,8 @@
|
|||
"Groups" => "Grupos",
|
||||
"Users" => "Usuarios",
|
||||
"Delete" => "Borrar",
|
||||
"SSL root certificates" => "certificados SSL raíz",
|
||||
"Import Root Certificate" => "Importar certificado raíz",
|
||||
"Enable User External Storage" => "Habilitar almacenamiento de usuario externo",
|
||||
"Allow users to mount their own external storage" => "Permitir a los usuarios montar su propio almacenamiento externo"
|
||||
"Allow users to mount their own external storage" => "Permitir a los usuarios montar su propio almacenamiento externo",
|
||||
"SSL root certificates" => "certificados SSL raíz",
|
||||
"Import Root Certificate" => "Importar certificado raíz"
|
||||
);
|
||||
|
|
|
@ -11,8 +11,8 @@
|
|||
"Groups" => "Grupid",
|
||||
"Users" => "Kasutajad",
|
||||
"Delete" => "Kustuta",
|
||||
"SSL root certificates" => "SSL root sertifikaadid",
|
||||
"Import Root Certificate" => "Impordi root sertifikaadid",
|
||||
"Enable User External Storage" => "Luba kasutajatele väline salvestamine",
|
||||
"Allow users to mount their own external storage" => "Luba kasutajatel ühendada külge nende enda välised salvestusseadmed"
|
||||
"Allow users to mount their own external storage" => "Luba kasutajatel ühendada külge nende enda välised salvestusseadmed",
|
||||
"SSL root certificates" => "SSL root sertifikaadid",
|
||||
"Import Root Certificate" => "Impordi root sertifikaadid"
|
||||
);
|
||||
|
|
|
@ -11,8 +11,8 @@
|
|||
"Groups" => "Taldeak",
|
||||
"Users" => "Erabiltzaileak",
|
||||
"Delete" => "Ezabatu",
|
||||
"SSL root certificates" => "SSL erro ziurtagiriak",
|
||||
"Import Root Certificate" => "Inportatu Erro Ziurtagiria",
|
||||
"Enable User External Storage" => "Gaitu erabiltzaileentzako Kanpo Biltegiratzea",
|
||||
"Allow users to mount their own external storage" => "Baimendu erabiltzaileak bere kanpo biltegiratzeak muntatzen"
|
||||
"Allow users to mount their own external storage" => "Baimendu erabiltzaileak bere kanpo biltegiratzeak muntatzen",
|
||||
"SSL root certificates" => "SSL erro ziurtagiriak",
|
||||
"Import Root Certificate" => "Inportatu Erro Ziurtagiria"
|
||||
);
|
||||
|
|
|
@ -11,8 +11,8 @@
|
|||
"Groups" => "Ryhmät",
|
||||
"Users" => "Käyttäjät",
|
||||
"Delete" => "Poista",
|
||||
"SSL root certificates" => "SSL-juurivarmenteet",
|
||||
"Import Root Certificate" => "Tuo juurivarmenne",
|
||||
"Enable User External Storage" => "Ota käyttöön ulkopuoliset tallennuspaikat",
|
||||
"Allow users to mount their own external storage" => "Salli käyttäjien liittää omia erillisiä tallennusvälineitä"
|
||||
"Allow users to mount their own external storage" => "Salli käyttäjien liittää omia erillisiä tallennusvälineitä",
|
||||
"SSL root certificates" => "SSL-juurivarmenteet",
|
||||
"Import Root Certificate" => "Tuo juurivarmenne"
|
||||
);
|
||||
|
|
|
@ -11,8 +11,8 @@
|
|||
"Groups" => "Groupes",
|
||||
"Users" => "Utilisateurs",
|
||||
"Delete" => "Supprimer",
|
||||
"SSL root certificates" => "Certificats racine SSL",
|
||||
"Import Root Certificate" => "Importer un certificat racine",
|
||||
"Enable User External Storage" => "Activer le stockage externe pour les utilisateurs",
|
||||
"Allow users to mount their own external storage" => "Autoriser les utilisateurs à monter leur propre stockage externe"
|
||||
"Allow users to mount their own external storage" => "Autoriser les utilisateurs à monter leur propre stockage externe",
|
||||
"SSL root certificates" => "Certificats racine SSL",
|
||||
"Import Root Certificate" => "Importer un certificat racine"
|
||||
);
|
||||
|
|
|
@ -11,8 +11,8 @@
|
|||
"Groups" => "Grupos",
|
||||
"Users" => "Usuarios",
|
||||
"Delete" => "Eliminar",
|
||||
"SSL root certificates" => "Certificados raíz SSL",
|
||||
"Import Root Certificate" => "Importar Certificado Raíz",
|
||||
"Enable User External Storage" => "Habilitar almacenamento externo do usuario",
|
||||
"Allow users to mount their own external storage" => "Permitir aos usuarios montar os seus propios almacenamentos externos"
|
||||
"Allow users to mount their own external storage" => "Permitir aos usuarios montar os seus propios almacenamentos externos",
|
||||
"SSL root certificates" => "Certificados raíz SSL",
|
||||
"Import Root Certificate" => "Importar Certificado Raíz"
|
||||
);
|
||||
|
|
|
@ -6,8 +6,8 @@
|
|||
"Groups" => "קבוצות",
|
||||
"Users" => "משתמשים",
|
||||
"Delete" => "מחיקה",
|
||||
"SSL root certificates" => "שורש אישורי אבטחת SSL ",
|
||||
"Import Root Certificate" => "ייבוא אישור אבטחת שורש",
|
||||
"Enable User External Storage" => "הפעלת אחסון חיצוני למשתמשים",
|
||||
"Allow users to mount their own external storage" => "יאפשר למשתמשים לעגן את האחסון החיצוני שלהם"
|
||||
"Allow users to mount their own external storage" => "יאפשר למשתמשים לעגן את האחסון החיצוני שלהם",
|
||||
"SSL root certificates" => "שורש אישורי אבטחת SSL ",
|
||||
"Import Root Certificate" => "ייבוא אישור אבטחת שורש"
|
||||
);
|
||||
|
|
|
@ -11,8 +11,8 @@
|
|||
"Groups" => "Gruppi",
|
||||
"Users" => "Utenti",
|
||||
"Delete" => "Elimina",
|
||||
"SSL root certificates" => "Certificati SSL radice",
|
||||
"Import Root Certificate" => "Importa certificato radice",
|
||||
"Enable User External Storage" => "Abilita la memoria esterna dell'utente",
|
||||
"Allow users to mount their own external storage" => "Consenti agli utenti di montare la propria memoria esterna"
|
||||
"Allow users to mount their own external storage" => "Consenti agli utenti di montare la propria memoria esterna",
|
||||
"SSL root certificates" => "Certificati SSL radice",
|
||||
"Import Root Certificate" => "Importa certificato radice"
|
||||
);
|
||||
|
|
|
@ -11,8 +11,8 @@
|
|||
"Groups" => "グループ",
|
||||
"Users" => "ユーザ",
|
||||
"Delete" => "削除",
|
||||
"SSL root certificates" => "SSLルート証明書",
|
||||
"Import Root Certificate" => "ルート証明書をインポート",
|
||||
"Enable User External Storage" => "ユーザの外部ストレージを有効にする",
|
||||
"Allow users to mount their own external storage" => "ユーザに外部ストレージのマウントを許可する"
|
||||
"Allow users to mount their own external storage" => "ユーザに外部ストレージのマウントを許可する",
|
||||
"SSL root certificates" => "SSLルート証明書",
|
||||
"Import Root Certificate" => "ルート証明書をインポート"
|
||||
);
|
||||
|
|
|
@ -11,8 +11,8 @@
|
|||
"Groups" => "Groepen",
|
||||
"Users" => "Gebruikers",
|
||||
"Delete" => "Verwijder",
|
||||
"SSL root certificates" => "SSL root certificaten",
|
||||
"Import Root Certificate" => "Importeer root certificaat",
|
||||
"Enable User External Storage" => "Zet gebruiker's externe opslag aan",
|
||||
"Allow users to mount their own external storage" => "Sta gebruikers toe om hun eigen externe opslag aan te koppelen"
|
||||
"Allow users to mount their own external storage" => "Sta gebruikers toe om hun eigen externe opslag aan te koppelen",
|
||||
"SSL root certificates" => "SSL root certificaten",
|
||||
"Import Root Certificate" => "Importeer root certificaat"
|
||||
);
|
||||
|
|
|
@ -11,8 +11,8 @@
|
|||
"Groups" => "Grupy",
|
||||
"Users" => "Użytkownicy",
|
||||
"Delete" => "Usuń",
|
||||
"SSL root certificates" => "Główny certyfikat SSL",
|
||||
"Import Root Certificate" => "Importuj główny certyfikat",
|
||||
"Enable User External Storage" => "Włącz zewnętrzne zasoby dyskowe użytkownika",
|
||||
"Allow users to mount their own external storage" => "Zezwalaj użytkownikom na montowanie ich własnych zewnętrznych zasobów dyskowych"
|
||||
"Allow users to mount their own external storage" => "Zezwalaj użytkownikom na montowanie ich własnych zewnętrznych zasobów dyskowych",
|
||||
"SSL root certificates" => "Główny certyfikat SSL",
|
||||
"Import Root Certificate" => "Importuj główny certyfikat"
|
||||
);
|
||||
|
|
|
@ -11,8 +11,8 @@
|
|||
"Groups" => "Grupos",
|
||||
"Users" => "Usuários",
|
||||
"Delete" => "Remover",
|
||||
"SSL root certificates" => "Certificados SSL raíz",
|
||||
"Import Root Certificate" => "Importar Certificado Raíz",
|
||||
"Enable User External Storage" => "Habilitar Armazenamento Externo do Usuário",
|
||||
"Allow users to mount their own external storage" => "Permitir usuários a montar seus próprios armazenamentos externos"
|
||||
"Allow users to mount their own external storage" => "Permitir usuários a montar seus próprios armazenamentos externos",
|
||||
"SSL root certificates" => "Certificados SSL raíz",
|
||||
"Import Root Certificate" => "Importar Certificado Raíz"
|
||||
);
|
||||
|
|
|
@ -1,10 +1,18 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"External Storage" => "Armazenamento Externo",
|
||||
"Mount point" => "Ponto de montagem",
|
||||
"Backend" => "Backend",
|
||||
"Configuration" => "Configuração",
|
||||
"Options" => "Opções",
|
||||
"Applicable" => "Aplicável",
|
||||
"Add mount point" => "Adicionar ponto de montagem",
|
||||
"None set" => "Nenhum configurado",
|
||||
"All Users" => "Todos os utilizadores",
|
||||
"Groups" => "Grupos",
|
||||
"Users" => "Utilizadores",
|
||||
"Delete" => "Apagar",
|
||||
"Enable User External Storage" => "Activar Armazenamento Externo para o Utilizador",
|
||||
"Allow users to mount their own external storage" => "Permitir que os utilizadores montem o seu próprio armazenamento externo",
|
||||
"SSL root certificates" => "Certificados SSL de raiz",
|
||||
"Import Root Certificate" => "Importar Certificado Root"
|
||||
);
|
||||
|
|
|
@ -11,8 +11,8 @@
|
|||
"Groups" => "Grupuri",
|
||||
"Users" => "Utilizatori",
|
||||
"Delete" => "Șterge",
|
||||
"SSL root certificates" => "Certificate SSL root",
|
||||
"Import Root Certificate" => "Importă certificat root",
|
||||
"Enable User External Storage" => "Permite stocare externă pentru utilizatori",
|
||||
"Allow users to mount their own external storage" => "Permite utilizatorilor să monteze stocare externă proprie"
|
||||
"Allow users to mount their own external storage" => "Permite utilizatorilor să monteze stocare externă proprie",
|
||||
"SSL root certificates" => "Certificate SSL root",
|
||||
"Import Root Certificate" => "Importă certificat root"
|
||||
);
|
||||
|
|
|
@ -11,8 +11,8 @@
|
|||
"Groups" => "Группы",
|
||||
"Users" => "Пользователи",
|
||||
"Delete" => "Удалить",
|
||||
"SSL root certificates" => "Корневые сертификаты SSL",
|
||||
"Import Root Certificate" => "Импортировать корневые сертификаты",
|
||||
"Enable User External Storage" => "Включить пользовательские внешние носители",
|
||||
"Allow users to mount their own external storage" => "Разрешить пользователям монтировать их собственные внешние носители"
|
||||
"Allow users to mount their own external storage" => "Разрешить пользователям монтировать их собственные внешние носители",
|
||||
"SSL root certificates" => "Корневые сертификаты SSL",
|
||||
"Import Root Certificate" => "Импортировать корневые сертификаты"
|
||||
);
|
||||
|
|
|
@ -11,8 +11,8 @@
|
|||
"Groups" => "Группы",
|
||||
"Users" => "Пользователи",
|
||||
"Delete" => "Удалить",
|
||||
"SSL root certificates" => "Корневые сертификаты SSL",
|
||||
"Import Root Certificate" => "Импортировать корневые сертификаты",
|
||||
"Enable User External Storage" => "Включить пользовательскую внешнюю систему хранения данных",
|
||||
"Allow users to mount their own external storage" => "Разрешить пользователям монтировать их собственную внешнюю систему хранения данных"
|
||||
"Allow users to mount their own external storage" => "Разрешить пользователям монтировать их собственную внешнюю систему хранения данных",
|
||||
"SSL root certificates" => "Корневые сертификаты SSL",
|
||||
"Import Root Certificate" => "Импортировать корневые сертификаты"
|
||||
);
|
||||
|
|
|
@ -11,8 +11,8 @@
|
|||
"Groups" => "Skupiny",
|
||||
"Users" => "Užívatelia",
|
||||
"Delete" => "Odstrániť",
|
||||
"SSL root certificates" => "Koreňové SSL certifikáty",
|
||||
"Import Root Certificate" => "Importovať koreňový certifikát",
|
||||
"Enable User External Storage" => "Povoliť externé úložisko",
|
||||
"Allow users to mount their own external storage" => "Povoliť užívateľom pripojiť ich vlastné externé úložisko"
|
||||
"Allow users to mount their own external storage" => "Povoliť užívateľom pripojiť ich vlastné externé úložisko",
|
||||
"SSL root certificates" => "Koreňové SSL certifikáty",
|
||||
"Import Root Certificate" => "Importovať koreňový certifikát"
|
||||
);
|
||||
|
|
|
@ -11,8 +11,8 @@
|
|||
"Groups" => "Skupine",
|
||||
"Users" => "Uporabniki",
|
||||
"Delete" => "Izbriši",
|
||||
"SSL root certificates" => "SSL korenski certifikati",
|
||||
"Import Root Certificate" => "Uvozi korenski certifikat",
|
||||
"Enable User External Storage" => "Omogoči uporabo zunanje podatkovne shrambe za uporabnike",
|
||||
"Allow users to mount their own external storage" => "Dovoli uporabnikom priklop lastne zunanje podatkovne shrambe"
|
||||
"Allow users to mount their own external storage" => "Dovoli uporabnikom priklop lastne zunanje podatkovne shrambe",
|
||||
"SSL root certificates" => "SSL korenski certifikati",
|
||||
"Import Root Certificate" => "Uvozi korenski certifikat"
|
||||
);
|
||||
|
|
|
@ -11,8 +11,8 @@
|
|||
"Groups" => "Grupper",
|
||||
"Users" => "Användare",
|
||||
"Delete" => "Radera",
|
||||
"SSL root certificates" => "SSL rotcertifikat",
|
||||
"Import Root Certificate" => "Importera rotcertifikat",
|
||||
"Enable User External Storage" => "Aktivera extern lagring för användare",
|
||||
"Allow users to mount their own external storage" => "Tillåt användare att montera egen extern lagring"
|
||||
"Allow users to mount their own external storage" => "Tillåt användare att montera egen extern lagring",
|
||||
"SSL root certificates" => "SSL rotcertifikat",
|
||||
"Import Root Certificate" => "Importera rotcertifikat"
|
||||
);
|
||||
|
|
|
@ -11,8 +11,8 @@
|
|||
"Groups" => "กลุ่ม",
|
||||
"Users" => "ผู้ใช้งาน",
|
||||
"Delete" => "ลบ",
|
||||
"SSL root certificates" => "ใบรับรองความปลอดภัยด้วยระบบ SSL จาก Root",
|
||||
"Import Root Certificate" => "นำเข้าข้อมูลใบรับรองความปลอดภัยจาก Root",
|
||||
"Enable User External Storage" => "เปิดให้มีการใช้พื้นที่จัดเก็บข้อมูลของผู้ใช้งานจากภายนอกได้",
|
||||
"Allow users to mount their own external storage" => "อนุญาตให้ผู้ใช้งานสามารถชี้ตำแหน่งไปที่พื้นที่จัดเก็บข้อมูลภายนอกของตนเองได้"
|
||||
"Allow users to mount their own external storage" => "อนุญาตให้ผู้ใช้งานสามารถชี้ตำแหน่งไปที่พื้นที่จัดเก็บข้อมูลภายนอกของตนเองได้",
|
||||
"SSL root certificates" => "ใบรับรองความปลอดภัยด้วยระบบ SSL จาก Root",
|
||||
"Import Root Certificate" => "นำเข้าข้อมูลใบรับรองความปลอดภัยจาก Root"
|
||||
);
|
||||
|
|
|
@ -11,8 +11,8 @@
|
|||
"Groups" => "Nhóm",
|
||||
"Users" => "Người dùng",
|
||||
"Delete" => "Xóa",
|
||||
"SSL root certificates" => "Chứng chỉ SSL root",
|
||||
"Import Root Certificate" => "Nhập Root Certificate",
|
||||
"Enable User External Storage" => "Kích hoạt tính năng lưu trữ ngoài",
|
||||
"Allow users to mount their own external storage" => "Cho phép người dùng kết nối với lưu trữ riêng bên ngoài của họ"
|
||||
"Allow users to mount their own external storage" => "Cho phép người dùng kết nối với lưu trữ riêng bên ngoài của họ",
|
||||
"SSL root certificates" => "Chứng chỉ SSL root",
|
||||
"Import Root Certificate" => "Nhập Root Certificate"
|
||||
);
|
||||
|
|
|
@ -11,8 +11,8 @@
|
|||
"Groups" => "群组",
|
||||
"Users" => "用户",
|
||||
"Delete" => "删除",
|
||||
"SSL root certificates" => "SSL 根证书",
|
||||
"Import Root Certificate" => "导入根证书",
|
||||
"Enable User External Storage" => "启用用户外部存储",
|
||||
"Allow users to mount their own external storage" => "允许用户挂载他们的外部存储"
|
||||
"Allow users to mount their own external storage" => "允许用户挂载他们的外部存储",
|
||||
"SSL root certificates" => "SSL 根证书",
|
||||
"Import Root Certificate" => "导入根证书"
|
||||
);
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<description>File sharing between users</description>
|
||||
<licence>AGPL</licence>
|
||||
<author>Michael Gapczynski</author>
|
||||
<require>4</require>
|
||||
<require>4.9</require>
|
||||
<shipped>true</shipped>
|
||||
<default_enable/>
|
||||
<types>
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"Password" => "Contrasenya",
|
||||
"Submit" => "Envia",
|
||||
"%s shared the folder %s with you" => "%s ha compartit la carpeta %s amb vós",
|
||||
"%s shared the file %s with you" => "%s ha compartit el fitxer %s amb vós",
|
||||
"Download" => "Baixa",
|
||||
"No preview available for" => "No hi ha vista prèvia disponible per a",
|
||||
"web services under your control" => "controleu els vostres serveis web"
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"Password" => "Passwort",
|
||||
"Submit" => "Absenden",
|
||||
"%s shared the folder %s with you" => "%s hat mit Ihnen den Ordner %s geteilt",
|
||||
"%s shared the file %s with you" => "%s hat mit Ihnen die Datei %s geteilt",
|
||||
"%s shared the folder %s with you" => "%s hat den Ordner %s für dich freigegeben",
|
||||
"%s shared the file %s with you" => "%s hat die Datei %s für dich freigegeben",
|
||||
"Download" => "Download",
|
||||
"No preview available for" => "Es ist keine Vorschau verfügbar für",
|
||||
"web services under your control" => "Web-Services unter Ihrer Kontrolle"
|
||||
"web services under your control" => "Web-Services unter Deiner Kontrolle"
|
||||
);
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"Password" => "Heslo",
|
||||
"Submit" => "Odoslať",
|
||||
"%s shared the folder %s with you" => "%s zdieľa s vami priečinok %s",
|
||||
"%s shared the file %s with you" => "%s zdieľa s vami súbor %s",
|
||||
"Download" => "Stiahnuť",
|
||||
"No preview available for" => "Žiaden náhľad k dispozícii pre",
|
||||
"web services under your control" => "webové služby pod Vašou kontrolou"
|
||||
|
|
|
@ -53,7 +53,7 @@ class OC_Share_Backend_File implements OCP\Share_Backend_File_Dependent {
|
|||
$name = substr($target, 0, $pos);
|
||||
$ext = substr($target, $pos);
|
||||
} else {
|
||||
$name = $filePath;
|
||||
$name = $target;
|
||||
$ext = '';
|
||||
}
|
||||
$i = 2;
|
||||
|
|
|
@ -1,6 +1,26 @@
|
|||
<?php
|
||||
// Load other apps for file previews
|
||||
OC_App::loadApps();
|
||||
|
||||
// Compatibility with shared-by-link items from ownCloud 4.0
|
||||
// requires old Sharing table !
|
||||
// support will be removed in OC 5.0,a
|
||||
if (isset($_GET['token'])) {
|
||||
unset($_GET['file']);
|
||||
$qry = \OC_DB::prepare('SELECT `source` FROM `*PREFIX*sharing` WHERE `target` = ? LIMIT 1');
|
||||
$filepath = $qry->execute(array($_GET['token']))->fetchOne();
|
||||
if(isset($filepath)) {
|
||||
$info = OC_FileCache_Cached::get($filepath, '');
|
||||
if(strtolower($info['mimetype']) == 'httpd/unix-directory') {
|
||||
$_GET['dir'] = $filepath;
|
||||
} else {
|
||||
$_GET['file'] = $filepath;
|
||||
}
|
||||
\OCP\Util::writeLog('files_sharing', 'You have files that are shared by link originating from ownCloud 4.0. Redistribute the new links, because backwards compatibility will be removed in ownCloud 5.', \OCP\Util::WARN);
|
||||
}
|
||||
}
|
||||
// Enf of backward compatibility
|
||||
|
||||
if (isset($_GET['file']) || isset($_GET['dir'])) {
|
||||
if (isset($_GET['dir'])) {
|
||||
$type = 'folder';
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<name>Versions</name>
|
||||
<licence>AGPL</licence>
|
||||
<author>Frank Karlitschek</author>
|
||||
<require>4</require>
|
||||
<require>4.9</require>
|
||||
<shipped>true</shipped>
|
||||
<description>Versioning of files</description>
|
||||
<types>
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"Expire all versions" => "Expira totes les versions",
|
||||
"History" => "Historial",
|
||||
"Versions" => "Versions",
|
||||
"This will delete all existing backup versions of your files" => "Això eliminarà totes les versions de còpia de seguretat dels vostres fitxers",
|
||||
"Files Versioning" => "Fitxers de Versions",
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"Expire all versions" => "Alle Versionen löschen",
|
||||
"History" => "Historie",
|
||||
"Versions" => "Versionen",
|
||||
"This will delete all existing backup versions of your files" => "Dies löscht alle vorhandenen Sicherungsversionen Ihrer Dateien.",
|
||||
"This will delete all existing backup versions of your files" => "Dies löscht alle vorhandenen Sicherungsversionen Deiner Dateien.",
|
||||
"Files Versioning" => "Dateiversionierung",
|
||||
"Enable" => "Aktivieren"
|
||||
);
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<description>Authenticate Users by LDAP</description>
|
||||
<licence>AGPL</licence>
|
||||
<author>Dominik Schmidt and Arthur Schiwon</author>
|
||||
<require>4</require>
|
||||
<require>4.9</require>
|
||||
<shipped>true</shipped>
|
||||
<types>
|
||||
<authentication/>
|
||||
|
|
|
@ -237,7 +237,7 @@ class GROUP_LDAP extends lib\Access implements \OCP\GroupInterface {
|
|||
}
|
||||
|
||||
//getting dn, if false the group does not exist. If dn, it may be mapped only, requires more checking.
|
||||
$dn = $this->username2dn($gid);
|
||||
$dn = $this->groupname2dn($gid);
|
||||
if(!$dn) {
|
||||
$this->connection->writeToCache('groupExists'.$gid, false);
|
||||
return false;
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"Host" => "Host",
|
||||
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Sie können das Protokoll auslassen, außer wenn Sie SSL benötigen. Beginnen Sie dann mit ldaps://",
|
||||
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Du kannst das Protokoll auslassen, außer wenn Du SSL benötigst. Beginne dann mit ldaps://",
|
||||
"Base DN" => "Basis-DN",
|
||||
"You can specify Base DN for users and groups in the Advanced tab" => "Sie können Basis-DN für Benutzer und Gruppen in dem \"Erweitert\"-Reiter konfigurieren",
|
||||
"You can specify Base DN for users and groups in the Advanced tab" => "Du kannst Basis-DN für Benutzer und Gruppen in dem \"Erweitert\"-Reiter konfigurieren",
|
||||
"User DN" => "Benutzer-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." => "Der DN des Benutzers für LDAP-Bind, z.B.: uid=agent,dc=example,dc=com. Für anonymen Zugriff lassen Sie DN und Passwort leer.",
|
||||
"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." => "Der DN des Benutzers für LDAP-Bind, z.B.: uid=agent,dc=example,dc=com. Für anonymen Zugriff lasse DN und Passwort leer.",
|
||||
"Password" => "Passwort",
|
||||
"For anonymous access, leave DN and Password empty." => "Lassen Sie die Felder von DN und Passwort für anonymen Zugang leer.",
|
||||
"For anonymous access, leave DN and Password empty." => "Lasse die Felder von DN und Passwort für anonymen Zugang leer.",
|
||||
"User Login Filter" => "Benutzer-Login-Filter",
|
||||
"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action." => "Bestimmt den angewendeten Filter, wenn eine Anmeldung versucht wird. %%uid ersetzt den Benutzernamen bei dem Anmeldeversuch.",
|
||||
"use %%uid placeholder, e.g. \"uid=%%uid\"" => "verwende %%uid Platzhalter, z. B. \"uid=%%uid\"",
|
||||
|
@ -21,7 +21,7 @@
|
|||
"Base Group Tree" => "Basis-Gruppenbaum",
|
||||
"Group-Member association" => "Assoziation zwischen Gruppe und Benutzer",
|
||||
"Use TLS" => "Nutze TLS",
|
||||
"Do not use it for SSL connections, it will fail." => "Verwenden Sie es nicht für SSL-Verbindungen, es wird fehlschlagen.",
|
||||
"Do not use it for SSL connections, it will fail." => "Verwende dies nicht für SSL-Verbindungen, es wird fehlschlagen.",
|
||||
"Case insensitve LDAP server (Windows)" => "LDAP-Server (Windows: Groß- und Kleinschreibung bleibt unbeachtet)",
|
||||
"Turn off SSL certificate validation." => "Schalte die SSL-Zertifikatsprüfung aus.",
|
||||
"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Falls die Verbindung es erfordert, muss das SSL-Zertifikat des LDAP-Server importiert werden.",
|
||||
|
@ -32,6 +32,6 @@
|
|||
"The LDAP attribute to use to generate the groups`s ownCloud name." => "Das LDAP-Attribut für die Generierung des Gruppennamens in ownCloud. ",
|
||||
"in bytes" => "in Bytes",
|
||||
"in seconds. A change empties the cache." => "in Sekunden. Eine Änderung leert den Cache.",
|
||||
"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Ohne Eingabe wird der Benutzername (Standard) verwendet. Anderenfalls geben Sie ein LDAP/AD-Attribut an.",
|
||||
"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Ohne Eingabe wird der Benutzername (Standard) verwendet. Anderenfall trage ein LDAP/AD-Attribut ein.",
|
||||
"Help" => "Hilfe"
|
||||
);
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
"Group-Member association" => "Group-Member association",
|
||||
"Use TLS" => "Χρήση TLS",
|
||||
"Not recommended, use for testing only." => "Δεν προτείνεται, χρήση μόνο για δοκιμές.",
|
||||
"User Display Name Field" => "User Display Name Field",
|
||||
"User Display Name Field" => "Πεδίο Ονόματος Χρήστη",
|
||||
"Group Display Name Field" => "Group Display Name Field",
|
||||
"in bytes" => "σε bytes",
|
||||
"Help" => "Βοήθεια"
|
||||
|
|
|
@ -32,6 +32,6 @@
|
|||
"The LDAP attribute to use to generate the groups`s ownCloud name." => "グループのownCloud名の生成に利用するLDAP属性。",
|
||||
"in bytes" => "バイト",
|
||||
"in seconds. A change empties the cache." => "秒。変更後にキャッシュがクリアされます。",
|
||||
"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "ユーザ名を空のままにしてください(デフォルト)。そうでない場合は、LDAPもしくはADの属性を指定してください.",
|
||||
"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "ユーザ名を空のままにしてください(デフォルト)。そうでない場合は、LDAPもしくはADの属性を指定してください。",
|
||||
"Help" => "ヘルプ"
|
||||
);
|
||||
|
|
|
@ -123,7 +123,13 @@ abstract class Access {
|
|||
* returns the LDAP DN for the given internal ownCloud name of the group
|
||||
*/
|
||||
public function groupname2dn($name) {
|
||||
return $this->ocname2dn($name, false);
|
||||
$dn = $this->ocname2dn($name, false);
|
||||
|
||||
if($dn) {
|
||||
return $dn;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -6,6 +6,6 @@
|
|||
<version>1.0</version>
|
||||
<licence>AGPL</licence>
|
||||
<author>Frank Karlitschek</author>
|
||||
<require>3</require>
|
||||
<require>4.9</require>
|
||||
<shipped>true</shipped>
|
||||
</info>
|
||||
|
|
|
@ -160,7 +160,7 @@ a.bookmarklet { background-color: #ddd; border:1px solid #ccc; padding: 5px;padd
|
|||
#categoryform .bottombuttons * { float: left;}
|
||||
/*#categorylist { border:1px solid #ddd;}*/
|
||||
#categorylist li { background:#f8f8f8; padding:.3em .8em; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; -webkit-transition:background-color 500ms; -moz-transition:background-color 500ms; -o-transition:background-color 500ms; transition:background-color 500ms; }
|
||||
#categorylist li:hover, li:active { background:#eee; }
|
||||
#categorylist li:hover, #categorylist li:active { background:#eee; }
|
||||
#category_addinput { width: 10em; }
|
||||
|
||||
/* ---- APP SETTINGS ---- */
|
||||
|
|
|
@ -267,9 +267,13 @@ OC.Share={
|
|||
if (permissions & OC.PERMISSION_SHARE) {
|
||||
shareChecked = 'checked="checked"';
|
||||
}
|
||||
var html = '<li style="clear: both;" data-share-type="'+shareType+'" data-share-with="'+shareWith+'">';
|
||||
var html = '<li style="clear: both;" data-share-type="'+shareType+'" data-share-with="'+shareWith+'" title="' + shareWith + '">';
|
||||
html += '<a href="#" class="unshare" style="display:none;"><img class="svg" alt="'+t('core', 'Unshare')+'" src="'+OC.imagePath('core', 'actions/delete')+'"/></a>';
|
||||
html += shareWith;
|
||||
if(shareWith.length > 14){
|
||||
html += shareWith.substr(0,11) + '...';
|
||||
}else{
|
||||
html += shareWith;
|
||||
}
|
||||
if (possiblePermissions & OC.PERMISSION_CREATE || possiblePermissions & OC.PERMISSION_UPDATE || possiblePermissions & OC.PERMISSION_DELETE) {
|
||||
if (editChecked == '') {
|
||||
html += '<label style="display:none;">';
|
||||
|
|
|
@ -15,13 +15,40 @@
|
|||
"October" => "Octubre",
|
||||
"November" => "Novembre",
|
||||
"December" => "Desembre",
|
||||
"Choose" => "Escull",
|
||||
"Cancel" => "Cancel·la",
|
||||
"No" => "No",
|
||||
"Yes" => "Sí",
|
||||
"Ok" => "D'acord",
|
||||
"No categories selected for deletion." => "No hi ha categories per eliminar.",
|
||||
"Error" => "Error",
|
||||
"Error while sharing" => "Error en compartir",
|
||||
"Error while unsharing" => "Error en deixar de compartir",
|
||||
"Error while changing permissions" => "Error en canviar els permisos",
|
||||
"Shared with you and the group" => "Compartit amb vós i amb el grup",
|
||||
"by" => "per",
|
||||
"Shared with you by" => "compartit amb vós per",
|
||||
"Share with" => "Comparteix amb",
|
||||
"Share with link" => "Comparteix amb enllaç",
|
||||
"Password protect" => "Protegir amb contrasenya",
|
||||
"Password" => "Contrasenya",
|
||||
"Set expiration date" => "Estableix la data d'expiració",
|
||||
"Expiration date" => "Data d'expiració",
|
||||
"Share via email:" => "Comparteix per correu electrònic",
|
||||
"No people found" => "No s'ha trobat ningú",
|
||||
"Resharing is not allowed" => "No es permet compartir de nou",
|
||||
"Shared in" => "Compartit en",
|
||||
"with" => "amb",
|
||||
"Unshare" => "Deixa de compartir",
|
||||
"can edit" => "pot editar",
|
||||
"access control" => "control d'accés",
|
||||
"create" => "crea",
|
||||
"update" => "actualitza",
|
||||
"delete" => "elimina",
|
||||
"share" => "comparteix",
|
||||
"Password protected" => "Protegeix amb contrasenya",
|
||||
"Error unsetting expiration date" => "Error en eliminar la data d'expiració",
|
||||
"Error setting expiration date" => "Error en establir la data d'expiració",
|
||||
"ownCloud password reset" => "estableix de nou la contrasenya Owncloud",
|
||||
"Use the following link to reset your password: {link}" => "Useu l'enllaç següent per restablir la contrasenya: {link}",
|
||||
"You will receive a link to reset your password via Email." => "Rebreu un enllaç al correu electrònic per reiniciar la contrasenya.",
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
"Error while sharing" => "Fehler beim Freigeben",
|
||||
"Error while unsharing" => "Fehler beim Aufheben der Freigabe",
|
||||
"Error while changing permissions" => "Fehler beim Ändern der Rechte",
|
||||
"Shared with you and the group" => "Mit Dir und der Gruppe geteilt",
|
||||
"Shared with you and the group" => "Für Dich und folgende Gruppe freigegeben",
|
||||
"by" => "mit",
|
||||
"Shared with you by" => "Dies wurde mit dir geteilt von",
|
||||
"Share with" => "Freigeben für",
|
||||
|
@ -37,7 +37,7 @@
|
|||
"Share via email:" => "Über eine E-Mail freigeben:",
|
||||
"No people found" => "Niemand gefunden",
|
||||
"Resharing is not allowed" => "Weiterverteilen ist nicht erlaubt",
|
||||
"Shared in" => "Geteilt mit",
|
||||
"Shared in" => "Freigegeben in",
|
||||
"with" => "mit",
|
||||
"Unshare" => "Freigabe aufheben",
|
||||
"can edit" => "kann bearbeiten",
|
||||
|
|
|
@ -25,14 +25,20 @@
|
|||
"Error while sharing" => "Error al compartir",
|
||||
"Error while unsharing" => "Error en el procedimiento de ",
|
||||
"Error while changing permissions" => "Error al cambiar permisos",
|
||||
"Shared with you and the group" => "Compartido con vos y con el grupo",
|
||||
"by" => "por",
|
||||
"Shared with you by" => "Compartido con vos por",
|
||||
"Share with" => "Compartir con",
|
||||
"Share with link" => "Compartir con link",
|
||||
"Password protect" => "Proteger con contraseña ",
|
||||
"Password" => "Contraseña",
|
||||
"Set expiration date" => "Asignar fecha de vencimiento",
|
||||
"Expiration date" => "Fecha de vencimiento",
|
||||
"Share via email:" => "compartido a través de e-mail:",
|
||||
"No people found" => "No se encontraron usuarios",
|
||||
"Resharing is not allowed" => "No se permite volver a compartir",
|
||||
"Shared in" => "Compartido en",
|
||||
"with" => "con",
|
||||
"Unshare" => "Remover compartir",
|
||||
"can edit" => "puede editar",
|
||||
"access control" => "control de acceso",
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
"Password" => "パスワード",
|
||||
"Set expiration date" => "有効期限を設定",
|
||||
"Expiration date" => "有効期限",
|
||||
"Share via email:" => "メール経由で共有: %s",
|
||||
"Share via email:" => "メール経由で共有:",
|
||||
"No people found" => "ユーザーが見つかりません",
|
||||
"Resharing is not allowed" => "再共有は許可されていません",
|
||||
"Shared in" => "の中で共有中",
|
||||
|
|
|
@ -7,15 +7,39 @@ 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-10-02 23:16+0200\n"
|
||||
"PO-Revision-Date: 2012-10-02 21:17+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"
|
||||
|
||||
#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23
|
||||
msgid "Access granted"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86
|
||||
msgid "Error configuring Dropbox storage"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40
|
||||
msgid "Grant access"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:73 js/google.js:72
|
||||
msgid "Fill out all required fields"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:85
|
||||
msgid "Please provide a valid Dropbox app key and secret."
|
||||
msgstr ""
|
||||
|
||||
#: js/google.js:26 js/google.js:73 js/google.js:78
|
||||
msgid "Error configuring Google Drive storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:3
|
||||
msgid "External Storage"
|
||||
|
@ -61,22 +85,22 @@ msgstr ""
|
|||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:77 templates/settings.php:96
|
||||
#: templates/settings.php:77 templates/settings.php:107
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:88
|
||||
msgid "SSL root certificates"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:102
|
||||
msgid "Import Root Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:108
|
||||
#: templates/settings.php:87
|
||||
msgid "Enable User External Storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:109
|
||||
#: templates/settings.php:88
|
||||
msgid "Allow users to mount their own external storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:99
|
||||
msgid "SSL root certificates"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:113
|
||||
msgid "Import Root Certificate"
|
||||
msgstr ""
|
||||
|
|
|
@ -7,15 +7,39 @@ 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-10-02 23:16+0200\n"
|
||||
"PO-Revision-Date: 2012-10-02 21:17+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"
|
||||
|
||||
#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23
|
||||
msgid "Access granted"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86
|
||||
msgid "Error configuring Dropbox storage"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40
|
||||
msgid "Grant access"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:73 js/google.js:72
|
||||
msgid "Fill out all required fields"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:85
|
||||
msgid "Please provide a valid Dropbox app key and secret."
|
||||
msgstr ""
|
||||
|
||||
#: js/google.js:26 js/google.js:73 js/google.js:78
|
||||
msgid "Error configuring Google Drive storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:3
|
||||
msgid "External Storage"
|
||||
|
@ -61,22 +85,22 @@ msgstr ""
|
|||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:77 templates/settings.php:96
|
||||
#: templates/settings.php:77 templates/settings.php:107
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:88
|
||||
msgid "SSL root certificates"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:102
|
||||
msgid "Import Root Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:108
|
||||
#: templates/settings.php:87
|
||||
msgid "Enable User External Storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:109
|
||||
#: templates/settings.php:88
|
||||
msgid "Allow users to mount their own external storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:99
|
||||
msgid "SSL root certificates"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:113
|
||||
msgid "Import Root Certificate"
|
||||
msgstr ""
|
||||
|
|
|
@ -7,15 +7,39 @@ 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-10-02 23:16+0200\n"
|
||||
"PO-Revision-Date: 2012-10-02 21:17+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"
|
||||
|
||||
#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23
|
||||
msgid "Access granted"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86
|
||||
msgid "Error configuring Dropbox storage"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40
|
||||
msgid "Grant access"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:73 js/google.js:72
|
||||
msgid "Fill out all required fields"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:85
|
||||
msgid "Please provide a valid Dropbox app key and secret."
|
||||
msgstr ""
|
||||
|
||||
#: js/google.js:26 js/google.js:73 js/google.js:78
|
||||
msgid "Error configuring Google Drive storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:3
|
||||
msgid "External Storage"
|
||||
|
@ -61,22 +85,22 @@ msgstr ""
|
|||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:77 templates/settings.php:96
|
||||
#: templates/settings.php:77 templates/settings.php:107
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:88
|
||||
msgid "SSL root certificates"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:102
|
||||
msgid "Import Root Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:108
|
||||
#: templates/settings.php:87
|
||||
msgid "Enable User External Storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:109
|
||||
#: templates/settings.php:88
|
||||
msgid "Allow users to mount their own external storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:99
|
||||
msgid "SSL root certificates"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:113
|
||||
msgid "Import Root Certificate"
|
||||
msgstr ""
|
||||
|
|
|
@ -7,15 +7,39 @@ 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-10-02 23:16+0200\n"
|
||||
"PO-Revision-Date: 2012-10-02 21:17+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"
|
||||
|
||||
#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23
|
||||
msgid "Access granted"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86
|
||||
msgid "Error configuring Dropbox storage"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40
|
||||
msgid "Grant access"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:73 js/google.js:72
|
||||
msgid "Fill out all required fields"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:85
|
||||
msgid "Please provide a valid Dropbox app key and secret."
|
||||
msgstr ""
|
||||
|
||||
#: js/google.js:26 js/google.js:73 js/google.js:78
|
||||
msgid "Error configuring Google Drive storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:3
|
||||
msgid "External Storage"
|
||||
|
@ -61,22 +85,22 @@ msgstr ""
|
|||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:77 templates/settings.php:96
|
||||
#: templates/settings.php:77 templates/settings.php:107
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:88
|
||||
msgid "SSL root certificates"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:102
|
||||
msgid "Import Root Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:108
|
||||
#: templates/settings.php:87
|
||||
msgid "Enable User External Storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:109
|
||||
#: templates/settings.php:88
|
||||
msgid "Allow users to mount their own external storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:99
|
||||
msgid "SSL root certificates"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:113
|
||||
msgid "Import Root Certificate"
|
||||
msgstr ""
|
||||
|
|
|
@ -9,9 +9,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2012-09-28 23:34+0200\n"
|
||||
"PO-Revision-Date: 2012-09-28 21:34+0000\n"
|
||||
"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
|
||||
"POT-Creation-Date: 2012-10-02 02:03+0200\n"
|
||||
"PO-Revision-Date: 2012-10-01 08:49+0000\n"
|
||||
"Last-Translator: rogerc <rcalvoi@yahoo.com>\n"
|
||||
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -85,7 +85,7 @@ msgstr "Desembre"
|
|||
|
||||
#: js/oc-dialogs.js:123
|
||||
msgid "Choose"
|
||||
msgstr ""
|
||||
msgstr "Escull"
|
||||
|
||||
#: js/oc-dialogs.js:143 js/oc-dialogs.js:163
|
||||
msgid "Cancel"
|
||||
|
@ -107,46 +107,46 @@ msgstr "D'acord"
|
|||
msgid "No categories selected for deletion."
|
||||
msgstr "No hi ha categories per eliminar."
|
||||
|
||||
#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489
|
||||
#: js/share.js:501
|
||||
#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:493
|
||||
#: js/share.js:505
|
||||
msgid "Error"
|
||||
msgstr "Error"
|
||||
|
||||
#: js/share.js:103
|
||||
msgid "Error while sharing"
|
||||
msgstr ""
|
||||
msgstr "Error en compartir"
|
||||
|
||||
#: js/share.js:114
|
||||
msgid "Error while unsharing"
|
||||
msgstr ""
|
||||
msgstr "Error en deixar de compartir"
|
||||
|
||||
#: js/share.js:121
|
||||
msgid "Error while changing permissions"
|
||||
msgstr ""
|
||||
msgstr "Error en canviar els permisos"
|
||||
|
||||
#: js/share.js:130
|
||||
msgid "Shared with you and the group"
|
||||
msgstr ""
|
||||
msgstr "Compartit amb vós i amb el grup"
|
||||
|
||||
#: js/share.js:130
|
||||
msgid "by"
|
||||
msgstr ""
|
||||
msgstr "per"
|
||||
|
||||
#: js/share.js:132
|
||||
msgid "Shared with you by"
|
||||
msgstr ""
|
||||
msgstr "compartit amb vós per"
|
||||
|
||||
#: js/share.js:137
|
||||
msgid "Share with"
|
||||
msgstr ""
|
||||
msgstr "Comparteix amb"
|
||||
|
||||
#: js/share.js:142
|
||||
msgid "Share with link"
|
||||
msgstr ""
|
||||
msgstr "Comparteix amb enllaç"
|
||||
|
||||
#: js/share.js:143
|
||||
msgid "Password protect"
|
||||
msgstr ""
|
||||
msgstr "Protegir amb contrasenya"
|
||||
|
||||
#: js/share.js:147 templates/installation.php:30 templates/login.php:13
|
||||
msgid "Password"
|
||||
|
@ -154,71 +154,71 @@ msgstr "Contrasenya"
|
|||
|
||||
#: js/share.js:152
|
||||
msgid "Set expiration date"
|
||||
msgstr ""
|
||||
msgstr "Estableix la data d'expiració"
|
||||
|
||||
#: js/share.js:153
|
||||
msgid "Expiration date"
|
||||
msgstr ""
|
||||
msgstr "Data d'expiració"
|
||||
|
||||
#: js/share.js:185
|
||||
msgid "Share via email:"
|
||||
msgstr ""
|
||||
msgstr "Comparteix per correu electrònic"
|
||||
|
||||
#: js/share.js:187
|
||||
msgid "No people found"
|
||||
msgstr ""
|
||||
msgstr "No s'ha trobat ningú"
|
||||
|
||||
#: js/share.js:214
|
||||
msgid "Resharing is not allowed"
|
||||
msgstr ""
|
||||
msgstr "No es permet compartir de nou"
|
||||
|
||||
#: js/share.js:250
|
||||
msgid "Shared in"
|
||||
msgstr ""
|
||||
msgstr "Compartit en"
|
||||
|
||||
#: js/share.js:250
|
||||
msgid "with"
|
||||
msgstr ""
|
||||
msgstr "amb"
|
||||
|
||||
#: js/share.js:271
|
||||
msgid "Unshare"
|
||||
msgstr ""
|
||||
msgstr "Deixa de compartir"
|
||||
|
||||
#: js/share.js:279
|
||||
#: js/share.js:283
|
||||
msgid "can edit"
|
||||
msgstr ""
|
||||
msgstr "pot editar"
|
||||
|
||||
#: js/share.js:281
|
||||
#: js/share.js:285
|
||||
msgid "access control"
|
||||
msgstr ""
|
||||
msgstr "control d'accés"
|
||||
|
||||
#: js/share.js:284
|
||||
#: js/share.js:288
|
||||
msgid "create"
|
||||
msgstr ""
|
||||
msgstr "crea"
|
||||
|
||||
#: js/share.js:287
|
||||
#: js/share.js:291
|
||||
msgid "update"
|
||||
msgstr ""
|
||||
msgstr "actualitza"
|
||||
|
||||
#: js/share.js:290
|
||||
#: js/share.js:294
|
||||
msgid "delete"
|
||||
msgstr ""
|
||||
msgstr "elimina"
|
||||
|
||||
#: js/share.js:293
|
||||
#: js/share.js:297
|
||||
msgid "share"
|
||||
msgstr ""
|
||||
msgstr "comparteix"
|
||||
|
||||
#: js/share.js:317 js/share.js:476
|
||||
#: js/share.js:321 js/share.js:480
|
||||
msgid "Password protected"
|
||||
msgstr ""
|
||||
msgstr "Protegeix amb contrasenya"
|
||||
|
||||
#: js/share.js:489
|
||||
#: js/share.js:493
|
||||
msgid "Error unsetting expiration date"
|
||||
msgstr ""
|
||||
msgstr "Error en eliminar la data d'expiració"
|
||||
|
||||
#: js/share.js:501
|
||||
#: js/share.js:505
|
||||
msgid "Error setting expiration date"
|
||||
msgstr ""
|
||||
msgstr "Error en establir la data d'expiració"
|
||||
|
||||
#: lostpassword/index.php:26
|
||||
msgid "ownCloud password reset"
|
||||
|
@ -245,7 +245,7 @@ msgstr "No s'ha pogut iniciar la sessió"
|
|||
msgid "Username"
|
||||
msgstr "Nom d'usuari"
|
||||
|
||||
#: lostpassword/templates/lostpassword.php:15
|
||||
#: lostpassword/templates/lostpassword.php:14
|
||||
msgid "Request reset"
|
||||
msgstr "Sol·licita reinicialització"
|
||||
|
||||
|
@ -358,11 +358,11 @@ msgstr "Surt"
|
|||
msgid "Lost your password?"
|
||||
msgstr "Heu perdut la contrasenya?"
|
||||
|
||||
#: templates/login.php:17
|
||||
#: templates/login.php:16
|
||||
msgid "remember"
|
||||
msgstr "recorda'm"
|
||||
|
||||
#: templates/login.php:18
|
||||
#: templates/login.php:17
|
||||
msgid "Log in"
|
||||
msgstr "Inici de sessió"
|
||||
|
||||
|
|
|
@ -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-26 13:19+0200\n"
|
||||
"PO-Revision-Date: 2012-09-26 11:20+0000\n"
|
||||
"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
|
||||
"POT-Creation-Date: 2012-10-02 02:02+0200\n"
|
||||
"PO-Revision-Date: 2012-10-01 08:52+0000\n"
|
||||
"Last-Translator: rogerc <rcalvoi@yahoo.com>\n"
|
||||
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -65,7 +65,7 @@ msgstr "Suprimeix"
|
|||
|
||||
#: js/fileactions.js:182
|
||||
msgid "Rename"
|
||||
msgstr ""
|
||||
msgstr "Reanomena"
|
||||
|
||||
#: js/filelist.js:190 js/filelist.js:192
|
||||
msgid "already exists"
|
||||
|
@ -121,11 +121,11 @@ msgstr "Pendents"
|
|||
|
||||
#: js/files.js:256
|
||||
msgid "1 file uploading"
|
||||
msgstr ""
|
||||
msgstr "1 fitxer pujant"
|
||||
|
||||
#: js/files.js:259 js/files.js:304 js/files.js:319
|
||||
msgid "files uploading"
|
||||
msgstr ""
|
||||
msgstr "fitxers pujant"
|
||||
|
||||
#: js/files.js:322 js/files.js:355
|
||||
msgid "Upload cancelled."
|
||||
|
@ -140,81 +140,81 @@ msgstr "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·l
|
|||
msgid "Invalid name, '/' is not allowed."
|
||||
msgstr "El nom no és vàlid, no es permet '/'."
|
||||
|
||||
#: js/files.js:667
|
||||
#: js/files.js:668
|
||||
msgid "files scanned"
|
||||
msgstr "arxius escanejats"
|
||||
|
||||
#: js/files.js:675
|
||||
#: js/files.js:676
|
||||
msgid "error while scanning"
|
||||
msgstr "error durant l'escaneig"
|
||||
|
||||
#: js/files.js:748 templates/index.php:48
|
||||
#: js/files.js:749 templates/index.php:48
|
||||
msgid "Name"
|
||||
msgstr "Nom"
|
||||
|
||||
#: js/files.js:749 templates/index.php:56
|
||||
#: js/files.js:750 templates/index.php:56
|
||||
msgid "Size"
|
||||
msgstr "Mida"
|
||||
|
||||
#: js/files.js:750 templates/index.php:58
|
||||
#: js/files.js:751 templates/index.php:58
|
||||
msgid "Modified"
|
||||
msgstr "Modificat"
|
||||
|
||||
#: js/files.js:777
|
||||
#: js/files.js:778
|
||||
msgid "folder"
|
||||
msgstr "carpeta"
|
||||
|
||||
#: js/files.js:779
|
||||
#: js/files.js:780
|
||||
msgid "folders"
|
||||
msgstr "carpetes"
|
||||
|
||||
#: js/files.js:787
|
||||
#: js/files.js:788
|
||||
msgid "file"
|
||||
msgstr "fitxer"
|
||||
|
||||
#: js/files.js:789
|
||||
#: js/files.js:790
|
||||
msgid "files"
|
||||
msgstr "fitxers"
|
||||
|
||||
#: js/files.js:833
|
||||
msgid "seconds ago"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:834
|
||||
msgid "minute ago"
|
||||
msgstr ""
|
||||
msgid "seconds ago"
|
||||
msgstr "segons enrere"
|
||||
|
||||
#: js/files.js:835
|
||||
msgid "minutes ago"
|
||||
msgstr ""
|
||||
msgid "minute ago"
|
||||
msgstr "minut enrere"
|
||||
|
||||
#: js/files.js:838
|
||||
msgid "today"
|
||||
msgstr ""
|
||||
#: js/files.js:836
|
||||
msgid "minutes ago"
|
||||
msgstr "minuts enrere"
|
||||
|
||||
#: js/files.js:839
|
||||
msgid "yesterday"
|
||||
msgstr ""
|
||||
msgid "today"
|
||||
msgstr "avui"
|
||||
|
||||
#: js/files.js:840
|
||||
msgid "days ago"
|
||||
msgstr ""
|
||||
msgid "yesterday"
|
||||
msgstr "ahir"
|
||||
|
||||
#: js/files.js:841
|
||||
msgid "last month"
|
||||
msgstr ""
|
||||
msgid "days ago"
|
||||
msgstr "dies enrere"
|
||||
|
||||
#: js/files.js:843
|
||||
msgid "months ago"
|
||||
msgstr ""
|
||||
#: js/files.js:842
|
||||
msgid "last month"
|
||||
msgstr "el mes passat"
|
||||
|
||||
#: js/files.js:844
|
||||
msgid "last year"
|
||||
msgstr ""
|
||||
msgid "months ago"
|
||||
msgstr "mesos enrere"
|
||||
|
||||
#: js/files.js:845
|
||||
msgid "last year"
|
||||
msgstr "l'any passat"
|
||||
|
||||
#: js/files.js:846
|
||||
msgid "years ago"
|
||||
msgstr ""
|
||||
msgstr "anys enrere"
|
||||
|
||||
#: templates/admin.php:5
|
||||
msgid "File handling"
|
||||
|
|
|
@ -8,15 +8,39 @@ 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-13 18:33+0000\n"
|
||||
"Last-Translator: rogerc <rcalvoi@yahoo.com>\n"
|
||||
"POT-Creation-Date: 2012-10-02 23:16+0200\n"
|
||||
"PO-Revision-Date: 2012-10-02 21:17+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"
|
||||
|
||||
#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23
|
||||
msgid "Access granted"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86
|
||||
msgid "Error configuring Dropbox storage"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40
|
||||
msgid "Grant access"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:73 js/google.js:72
|
||||
msgid "Fill out all required fields"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:85
|
||||
msgid "Please provide a valid Dropbox app key and secret."
|
||||
msgstr ""
|
||||
|
||||
#: js/google.js:26 js/google.js:73 js/google.js:78
|
||||
msgid "Error configuring Google Drive storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:3
|
||||
msgid "External Storage"
|
||||
|
@ -62,22 +86,22 @@ msgstr "Grups"
|
|||
msgid "Users"
|
||||
msgstr "Usuaris"
|
||||
|
||||
#: templates/settings.php:77 templates/settings.php:96
|
||||
#: templates/settings.php:77 templates/settings.php:107
|
||||
msgid "Delete"
|
||||
msgstr "Elimina"
|
||||
|
||||
#: templates/settings.php:88
|
||||
msgid "SSL root certificates"
|
||||
msgstr "Certificats SSL root"
|
||||
|
||||
#: templates/settings.php:102
|
||||
msgid "Import Root Certificate"
|
||||
msgstr "Importa certificat root"
|
||||
|
||||
#: templates/settings.php:108
|
||||
#: templates/settings.php:87
|
||||
msgid "Enable User External Storage"
|
||||
msgstr "Habilita l'emmagatzemament extern d'usuari"
|
||||
|
||||
#: templates/settings.php:109
|
||||
#: templates/settings.php:88
|
||||
msgid "Allow users to mount their own external storage"
|
||||
msgstr "Permet als usuaris muntar el seu emmagatzemament extern propi"
|
||||
|
||||
#: templates/settings.php:99
|
||||
msgid "SSL root certificates"
|
||||
msgstr "Certificats SSL root"
|
||||
|
||||
#: templates/settings.php:113
|
||||
msgid "Import Root Certificate"
|
||||
msgstr "Importa certificat root"
|
||||
|
|
|
@ -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-22 01:14+0200\n"
|
||||
"PO-Revision-Date: 2012-09-21 23:15+0000\n"
|
||||
"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
|
||||
"POT-Creation-Date: 2012-10-02 02:02+0200\n"
|
||||
"PO-Revision-Date: 2012-10-01 08:50+0000\n"
|
||||
"Last-Translator: rogerc <rcalvoi@yahoo.com>\n"
|
||||
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -29,12 +29,12 @@ msgstr "Envia"
|
|||
#: templates/public.php:9
|
||||
#, php-format
|
||||
msgid "%s shared the folder %s with you"
|
||||
msgstr ""
|
||||
msgstr "%s ha compartit la carpeta %s amb vós"
|
||||
|
||||
#: templates/public.php:11
|
||||
#, php-format
|
||||
msgid "%s shared the file %s with you"
|
||||
msgstr ""
|
||||
msgstr "%s ha compartit el fitxer %s amb vós"
|
||||
|
||||
#: templates/public.php:14 templates/public.php:30
|
||||
msgid "Download"
|
||||
|
|
|
@ -9,9 +9,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2012-09-22 01:14+0200\n"
|
||||
"PO-Revision-Date: 2012-09-21 23:15+0000\n"
|
||||
"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
|
||||
"POT-Creation-Date: 2012-10-02 02:03+0200\n"
|
||||
"PO-Revision-Date: 2012-10-01 08:52+0000\n"
|
||||
"Last-Translator: rogerc <rcalvoi@yahoo.com>\n"
|
||||
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -25,7 +25,7 @@ msgstr "Expira totes les versions"
|
|||
|
||||
#: js/versions.js:16
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
msgstr "Historial"
|
||||
|
||||
#: templates/settings-personal.php:4
|
||||
msgid "Versions"
|
||||
|
|
|
@ -11,9 +11,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2012-09-06 02:01+0200\n"
|
||||
"PO-Revision-Date: 2012-09-05 13:37+0000\n"
|
||||
"Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\n"
|
||||
"POT-Creation-Date: 2012-10-02 23:16+0200\n"
|
||||
"PO-Revision-Date: 2012-10-02 21:17+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"
|
||||
|
@ -21,6 +21,30 @@ msgstr ""
|
|||
"Language: cs_CZ\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23
|
||||
msgid "Access granted"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86
|
||||
msgid "Error configuring Dropbox storage"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40
|
||||
msgid "Grant access"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:73 js/google.js:72
|
||||
msgid "Fill out all required fields"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:85
|
||||
msgid "Please provide a valid Dropbox app key and secret."
|
||||
msgstr ""
|
||||
|
||||
#: js/google.js:26 js/google.js:73 js/google.js:78
|
||||
msgid "Error configuring Google Drive storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:3
|
||||
msgid "External Storage"
|
||||
msgstr "Externí úložiště"
|
||||
|
@ -65,22 +89,22 @@ msgstr "Skupiny"
|
|||
msgid "Users"
|
||||
msgstr "Uživatelé"
|
||||
|
||||
#: templates/settings.php:77 templates/settings.php:96
|
||||
#: templates/settings.php:77 templates/settings.php:107
|
||||
msgid "Delete"
|
||||
msgstr "Smazat"
|
||||
|
||||
#: templates/settings.php:88
|
||||
msgid "SSL root certificates"
|
||||
msgstr "Kořenové certifikáty SSL"
|
||||
|
||||
#: templates/settings.php:102
|
||||
msgid "Import Root Certificate"
|
||||
msgstr "Importovat kořenového certifikátu"
|
||||
|
||||
#: templates/settings.php:108
|
||||
#: templates/settings.php:87
|
||||
msgid "Enable User External Storage"
|
||||
msgstr "Zapnout externí uživatelské úložiště"
|
||||
|
||||
#: templates/settings.php:109
|
||||
#: templates/settings.php:88
|
||||
msgid "Allow users to mount their own external storage"
|
||||
msgstr "Povolit uživatelům připojení jejich vlastních externích úložišť"
|
||||
|
||||
#: templates/settings.php:99
|
||||
msgid "SSL root certificates"
|
||||
msgstr "Kořenové certifikáty SSL"
|
||||
|
||||
#: templates/settings.php:113
|
||||
msgid "Import Root Certificate"
|
||||
msgstr "Importovat kořenového certifikátu"
|
||||
|
|
|
@ -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-26 02:02+0200\n"
|
||||
"PO-Revision-Date: 2012-09-25 14:09+0000\n"
|
||||
"Last-Translator: Morten Juhl-Johansen Zölde-Fejér <morten@writtenandread.net>\n"
|
||||
"POT-Creation-Date: 2012-10-02 23:16+0200\n"
|
||||
"PO-Revision-Date: 2012-10-02 21:17+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"
|
||||
|
@ -18,6 +18,30 @@ msgstr ""
|
|||
"Language: da\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23
|
||||
msgid "Access granted"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86
|
||||
msgid "Error configuring Dropbox storage"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40
|
||||
msgid "Grant access"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:73 js/google.js:72
|
||||
msgid "Fill out all required fields"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:85
|
||||
msgid "Please provide a valid Dropbox app key and secret."
|
||||
msgstr ""
|
||||
|
||||
#: js/google.js:26 js/google.js:73 js/google.js:78
|
||||
msgid "Error configuring Google Drive storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:3
|
||||
msgid "External Storage"
|
||||
msgstr "Ekstern opbevaring"
|
||||
|
|
|
@ -20,9 +20,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2012-09-29 02:02+0200\n"
|
||||
"PO-Revision-Date: 2012-09-28 21:40+0000\n"
|
||||
"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
|
||||
"POT-Creation-Date: 2012-10-02 23:16+0200\n"
|
||||
"PO-Revision-Date: 2012-10-02 07:55+0000\n"
|
||||
"Last-Translator: Mirodin <blobbyjj@ymail.com>\n"
|
||||
"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -118,8 +118,8 @@ msgstr "OK"
|
|||
msgid "No categories selected for deletion."
|
||||
msgstr "Es wurde keine Kategorien zum Löschen ausgewählt."
|
||||
|
||||
#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489
|
||||
#: js/share.js:501
|
||||
#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:493
|
||||
#: js/share.js:505
|
||||
msgid "Error"
|
||||
msgstr "Fehler"
|
||||
|
||||
|
@ -137,7 +137,7 @@ msgstr "Fehler beim Ändern der Rechte"
|
|||
|
||||
#: js/share.js:130
|
||||
msgid "Shared with you and the group"
|
||||
msgstr "Mit Dir und der Gruppe geteilt"
|
||||
msgstr "Für Dich und folgende Gruppe freigegeben"
|
||||
|
||||
#: js/share.js:130
|
||||
msgid "by"
|
||||
|
@ -185,7 +185,7 @@ msgstr "Weiterverteilen ist nicht erlaubt"
|
|||
|
||||
#: js/share.js:250
|
||||
msgid "Shared in"
|
||||
msgstr "Geteilt mit"
|
||||
msgstr "Freigegeben in"
|
||||
|
||||
#: js/share.js:250
|
||||
msgid "with"
|
||||
|
@ -195,39 +195,39 @@ msgstr "mit"
|
|||
msgid "Unshare"
|
||||
msgstr "Freigabe aufheben"
|
||||
|
||||
#: js/share.js:279
|
||||
#: js/share.js:283
|
||||
msgid "can edit"
|
||||
msgstr "kann bearbeiten"
|
||||
|
||||
#: js/share.js:281
|
||||
#: js/share.js:285
|
||||
msgid "access control"
|
||||
msgstr "Zugriffskontrolle"
|
||||
|
||||
#: js/share.js:284
|
||||
#: js/share.js:288
|
||||
msgid "create"
|
||||
msgstr "erstellen"
|
||||
|
||||
#: js/share.js:287
|
||||
#: js/share.js:291
|
||||
msgid "update"
|
||||
msgstr "aktualisieren"
|
||||
|
||||
#: js/share.js:290
|
||||
#: js/share.js:294
|
||||
msgid "delete"
|
||||
msgstr "löschen"
|
||||
|
||||
#: js/share.js:293
|
||||
#: js/share.js:297
|
||||
msgid "share"
|
||||
msgstr "teilen"
|
||||
|
||||
#: js/share.js:317 js/share.js:476
|
||||
#: js/share.js:321 js/share.js:480
|
||||
msgid "Password protected"
|
||||
msgstr "Durch ein Passwort geschützt"
|
||||
|
||||
#: js/share.js:489
|
||||
#: js/share.js:493
|
||||
msgid "Error unsetting expiration date"
|
||||
msgstr "Fehler beim entfernen des Ablaufdatums"
|
||||
|
||||
#: js/share.js:501
|
||||
#: js/share.js:505
|
||||
msgid "Error setting expiration date"
|
||||
msgstr "Fehler beim Setzen des Ablaufdatums"
|
||||
|
||||
|
@ -256,7 +256,7 @@ msgstr "Login fehlgeschlagen!"
|
|||
msgid "Username"
|
||||
msgstr "Benutzername"
|
||||
|
||||
#: lostpassword/templates/lostpassword.php:15
|
||||
#: lostpassword/templates/lostpassword.php:14
|
||||
msgid "Request reset"
|
||||
msgstr "Beantrage Zurücksetzung"
|
||||
|
||||
|
@ -369,11 +369,11 @@ msgstr "Abmelden"
|
|||
msgid "Lost your password?"
|
||||
msgstr "Passwort vergessen?"
|
||||
|
||||
#: templates/login.php:17
|
||||
#: templates/login.php:16
|
||||
msgid "remember"
|
||||
msgstr "merken"
|
||||
|
||||
#: templates/login.php:18
|
||||
#: templates/login.php:17
|
||||
msgid "Log in"
|
||||
msgstr "Einloggen"
|
||||
|
||||
|
|
|
@ -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-13 23:12+0200\n"
|
||||
"PO-Revision-Date: 2012-08-13 20:21+0000\n"
|
||||
"Last-Translator: driz <driz@i2pmail.org>\n"
|
||||
"POT-Creation-Date: 2012-10-02 23:16+0200\n"
|
||||
"PO-Revision-Date: 2012-10-02 09:06+0000\n"
|
||||
"Last-Translator: Mirodin <blobbyjj@ymail.com>\n"
|
||||
"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: de\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: templates/settings.php:3
|
||||
msgid "Encryption"
|
||||
|
|
|
@ -9,15 +9,39 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2012-08-24 02:02+0200\n"
|
||||
"PO-Revision-Date: 2012-08-23 10:07+0000\n"
|
||||
"Last-Translator: traductor <transifex.3.mensaje@spamgourmet.com>\n"
|
||||
"POT-Creation-Date: 2012-10-02 23:16+0200\n"
|
||||
"PO-Revision-Date: 2012-10-02 21:17+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"
|
||||
|
||||
#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23
|
||||
msgid "Access granted"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86
|
||||
msgid "Error configuring Dropbox storage"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40
|
||||
msgid "Grant access"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:73 js/google.js:72
|
||||
msgid "Fill out all required fields"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:85
|
||||
msgid "Please provide a valid Dropbox app key and secret."
|
||||
msgstr ""
|
||||
|
||||
#: js/google.js:26 js/google.js:73 js/google.js:78
|
||||
msgid "Error configuring Google Drive storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:3
|
||||
msgid "External Storage"
|
||||
|
@ -63,22 +87,22 @@ msgstr "Gruppen"
|
|||
msgid "Users"
|
||||
msgstr "Benutzer"
|
||||
|
||||
#: templates/settings.php:77 templates/settings.php:96
|
||||
#: templates/settings.php:77 templates/settings.php:107
|
||||
msgid "Delete"
|
||||
msgstr "Löschen"
|
||||
|
||||
#: templates/settings.php:88
|
||||
msgid "SSL root certificates"
|
||||
msgstr "SSL-Root-Zertifikate"
|
||||
|
||||
#: templates/settings.php:102
|
||||
msgid "Import Root Certificate"
|
||||
msgstr "Root-Zertifikate importieren"
|
||||
|
||||
#: templates/settings.php:108
|
||||
#: templates/settings.php:87
|
||||
msgid "Enable User External Storage"
|
||||
msgstr "Externen Speicher für Benutzer aktivieren"
|
||||
|
||||
#: templates/settings.php:109
|
||||
#: templates/settings.php:88
|
||||
msgid "Allow users to mount their own external storage"
|
||||
msgstr "Erlaubt Benutzern ihre eigenen externen Speicher einzubinden"
|
||||
|
||||
#: templates/settings.php:99
|
||||
msgid "SSL root certificates"
|
||||
msgstr "SSL-Root-Zertifikate"
|
||||
|
||||
#: templates/settings.php:113
|
||||
msgid "Import Root Certificate"
|
||||
msgstr "Root-Zertifikate importieren"
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# <blobbyjj@ymail.com>, 2012.
|
||||
# I Robot <thomas.mueller@tmit.eu>, 2012.
|
||||
# <niko@nik-o-mat.de>, 2012.
|
||||
# <thomas.mueller@tmit.eu>, 2012.
|
||||
|
@ -11,9 +12,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2012-09-22 02:00+0200\n"
|
||||
"PO-Revision-Date: 2012-09-21 23:22+0000\n"
|
||||
"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
|
||||
"POT-Creation-Date: 2012-10-02 23:16+0200\n"
|
||||
"PO-Revision-Date: 2012-10-02 09:08+0000\n"
|
||||
"Last-Translator: Mirodin <blobbyjj@ymail.com>\n"
|
||||
"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -32,12 +33,12 @@ msgstr "Absenden"
|
|||
#: templates/public.php:9
|
||||
#, php-format
|
||||
msgid "%s shared the folder %s with you"
|
||||
msgstr "%s hat mit Ihnen den Ordner %s geteilt"
|
||||
msgstr "%s hat den Ordner %s für dich freigegeben"
|
||||
|
||||
#: templates/public.php:11
|
||||
#, php-format
|
||||
msgid "%s shared the file %s with you"
|
||||
msgstr "%s hat mit Ihnen die Datei %s geteilt"
|
||||
msgstr "%s hat die Datei %s für dich freigegeben"
|
||||
|
||||
#: templates/public.php:14 templates/public.php:30
|
||||
msgid "Download"
|
||||
|
@ -49,4 +50,4 @@ msgstr "Es ist keine Vorschau verfügbar für"
|
|||
|
||||
#: templates/public.php:37
|
||||
msgid "web services under your control"
|
||||
msgstr "Web-Services unter Ihrer Kontrolle"
|
||||
msgstr "Web-Services unter Deiner Kontrolle"
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# <blobbyjj@ymail.com>, 2012.
|
||||
# I Robot <thomas.mueller@tmit.eu>, 2012.
|
||||
# <mail@felixmoeller.de>, 2012.
|
||||
# <niko@nik-o-mat.de>, 2012.
|
||||
|
@ -11,9 +12,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2012-09-22 02:00+0200\n"
|
||||
"PO-Revision-Date: 2012-09-21 23:21+0000\n"
|
||||
"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
|
||||
"POT-Creation-Date: 2012-10-02 23:16+0200\n"
|
||||
"PO-Revision-Date: 2012-10-02 09:08+0000\n"
|
||||
"Last-Translator: Mirodin <blobbyjj@ymail.com>\n"
|
||||
"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -35,7 +36,7 @@ msgstr "Versionen"
|
|||
|
||||
#: templates/settings-personal.php:7
|
||||
msgid "This will delete all existing backup versions of your files"
|
||||
msgstr "Dies löscht alle vorhandenen Sicherungsversionen Ihrer Dateien."
|
||||
msgstr "Dies löscht alle vorhandenen Sicherungsversionen Deiner Dateien."
|
||||
|
||||
#: templates/settings.php:3
|
||||
msgid "Files Versioning"
|
||||
|
|
|
@ -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-28 02:03+0200\n"
|
||||
"PO-Revision-Date: 2012-09-27 22:40+0000\n"
|
||||
"POT-Creation-Date: 2012-10-02 02:03+0200\n"
|
||||
"PO-Revision-Date: 2012-10-01 23:58+0000\n"
|
||||
"Last-Translator: Mirodin <blobbyjj@ymail.com>\n"
|
||||
"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# <blobbyjj@ymail.com>, 2012.
|
||||
# I Robot <thomas.mueller@tmit.eu>, 2012.
|
||||
# Maurice Preuß <>, 2012.
|
||||
# <niko@nik-o-mat.de>, 2012.
|
||||
|
@ -12,9 +13,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2012-09-18 02:01+0200\n"
|
||||
"PO-Revision-Date: 2012-09-17 20:49+0000\n"
|
||||
"Last-Translator: traductor <transifex.3.mensaje@spamgourmet.com>\n"
|
||||
"POT-Creation-Date: 2012-10-02 23:16+0200\n"
|
||||
"PO-Revision-Date: 2012-10-02 09:13+0000\n"
|
||||
"Last-Translator: Mirodin <blobbyjj@ymail.com>\n"
|
||||
"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -29,7 +30,7 @@ msgstr "Host"
|
|||
#: templates/settings.php:8
|
||||
msgid ""
|
||||
"You can omit the protocol, except you require SSL. Then start with ldaps://"
|
||||
msgstr "Sie können das Protokoll auslassen, außer wenn Sie SSL benötigen. Beginnen Sie dann mit ldaps://"
|
||||
msgstr "Du kannst das Protokoll auslassen, außer wenn Du SSL benötigst. Beginne dann mit ldaps://"
|
||||
|
||||
#: templates/settings.php:9
|
||||
msgid "Base DN"
|
||||
|
@ -37,7 +38,7 @@ msgstr "Basis-DN"
|
|||
|
||||
#: templates/settings.php:9
|
||||
msgid "You can specify Base DN for users and groups in the Advanced tab"
|
||||
msgstr "Sie können Basis-DN für Benutzer und Gruppen in dem \"Erweitert\"-Reiter konfigurieren"
|
||||
msgstr "Du kannst Basis-DN für Benutzer und Gruppen in dem \"Erweitert\"-Reiter konfigurieren"
|
||||
|
||||
#: templates/settings.php:10
|
||||
msgid "User DN"
|
||||
|
@ -48,7 +49,7 @@ msgid ""
|
|||
"The DN of the client user with which the bind shall be done, e.g. "
|
||||
"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password "
|
||||
"empty."
|
||||
msgstr "Der DN des Benutzers für LDAP-Bind, z.B.: uid=agent,dc=example,dc=com. Für anonymen Zugriff lassen Sie DN und Passwort leer."
|
||||
msgstr "Der DN des Benutzers für LDAP-Bind, z.B.: uid=agent,dc=example,dc=com. Für anonymen Zugriff lasse DN und Passwort leer."
|
||||
|
||||
#: templates/settings.php:11
|
||||
msgid "Password"
|
||||
|
@ -56,7 +57,7 @@ msgstr "Passwort"
|
|||
|
||||
#: templates/settings.php:11
|
||||
msgid "For anonymous access, leave DN and Password empty."
|
||||
msgstr "Lassen Sie die Felder von DN und Passwort für anonymen Zugang leer."
|
||||
msgstr "Lasse die Felder von DN und Passwort für anonymen Zugang leer."
|
||||
|
||||
#: templates/settings.php:12
|
||||
msgid "User Login Filter"
|
||||
|
@ -120,7 +121,7 @@ msgstr "Nutze TLS"
|
|||
|
||||
#: templates/settings.php:21
|
||||
msgid "Do not use it for SSL connections, it will fail."
|
||||
msgstr "Verwenden Sie es nicht für SSL-Verbindungen, es wird fehlschlagen."
|
||||
msgstr "Verwende dies nicht für SSL-Verbindungen, es wird fehlschlagen."
|
||||
|
||||
#: templates/settings.php:22
|
||||
msgid "Case insensitve LDAP server (Windows)"
|
||||
|
@ -168,7 +169,7 @@ msgstr "in Sekunden. Eine Änderung leert den Cache."
|
|||
msgid ""
|
||||
"Leave empty for user name (default). Otherwise, specify an LDAP/AD "
|
||||
"attribute."
|
||||
msgstr "Ohne Eingabe wird der Benutzername (Standard) verwendet. Anderenfalls geben Sie ein LDAP/AD-Attribut an."
|
||||
msgstr "Ohne Eingabe wird der Benutzername (Standard) verwendet. Anderenfall trage ein LDAP/AD-Attribut ein."
|
||||
|
||||
#: templates/settings.php:32
|
||||
msgid "Help"
|
||||
|
|
|
@ -10,9 +10,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2012-09-18 02:01+0200\n"
|
||||
"PO-Revision-Date: 2012-09-17 20:07+0000\n"
|
||||
"Last-Translator: Efstathios Iosifidis <diamond_gr@freemail.gr>\n"
|
||||
"POT-Creation-Date: 2012-10-02 23:16+0200\n"
|
||||
"PO-Revision-Date: 2012-10-02 21:17+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"
|
||||
|
@ -20,6 +20,30 @@ msgstr ""
|
|||
"Language: el\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23
|
||||
msgid "Access granted"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86
|
||||
msgid "Error configuring Dropbox storage"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40
|
||||
msgid "Grant access"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:73 js/google.js:72
|
||||
msgid "Fill out all required fields"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:85
|
||||
msgid "Please provide a valid Dropbox app key and secret."
|
||||
msgstr ""
|
||||
|
||||
#: js/google.js:26 js/google.js:73 js/google.js:78
|
||||
msgid "Error configuring Google Drive storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:3
|
||||
msgid "External Storage"
|
||||
msgstr "Εξωτερικό Αποθηκευτικό Μέσο"
|
||||
|
@ -64,22 +88,22 @@ msgstr "Ομάδες"
|
|||
msgid "Users"
|
||||
msgstr "Χρήστες"
|
||||
|
||||
#: templates/settings.php:77 templates/settings.php:96
|
||||
#: templates/settings.php:77 templates/settings.php:107
|
||||
msgid "Delete"
|
||||
msgstr "Διαγραφή"
|
||||
|
||||
#: templates/settings.php:88
|
||||
msgid "SSL root certificates"
|
||||
msgstr "Πιστοποιητικά SSL root"
|
||||
|
||||
#: templates/settings.php:102
|
||||
msgid "Import Root Certificate"
|
||||
msgstr "Εισαγωγή Πιστοποιητικού Root"
|
||||
|
||||
#: templates/settings.php:108
|
||||
#: templates/settings.php:87
|
||||
msgid "Enable User External Storage"
|
||||
msgstr "Ενεργοποίηση Εξωτερικού Αποθηκευτικού Χώρου Χρήστη"
|
||||
|
||||
#: templates/settings.php:109
|
||||
#: templates/settings.php:88
|
||||
msgid "Allow users to mount their own external storage"
|
||||
msgstr "Να επιτρέπεται στους χρήστες να προσαρτούν δικό τους εξωτερικό αποθηκευτικό χώρο"
|
||||
|
||||
#: templates/settings.php:99
|
||||
msgid "SSL root certificates"
|
||||
msgstr "Πιστοποιητικά SSL root"
|
||||
|
||||
#: templates/settings.php:113
|
||||
msgid "Import Root Certificate"
|
||||
msgstr "Εισαγωγή Πιστοποιητικού Root"
|
||||
|
|
|
@ -10,9 +10,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2012-09-28 23:34+0200\n"
|
||||
"PO-Revision-Date: 2012-09-28 01:27+0000\n"
|
||||
"Last-Translator: Dimitris M. <monopatis@gmail.com>\n"
|
||||
"POT-Creation-Date: 2012-10-02 23:16+0200\n"
|
||||
"PO-Revision-Date: 2012-10-02 06:46+0000\n"
|
||||
"Last-Translator: Efstathios Iosifidis <diamond_gr@freemail.gr>\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"
|
||||
|
@ -140,7 +140,7 @@ msgstr "Δεν προτείνεται, χρήση μόνο για δοκιμές
|
|||
|
||||
#: templates/settings.php:24
|
||||
msgid "User Display Name Field"
|
||||
msgstr "User Display Name Field"
|
||||
msgstr "Πεδίο Ονόματος Χρήστη"
|
||||
|
||||
#: templates/settings.php:24
|
||||
msgid "The LDAP attribute to use to generate the user`s ownCloud name."
|
||||
|
|
|
@ -8,15 +8,39 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2012-08-16 02:04+0200\n"
|
||||
"PO-Revision-Date: 2012-08-15 22:09+0000\n"
|
||||
"Last-Translator: Mariano <mstreet@kde.org.ar>\n"
|
||||
"POT-Creation-Date: 2012-10-02 23:16+0200\n"
|
||||
"PO-Revision-Date: 2012-10-02 21:17+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"
|
||||
|
||||
#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23
|
||||
msgid "Access granted"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86
|
||||
msgid "Error configuring Dropbox storage"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40
|
||||
msgid "Grant access"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:73 js/google.js:72
|
||||
msgid "Fill out all required fields"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:85
|
||||
msgid "Please provide a valid Dropbox app key and secret."
|
||||
msgstr ""
|
||||
|
||||
#: js/google.js:26 js/google.js:73 js/google.js:78
|
||||
msgid "Error configuring Google Drive storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:3
|
||||
msgid "External Storage"
|
||||
|
@ -62,22 +86,22 @@ msgstr "Grupoj"
|
|||
msgid "Users"
|
||||
msgstr "Uzantoj"
|
||||
|
||||
#: templates/settings.php:77 templates/settings.php:96
|
||||
#: templates/settings.php:77 templates/settings.php:107
|
||||
msgid "Delete"
|
||||
msgstr "Forigi"
|
||||
|
||||
#: templates/settings.php:88
|
||||
msgid "SSL root certificates"
|
||||
msgstr "Radikaj SSL-atestoj"
|
||||
|
||||
#: templates/settings.php:102
|
||||
msgid "Import Root Certificate"
|
||||
msgstr "Enporti radikan ateston"
|
||||
|
||||
#: templates/settings.php:108
|
||||
#: templates/settings.php:87
|
||||
msgid "Enable User External Storage"
|
||||
msgstr "Kapabligi malenan memorilon de uzanto"
|
||||
|
||||
#: templates/settings.php:109
|
||||
#: templates/settings.php:88
|
||||
msgid "Allow users to mount their own external storage"
|
||||
msgstr "Permesi al uzantoj surmeti siajn proprajn malenajn memorilojn"
|
||||
|
||||
#: templates/settings.php:99
|
||||
msgid "SSL root certificates"
|
||||
msgstr "Radikaj SSL-atestoj"
|
||||
|
||||
#: templates/settings.php:113
|
||||
msgid "Import Root Certificate"
|
||||
msgstr "Enporti radikan ateston"
|
||||
|
|
|
@ -9,15 +9,39 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2012-08-31 02:02+0200\n"
|
||||
"PO-Revision-Date: 2012-08-30 20:26+0000\n"
|
||||
"Last-Translator: pedro.navia <pedro.navia@etecsa.cu>\n"
|
||||
"POT-Creation-Date: 2012-10-02 23:16+0200\n"
|
||||
"PO-Revision-Date: 2012-10-02 21:17+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"
|
||||
|
||||
#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23
|
||||
msgid "Access granted"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86
|
||||
msgid "Error configuring Dropbox storage"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40
|
||||
msgid "Grant access"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:73 js/google.js:72
|
||||
msgid "Fill out all required fields"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:85
|
||||
msgid "Please provide a valid Dropbox app key and secret."
|
||||
msgstr ""
|
||||
|
||||
#: js/google.js:26 js/google.js:73 js/google.js:78
|
||||
msgid "Error configuring Google Drive storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:3
|
||||
msgid "External Storage"
|
||||
|
@ -63,22 +87,22 @@ msgstr "Grupos"
|
|||
msgid "Users"
|
||||
msgstr "Usuarios"
|
||||
|
||||
#: templates/settings.php:77 templates/settings.php:96
|
||||
#: templates/settings.php:77 templates/settings.php:107
|
||||
msgid "Delete"
|
||||
msgstr "Eliiminar"
|
||||
|
||||
#: templates/settings.php:88
|
||||
msgid "SSL root certificates"
|
||||
msgstr "Raíz de certificados SSL "
|
||||
|
||||
#: templates/settings.php:102
|
||||
msgid "Import Root Certificate"
|
||||
msgstr "Importar certificado raíz"
|
||||
|
||||
#: templates/settings.php:108
|
||||
#: templates/settings.php:87
|
||||
msgid "Enable User External Storage"
|
||||
msgstr "Habilitar almacenamiento de usuario externo"
|
||||
|
||||
#: templates/settings.php:109
|
||||
#: templates/settings.php:88
|
||||
msgid "Allow users to mount their own external storage"
|
||||
msgstr "Permitir a los usuarios montar su propio almacenamiento externo"
|
||||
|
||||
#: templates/settings.php:99
|
||||
msgid "SSL root certificates"
|
||||
msgstr "Raíz de certificados SSL "
|
||||
|
||||
#: templates/settings.php:113
|
||||
msgid "Import Root Certificate"
|
||||
msgstr "Importar certificado raíz"
|
||||
|
|
|
@ -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-28 23:34+0200\n"
|
||||
"PO-Revision-Date: 2012-09-28 21:34+0000\n"
|
||||
"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
|
||||
"POT-Creation-Date: 2012-10-02 02:03+0200\n"
|
||||
"PO-Revision-Date: 2012-10-01 14:58+0000\n"
|
||||
"Last-Translator: cjtess <claudio.tessone@gmail.com>\n"
|
||||
"Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -106,8 +106,8 @@ msgstr "Aceptar"
|
|||
msgid "No categories selected for deletion."
|
||||
msgstr "No hay categorías seleccionadas para borrar."
|
||||
|
||||
#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489
|
||||
#: js/share.js:501
|
||||
#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:493
|
||||
#: js/share.js:505
|
||||
msgid "Error"
|
||||
msgstr "Error"
|
||||
|
||||
|
@ -125,15 +125,15 @@ msgstr "Error al cambiar permisos"
|
|||
|
||||
#: js/share.js:130
|
||||
msgid "Shared with you and the group"
|
||||
msgstr ""
|
||||
msgstr "Compartido con vos y con el grupo"
|
||||
|
||||
#: js/share.js:130
|
||||
msgid "by"
|
||||
msgstr ""
|
||||
msgstr "por"
|
||||
|
||||
#: js/share.js:132
|
||||
msgid "Shared with you by"
|
||||
msgstr ""
|
||||
msgstr "Compartido con vos por"
|
||||
|
||||
#: js/share.js:137
|
||||
msgid "Share with"
|
||||
|
@ -161,7 +161,7 @@ msgstr "Fecha de vencimiento"
|
|||
|
||||
#: js/share.js:185
|
||||
msgid "Share via email:"
|
||||
msgstr ""
|
||||
msgstr "compartido a través de e-mail:"
|
||||
|
||||
#: js/share.js:187
|
||||
msgid "No people found"
|
||||
|
@ -173,49 +173,49 @@ msgstr "No se permite volver a compartir"
|
|||
|
||||
#: js/share.js:250
|
||||
msgid "Shared in"
|
||||
msgstr ""
|
||||
msgstr "Compartido en"
|
||||
|
||||
#: js/share.js:250
|
||||
msgid "with"
|
||||
msgstr ""
|
||||
msgstr "con"
|
||||
|
||||
#: js/share.js:271
|
||||
msgid "Unshare"
|
||||
msgstr "Remover compartir"
|
||||
|
||||
#: js/share.js:279
|
||||
#: js/share.js:283
|
||||
msgid "can edit"
|
||||
msgstr "puede editar"
|
||||
|
||||
#: js/share.js:281
|
||||
#: js/share.js:285
|
||||
msgid "access control"
|
||||
msgstr "control de acceso"
|
||||
|
||||
#: js/share.js:284
|
||||
#: js/share.js:288
|
||||
msgid "create"
|
||||
msgstr "crear"
|
||||
|
||||
#: js/share.js:287
|
||||
#: js/share.js:291
|
||||
msgid "update"
|
||||
msgstr "actualizar"
|
||||
|
||||
#: js/share.js:290
|
||||
#: js/share.js:294
|
||||
msgid "delete"
|
||||
msgstr "remover"
|
||||
|
||||
#: js/share.js:293
|
||||
#: js/share.js:297
|
||||
msgid "share"
|
||||
msgstr "compartir"
|
||||
|
||||
#: js/share.js:317 js/share.js:476
|
||||
#: js/share.js:321 js/share.js:480
|
||||
msgid "Password protected"
|
||||
msgstr "Protegido por contraseña"
|
||||
|
||||
#: js/share.js:489
|
||||
#: js/share.js:493
|
||||
msgid "Error unsetting expiration date"
|
||||
msgstr "Error al remover la fecha de caducidad"
|
||||
|
||||
#: js/share.js:501
|
||||
#: js/share.js:505
|
||||
msgid "Error setting expiration date"
|
||||
msgstr "Error al asignar fecha de vencimiento"
|
||||
|
||||
|
@ -244,7 +244,7 @@ msgstr "¡Fallo al iniciar sesión!"
|
|||
msgid "Username"
|
||||
msgstr "Nombre de usuario"
|
||||
|
||||
#: lostpassword/templates/lostpassword.php:15
|
||||
#: lostpassword/templates/lostpassword.php:14
|
||||
msgid "Request reset"
|
||||
msgstr "Solicitar restablecimiento"
|
||||
|
||||
|
@ -357,11 +357,11 @@ msgstr "Cerrar la sesión"
|
|||
msgid "Lost your password?"
|
||||
msgstr "¿Perdiste tu contraseña?"
|
||||
|
||||
#: templates/login.php:17
|
||||
#: templates/login.php:16
|
||||
msgid "remember"
|
||||
msgstr "recordame"
|
||||
|
||||
#: templates/login.php:18
|
||||
#: templates/login.php:17
|
||||
msgid "Log in"
|
||||
msgstr "Entrar"
|
||||
|
||||
|
|
|
@ -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-25 02:02+0200\n"
|
||||
"PO-Revision-Date: 2012-09-24 04:43+0000\n"
|
||||
"Last-Translator: cjtess <claudio.tessone@gmail.com>\n"
|
||||
"POT-Creation-Date: 2012-10-02 23:16+0200\n"
|
||||
"PO-Revision-Date: 2012-10-02 21:17+0000\n"
|
||||
"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
|
||||
"Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -18,6 +18,30 @@ msgstr ""
|
|||
"Language: es_AR\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23
|
||||
msgid "Access granted"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86
|
||||
msgid "Error configuring Dropbox storage"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40
|
||||
msgid "Grant access"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:73 js/google.js:72
|
||||
msgid "Fill out all required fields"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:85
|
||||
msgid "Please provide a valid Dropbox app key and secret."
|
||||
msgstr ""
|
||||
|
||||
#: js/google.js:26 js/google.js:73 js/google.js:78
|
||||
msgid "Error configuring Google Drive storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:3
|
||||
msgid "External Storage"
|
||||
msgstr "Almacenamiento externo"
|
||||
|
@ -62,22 +86,22 @@ msgstr "Grupos"
|
|||
msgid "Users"
|
||||
msgstr "Usuarios"
|
||||
|
||||
#: templates/settings.php:77 templates/settings.php:96
|
||||
#: templates/settings.php:77 templates/settings.php:107
|
||||
msgid "Delete"
|
||||
msgstr "Borrar"
|
||||
|
||||
#: templates/settings.php:88
|
||||
msgid "SSL root certificates"
|
||||
msgstr "certificados SSL raíz"
|
||||
|
||||
#: templates/settings.php:102
|
||||
msgid "Import Root Certificate"
|
||||
msgstr "Importar certificado raíz"
|
||||
|
||||
#: templates/settings.php:108
|
||||
#: templates/settings.php:87
|
||||
msgid "Enable User External Storage"
|
||||
msgstr "Habilitar almacenamiento de usuario externo"
|
||||
|
||||
#: templates/settings.php:109
|
||||
#: templates/settings.php:88
|
||||
msgid "Allow users to mount their own external storage"
|
||||
msgstr "Permitir a los usuarios montar su propio almacenamiento externo"
|
||||
|
||||
#: templates/settings.php:99
|
||||
msgid "SSL root certificates"
|
||||
msgstr "certificados SSL raíz"
|
||||
|
||||
#: templates/settings.php:113
|
||||
msgid "Import Root Certificate"
|
||||
msgstr "Importar certificado raíz"
|
||||
|
|
|
@ -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-10 02:02+0200\n"
|
||||
"PO-Revision-Date: 2012-09-09 20:19+0000\n"
|
||||
"Last-Translator: Rivo Zängov <eraser@eraser.ee>\n"
|
||||
"POT-Creation-Date: 2012-10-02 23:16+0200\n"
|
||||
"PO-Revision-Date: 2012-10-02 21:17+0000\n"
|
||||
"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
|
||||
"Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -18,6 +18,30 @@ msgstr ""
|
|||
"Language: et_EE\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23
|
||||
msgid "Access granted"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86
|
||||
msgid "Error configuring Dropbox storage"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40
|
||||
msgid "Grant access"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:73 js/google.js:72
|
||||
msgid "Fill out all required fields"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:85
|
||||
msgid "Please provide a valid Dropbox app key and secret."
|
||||
msgstr ""
|
||||
|
||||
#: js/google.js:26 js/google.js:73 js/google.js:78
|
||||
msgid "Error configuring Google Drive storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:3
|
||||
msgid "External Storage"
|
||||
msgstr "Väline salvestuskoht"
|
||||
|
@ -62,22 +86,22 @@ msgstr "Grupid"
|
|||
msgid "Users"
|
||||
msgstr "Kasutajad"
|
||||
|
||||
#: templates/settings.php:77 templates/settings.php:96
|
||||
#: templates/settings.php:77 templates/settings.php:107
|
||||
msgid "Delete"
|
||||
msgstr "Kustuta"
|
||||
|
||||
#: templates/settings.php:88
|
||||
msgid "SSL root certificates"
|
||||
msgstr "SSL root sertifikaadid"
|
||||
|
||||
#: templates/settings.php:102
|
||||
msgid "Import Root Certificate"
|
||||
msgstr "Impordi root sertifikaadid"
|
||||
|
||||
#: templates/settings.php:108
|
||||
#: templates/settings.php:87
|
||||
msgid "Enable User External Storage"
|
||||
msgstr "Luba kasutajatele väline salvestamine"
|
||||
|
||||
#: templates/settings.php:109
|
||||
#: templates/settings.php:88
|
||||
msgid "Allow users to mount their own external storage"
|
||||
msgstr "Luba kasutajatel ühendada külge nende enda välised salvestusseadmed"
|
||||
|
||||
#: templates/settings.php:99
|
||||
msgid "SSL root certificates"
|
||||
msgstr "SSL root sertifikaadid"
|
||||
|
||||
#: templates/settings.php:113
|
||||
msgid "Import Root Certificate"
|
||||
msgstr "Impordi root sertifikaadid"
|
||||
|
|
|
@ -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-09 02:01+0200\n"
|
||||
"PO-Revision-Date: 2012-09-08 19:25+0000\n"
|
||||
"Last-Translator: asieriko <asieriko@gmail.com>\n"
|
||||
"POT-Creation-Date: 2012-10-02 23:16+0200\n"
|
||||
"PO-Revision-Date: 2012-10-02 21:17+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"
|
||||
|
@ -18,6 +18,30 @@ msgstr ""
|
|||
"Language: eu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23
|
||||
msgid "Access granted"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86
|
||||
msgid "Error configuring Dropbox storage"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40
|
||||
msgid "Grant access"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:73 js/google.js:72
|
||||
msgid "Fill out all required fields"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:85
|
||||
msgid "Please provide a valid Dropbox app key and secret."
|
||||
msgstr ""
|
||||
|
||||
#: js/google.js:26 js/google.js:73 js/google.js:78
|
||||
msgid "Error configuring Google Drive storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:3
|
||||
msgid "External Storage"
|
||||
msgstr "Kanpoko Biltegiratzea"
|
||||
|
@ -62,22 +86,22 @@ msgstr "Taldeak"
|
|||
msgid "Users"
|
||||
msgstr "Erabiltzaileak"
|
||||
|
||||
#: templates/settings.php:77 templates/settings.php:96
|
||||
#: templates/settings.php:77 templates/settings.php:107
|
||||
msgid "Delete"
|
||||
msgstr "Ezabatu"
|
||||
|
||||
#: templates/settings.php:88
|
||||
msgid "SSL root certificates"
|
||||
msgstr "SSL erro ziurtagiriak"
|
||||
|
||||
#: templates/settings.php:102
|
||||
msgid "Import Root Certificate"
|
||||
msgstr "Inportatu Erro Ziurtagiria"
|
||||
|
||||
#: templates/settings.php:108
|
||||
#: templates/settings.php:87
|
||||
msgid "Enable User External Storage"
|
||||
msgstr "Gaitu erabiltzaileentzako Kanpo Biltegiratzea"
|
||||
|
||||
#: templates/settings.php:109
|
||||
#: templates/settings.php:88
|
||||
msgid "Allow users to mount their own external storage"
|
||||
msgstr "Baimendu erabiltzaileak bere kanpo biltegiratzeak muntatzen"
|
||||
|
||||
#: templates/settings.php:99
|
||||
msgid "SSL root certificates"
|
||||
msgstr "SSL erro ziurtagiriak"
|
||||
|
||||
#: templates/settings.php:113
|
||||
msgid "Import Root Certificate"
|
||||
msgstr "Inportatu Erro Ziurtagiria"
|
||||
|
|
|
@ -7,15 +7,39 @@ 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-10-02 23:16+0200\n"
|
||||
"PO-Revision-Date: 2012-10-02 21:17+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"
|
||||
|
||||
#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23
|
||||
msgid "Access granted"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86
|
||||
msgid "Error configuring Dropbox storage"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40
|
||||
msgid "Grant access"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:73 js/google.js:72
|
||||
msgid "Fill out all required fields"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:85
|
||||
msgid "Please provide a valid Dropbox app key and secret."
|
||||
msgstr ""
|
||||
|
||||
#: js/google.js:26 js/google.js:73 js/google.js:78
|
||||
msgid "Error configuring Google Drive storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:3
|
||||
msgid "External Storage"
|
||||
|
@ -61,22 +85,22 @@ msgstr ""
|
|||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:77 templates/settings.php:96
|
||||
#: templates/settings.php:77 templates/settings.php:107
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:88
|
||||
msgid "SSL root certificates"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:102
|
||||
msgid "Import Root Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:108
|
||||
#: templates/settings.php:87
|
||||
msgid "Enable User External Storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:109
|
||||
#: templates/settings.php:88
|
||||
msgid "Allow users to mount their own external storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:99
|
||||
msgid "SSL root certificates"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:113
|
||||
msgid "Import Root Certificate"
|
||||
msgstr ""
|
||||
|
|
|
@ -7,15 +7,39 @@ 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-10-02 23:16+0200\n"
|
||||
"PO-Revision-Date: 2012-10-02 21:17+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"
|
||||
|
||||
#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23
|
||||
msgid "Access granted"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86
|
||||
msgid "Error configuring Dropbox storage"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40
|
||||
msgid "Grant access"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:73 js/google.js:72
|
||||
msgid "Fill out all required fields"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:85
|
||||
msgid "Please provide a valid Dropbox app key and secret."
|
||||
msgstr ""
|
||||
|
||||
#: js/google.js:26 js/google.js:73 js/google.js:78
|
||||
msgid "Error configuring Google Drive storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:3
|
||||
msgid "External Storage"
|
||||
|
@ -61,22 +85,22 @@ msgstr ""
|
|||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:77 templates/settings.php:96
|
||||
#: templates/settings.php:77 templates/settings.php:107
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:88
|
||||
msgid "SSL root certificates"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:102
|
||||
msgid "Import Root Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:108
|
||||
#: templates/settings.php:87
|
||||
msgid "Enable User External Storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:109
|
||||
#: templates/settings.php:88
|
||||
msgid "Allow users to mount their own external storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:99
|
||||
msgid "SSL root certificates"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:113
|
||||
msgid "Import Root Certificate"
|
||||
msgstr ""
|
||||
|
|
|
@ -7,15 +7,39 @@ 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-10-02 23:16+0200\n"
|
||||
"PO-Revision-Date: 2012-10-02 21:17+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"
|
||||
|
||||
#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23
|
||||
msgid "Access granted"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86
|
||||
msgid "Error configuring Dropbox storage"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40
|
||||
msgid "Grant access"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:73 js/google.js:72
|
||||
msgid "Fill out all required fields"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:85
|
||||
msgid "Please provide a valid Dropbox app key and secret."
|
||||
msgstr ""
|
||||
|
||||
#: js/google.js:26 js/google.js:73 js/google.js:78
|
||||
msgid "Error configuring Google Drive storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:3
|
||||
msgid "External Storage"
|
||||
|
@ -61,22 +85,22 @@ msgstr ""
|
|||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:77 templates/settings.php:96
|
||||
#: templates/settings.php:77 templates/settings.php:107
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:88
|
||||
msgid "SSL root certificates"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:102
|
||||
msgid "Import Root Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:108
|
||||
#: templates/settings.php:87
|
||||
msgid "Enable User External Storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:109
|
||||
#: templates/settings.php:88
|
||||
msgid "Allow users to mount their own external storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:99
|
||||
msgid "SSL root certificates"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:113
|
||||
msgid "Import Root Certificate"
|
||||
msgstr ""
|
||||
|
|
|
@ -9,9 +9,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2012-09-06 02:01+0200\n"
|
||||
"PO-Revision-Date: 2012-09-05 16:30+0000\n"
|
||||
"Last-Translator: teho <tehoratopato@gmail.com>\n"
|
||||
"POT-Creation-Date: 2012-10-02 23:16+0200\n"
|
||||
"PO-Revision-Date: 2012-10-02 21:17+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"
|
||||
|
@ -19,6 +19,30 @@ msgstr ""
|
|||
"Language: fi_FI\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23
|
||||
msgid "Access granted"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86
|
||||
msgid "Error configuring Dropbox storage"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40
|
||||
msgid "Grant access"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:73 js/google.js:72
|
||||
msgid "Fill out all required fields"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:85
|
||||
msgid "Please provide a valid Dropbox app key and secret."
|
||||
msgstr ""
|
||||
|
||||
#: js/google.js:26 js/google.js:73 js/google.js:78
|
||||
msgid "Error configuring Google Drive storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:3
|
||||
msgid "External Storage"
|
||||
msgstr "Erillinen tallennusväline"
|
||||
|
@ -63,22 +87,22 @@ msgstr "Ryhmät"
|
|||
msgid "Users"
|
||||
msgstr "Käyttäjät"
|
||||
|
||||
#: templates/settings.php:77 templates/settings.php:96
|
||||
#: templates/settings.php:77 templates/settings.php:107
|
||||
msgid "Delete"
|
||||
msgstr "Poista"
|
||||
|
||||
#: templates/settings.php:88
|
||||
msgid "SSL root certificates"
|
||||
msgstr "SSL-juurivarmenteet"
|
||||
|
||||
#: templates/settings.php:102
|
||||
msgid "Import Root Certificate"
|
||||
msgstr "Tuo juurivarmenne"
|
||||
|
||||
#: templates/settings.php:108
|
||||
#: templates/settings.php:87
|
||||
msgid "Enable User External Storage"
|
||||
msgstr "Ota käyttöön ulkopuoliset tallennuspaikat"
|
||||
|
||||
#: templates/settings.php:109
|
||||
#: templates/settings.php:88
|
||||
msgid "Allow users to mount their own external storage"
|
||||
msgstr "Salli käyttäjien liittää omia erillisiä tallennusvälineitä"
|
||||
|
||||
#: templates/settings.php:99
|
||||
msgid "SSL root certificates"
|
||||
msgstr "SSL-juurivarmenteet"
|
||||
|
||||
#: templates/settings.php:113
|
||||
msgid "Import Root Certificate"
|
||||
msgstr "Tuo juurivarmenne"
|
||||
|
|
|
@ -8,15 +8,39 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2012-08-15 02:02+0200\n"
|
||||
"PO-Revision-Date: 2012-08-14 16:35+0000\n"
|
||||
"Last-Translator: Romain DEP. <rom1dep@gmail.com>\n"
|
||||
"POT-Creation-Date: 2012-10-02 23:16+0200\n"
|
||||
"PO-Revision-Date: 2012-10-02 21:17+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"
|
||||
|
||||
#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23
|
||||
msgid "Access granted"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86
|
||||
msgid "Error configuring Dropbox storage"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40
|
||||
msgid "Grant access"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:73 js/google.js:72
|
||||
msgid "Fill out all required fields"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:85
|
||||
msgid "Please provide a valid Dropbox app key and secret."
|
||||
msgstr ""
|
||||
|
||||
#: js/google.js:26 js/google.js:73 js/google.js:78
|
||||
msgid "Error configuring Google Drive storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:3
|
||||
msgid "External Storage"
|
||||
|
@ -62,22 +86,22 @@ msgstr "Groupes"
|
|||
msgid "Users"
|
||||
msgstr "Utilisateurs"
|
||||
|
||||
#: templates/settings.php:77 templates/settings.php:96
|
||||
#: templates/settings.php:77 templates/settings.php:107
|
||||
msgid "Delete"
|
||||
msgstr "Supprimer"
|
||||
|
||||
#: templates/settings.php:88
|
||||
msgid "SSL root certificates"
|
||||
msgstr "Certificats racine SSL"
|
||||
|
||||
#: templates/settings.php:102
|
||||
msgid "Import Root Certificate"
|
||||
msgstr "Importer un certificat racine"
|
||||
|
||||
#: templates/settings.php:108
|
||||
#: templates/settings.php:87
|
||||
msgid "Enable User External Storage"
|
||||
msgstr "Activer le stockage externe pour les utilisateurs"
|
||||
|
||||
#: templates/settings.php:109
|
||||
#: templates/settings.php:88
|
||||
msgid "Allow users to mount their own external storage"
|
||||
msgstr "Autoriser les utilisateurs à monter leur propre stockage externe"
|
||||
|
||||
#: templates/settings.php:99
|
||||
msgid "SSL root certificates"
|
||||
msgstr "Certificats racine SSL"
|
||||
|
||||
#: templates/settings.php:113
|
||||
msgid "Import Root Certificate"
|
||||
msgstr "Importer un certificat racine"
|
||||
|
|
|
@ -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-19 02:02+0200\n"
|
||||
"PO-Revision-Date: 2012-09-18 10:13+0000\n"
|
||||
"Last-Translator: Xosé M. Lamas <correo.xmgz@gmail.com>\n"
|
||||
"POT-Creation-Date: 2012-10-02 23:16+0200\n"
|
||||
"PO-Revision-Date: 2012-10-02 21:17+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"
|
||||
|
@ -18,6 +18,30 @@ msgstr ""
|
|||
"Language: gl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23
|
||||
msgid "Access granted"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86
|
||||
msgid "Error configuring Dropbox storage"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40
|
||||
msgid "Grant access"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:73 js/google.js:72
|
||||
msgid "Fill out all required fields"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:85
|
||||
msgid "Please provide a valid Dropbox app key and secret."
|
||||
msgstr ""
|
||||
|
||||
#: js/google.js:26 js/google.js:73 js/google.js:78
|
||||
msgid "Error configuring Google Drive storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:3
|
||||
msgid "External Storage"
|
||||
msgstr "Almacenamento externo"
|
||||
|
@ -62,22 +86,22 @@ msgstr "Grupos"
|
|||
msgid "Users"
|
||||
msgstr "Usuarios"
|
||||
|
||||
#: templates/settings.php:77 templates/settings.php:96
|
||||
#: templates/settings.php:77 templates/settings.php:107
|
||||
msgid "Delete"
|
||||
msgstr "Eliminar"
|
||||
|
||||
#: templates/settings.php:88
|
||||
msgid "SSL root certificates"
|
||||
msgstr "Certificados raíz SSL"
|
||||
|
||||
#: templates/settings.php:102
|
||||
msgid "Import Root Certificate"
|
||||
msgstr "Importar Certificado Raíz"
|
||||
|
||||
#: templates/settings.php:108
|
||||
#: templates/settings.php:87
|
||||
msgid "Enable User External Storage"
|
||||
msgstr "Habilitar almacenamento externo do usuario"
|
||||
|
||||
#: templates/settings.php:109
|
||||
#: templates/settings.php:88
|
||||
msgid "Allow users to mount their own external storage"
|
||||
msgstr "Permitir aos usuarios montar os seus propios almacenamentos externos"
|
||||
|
||||
#: templates/settings.php:99
|
||||
msgid "SSL root certificates"
|
||||
msgstr "Certificados raíz SSL"
|
||||
|
||||
#: templates/settings.php:113
|
||||
msgid "Import Root Certificate"
|
||||
msgstr "Importar Certificado Raíz"
|
||||
|
|
|
@ -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-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"
|
||||
"POT-Creation-Date: 2012-10-02 23:16+0200\n"
|
||||
"PO-Revision-Date: 2012-10-02 21:17+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"
|
||||
|
@ -18,6 +18,30 @@ msgstr ""
|
|||
"Language: he\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23
|
||||
msgid "Access granted"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86
|
||||
msgid "Error configuring Dropbox storage"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40
|
||||
msgid "Grant access"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:73 js/google.js:72
|
||||
msgid "Fill out all required fields"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:85
|
||||
msgid "Please provide a valid Dropbox app key and secret."
|
||||
msgstr ""
|
||||
|
||||
#: js/google.js:26 js/google.js:73 js/google.js:78
|
||||
msgid "Error configuring Google Drive storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:3
|
||||
msgid "External Storage"
|
||||
msgstr "אחסון חיצוני"
|
||||
|
@ -62,22 +86,22 @@ msgstr "קבוצות"
|
|||
msgid "Users"
|
||||
msgstr "משתמשים"
|
||||
|
||||
#: templates/settings.php:77 templates/settings.php:96
|
||||
#: templates/settings.php:77 templates/settings.php:107
|
||||
msgid "Delete"
|
||||
msgstr "מחיקה"
|
||||
|
||||
#: templates/settings.php:88
|
||||
msgid "SSL root certificates"
|
||||
msgstr "שורש אישורי אבטחת SSL "
|
||||
|
||||
#: templates/settings.php:102
|
||||
msgid "Import Root Certificate"
|
||||
msgstr "ייבוא אישור אבטחת שורש"
|
||||
|
||||
#: templates/settings.php:108
|
||||
#: templates/settings.php:87
|
||||
msgid "Enable User External Storage"
|
||||
msgstr "הפעלת אחסון חיצוני למשתמשים"
|
||||
|
||||
#: templates/settings.php:109
|
||||
#: templates/settings.php:88
|
||||
msgid "Allow users to mount their own external storage"
|
||||
msgstr "יאפשר למשתמשים לעגן את האחסון החיצוני שלהם"
|
||||
|
||||
#: templates/settings.php:99
|
||||
msgid "SSL root certificates"
|
||||
msgstr "שורש אישורי אבטחת SSL "
|
||||
|
||||
#: templates/settings.php:113
|
||||
msgid "Import Root Certificate"
|
||||
msgstr "ייבוא אישור אבטחת שורש"
|
||||
|
|
|
@ -7,15 +7,39 @@ 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-12 22:34+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2012-10-02 23:16+0200\n"
|
||||
"PO-Revision-Date: 2012-10-02 21:17+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"
|
||||
|
||||
#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23
|
||||
msgid "Access granted"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86
|
||||
msgid "Error configuring Dropbox storage"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40
|
||||
msgid "Grant access"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:73 js/google.js:72
|
||||
msgid "Fill out all required fields"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:85
|
||||
msgid "Please provide a valid Dropbox app key and secret."
|
||||
msgstr ""
|
||||
|
||||
#: js/google.js:26 js/google.js:73 js/google.js:78
|
||||
msgid "Error configuring Google Drive storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:3
|
||||
msgid "External Storage"
|
||||
|
@ -61,22 +85,22 @@ msgstr ""
|
|||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:77 templates/settings.php:96
|
||||
#: templates/settings.php:77 templates/settings.php:107
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:88
|
||||
msgid "SSL root certificates"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:102
|
||||
msgid "Import Root Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:108
|
||||
#: templates/settings.php:87
|
||||
msgid "Enable User External Storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:109
|
||||
#: templates/settings.php:88
|
||||
msgid "Allow users to mount their own external storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:99
|
||||
msgid "SSL root certificates"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:113
|
||||
msgid "Import Root Certificate"
|
||||
msgstr ""
|
||||
|
|
|
@ -7,15 +7,39 @@ 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-10-02 23:16+0200\n"
|
||||
"PO-Revision-Date: 2012-10-02 21:17+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"
|
||||
|
||||
#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23
|
||||
msgid "Access granted"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86
|
||||
msgid "Error configuring Dropbox storage"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40
|
||||
msgid "Grant access"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:73 js/google.js:72
|
||||
msgid "Fill out all required fields"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:85
|
||||
msgid "Please provide a valid Dropbox app key and secret."
|
||||
msgstr ""
|
||||
|
||||
#: js/google.js:26 js/google.js:73 js/google.js:78
|
||||
msgid "Error configuring Google Drive storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:3
|
||||
msgid "External Storage"
|
||||
|
@ -61,22 +85,22 @@ msgstr ""
|
|||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:77 templates/settings.php:96
|
||||
#: templates/settings.php:77 templates/settings.php:107
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:88
|
||||
msgid "SSL root certificates"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:102
|
||||
msgid "Import Root Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:108
|
||||
#: templates/settings.php:87
|
||||
msgid "Enable User External Storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:109
|
||||
#: templates/settings.php:88
|
||||
msgid "Allow users to mount their own external storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:99
|
||||
msgid "SSL root certificates"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:113
|
||||
msgid "Import Root Certificate"
|
||||
msgstr ""
|
||||
|
|
|
@ -7,15 +7,39 @@ 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-10-02 23:16+0200\n"
|
||||
"PO-Revision-Date: 2012-10-02 21:17+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"
|
||||
|
||||
#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23
|
||||
msgid "Access granted"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86
|
||||
msgid "Error configuring Dropbox storage"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40
|
||||
msgid "Grant access"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:73 js/google.js:72
|
||||
msgid "Fill out all required fields"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:85
|
||||
msgid "Please provide a valid Dropbox app key and secret."
|
||||
msgstr ""
|
||||
|
||||
#: js/google.js:26 js/google.js:73 js/google.js:78
|
||||
msgid "Error configuring Google Drive storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:3
|
||||
msgid "External Storage"
|
||||
|
@ -61,22 +85,22 @@ msgstr ""
|
|||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:77 templates/settings.php:96
|
||||
#: templates/settings.php:77 templates/settings.php:107
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:88
|
||||
msgid "SSL root certificates"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:102
|
||||
msgid "Import Root Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:108
|
||||
#: templates/settings.php:87
|
||||
msgid "Enable User External Storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:109
|
||||
#: templates/settings.php:88
|
||||
msgid "Allow users to mount their own external storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:99
|
||||
msgid "SSL root certificates"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:113
|
||||
msgid "Import Root Certificate"
|
||||
msgstr ""
|
||||
|
|
|
@ -7,15 +7,39 @@ 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-10-02 23:16+0200\n"
|
||||
"PO-Revision-Date: 2012-10-02 21:17+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"
|
||||
|
||||
#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23
|
||||
msgid "Access granted"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86
|
||||
msgid "Error configuring Dropbox storage"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40
|
||||
msgid "Grant access"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:73 js/google.js:72
|
||||
msgid "Fill out all required fields"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:85
|
||||
msgid "Please provide a valid Dropbox app key and secret."
|
||||
msgstr ""
|
||||
|
||||
#: js/google.js:26 js/google.js:73 js/google.js:78
|
||||
msgid "Error configuring Google Drive storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:3
|
||||
msgid "External Storage"
|
||||
|
@ -61,22 +85,22 @@ msgstr ""
|
|||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:77 templates/settings.php:96
|
||||
#: templates/settings.php:77 templates/settings.php:107
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:88
|
||||
msgid "SSL root certificates"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:102
|
||||
msgid "Import Root Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:108
|
||||
#: templates/settings.php:87
|
||||
msgid "Enable User External Storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:109
|
||||
#: templates/settings.php:88
|
||||
msgid "Allow users to mount their own external storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:99
|
||||
msgid "SSL root certificates"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:113
|
||||
msgid "Import Root Certificate"
|
||||
msgstr ""
|
||||
|
|
|
@ -7,15 +7,39 @@ 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-10-02 23:16+0200\n"
|
||||
"PO-Revision-Date: 2012-10-02 21:17+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"
|
||||
|
||||
#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23
|
||||
msgid "Access granted"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86
|
||||
msgid "Error configuring Dropbox storage"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40
|
||||
msgid "Grant access"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:73 js/google.js:72
|
||||
msgid "Fill out all required fields"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:85
|
||||
msgid "Please provide a valid Dropbox app key and secret."
|
||||
msgstr ""
|
||||
|
||||
#: js/google.js:26 js/google.js:73 js/google.js:78
|
||||
msgid "Error configuring Google Drive storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:3
|
||||
msgid "External Storage"
|
||||
|
@ -61,22 +85,22 @@ msgstr ""
|
|||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:77 templates/settings.php:96
|
||||
#: templates/settings.php:77 templates/settings.php:107
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:88
|
||||
msgid "SSL root certificates"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:102
|
||||
msgid "Import Root Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:108
|
||||
#: templates/settings.php:87
|
||||
msgid "Enable User External Storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:109
|
||||
#: templates/settings.php:88
|
||||
msgid "Allow users to mount their own external storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:99
|
||||
msgid "SSL root certificates"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:113
|
||||
msgid "Import Root Certificate"
|
||||
msgstr ""
|
||||
|
|
|
@ -7,15 +7,39 @@ 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-10-02 23:16+0200\n"
|
||||
"PO-Revision-Date: 2012-10-02 21:17+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"
|
||||
|
||||
#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23
|
||||
msgid "Access granted"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86
|
||||
msgid "Error configuring Dropbox storage"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40
|
||||
msgid "Grant access"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:73 js/google.js:72
|
||||
msgid "Fill out all required fields"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:85
|
||||
msgid "Please provide a valid Dropbox app key and secret."
|
||||
msgstr ""
|
||||
|
||||
#: js/google.js:26 js/google.js:73 js/google.js:78
|
||||
msgid "Error configuring Google Drive storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:3
|
||||
msgid "External Storage"
|
||||
|
@ -61,22 +85,22 @@ msgstr ""
|
|||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:77 templates/settings.php:96
|
||||
#: templates/settings.php:77 templates/settings.php:107
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:88
|
||||
msgid "SSL root certificates"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:102
|
||||
msgid "Import Root Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:108
|
||||
#: templates/settings.php:87
|
||||
msgid "Enable User External Storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:109
|
||||
#: templates/settings.php:88
|
||||
msgid "Allow users to mount their own external storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:99
|
||||
msgid "SSL root certificates"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:113
|
||||
msgid "Import Root Certificate"
|
||||
msgstr ""
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue