diff --git a/apps/files/ajax/download.php b/apps/files/ajax/download.php index b9a4ddaf5e7df297d3ad4c5666e35eec4f344a2b..7c8dcb372e24c5d4517b1ac5459e1c03feb9744a 100644 --- a/apps/files/ajax/download.php +++ b/apps/files/ajax/download.php @@ -33,4 +33,10 @@ OCP\User::checkLoggedIn(); $files = $_GET["files"]; $dir = $_GET["dir"]; -OC_Files::get($dir, $files, $_SERVER['REQUEST_METHOD'] == 'HEAD' ? true : false); +$files_list = json_decode($files); +// in case we get only a single file +if ($files_list === NULL ) { + $files_list = array($files); +} + +OC_Files::get($dir, $files_list, $_SERVER['REQUEST_METHOD'] == 'HEAD' ? true : false); diff --git a/apps/files/css/files.css b/apps/files/css/files.css index fd06c61ce2ca9ae7f41091ba94a462a892588d3e..4d2b16e6f1c2f4cefbbf04410e8678f5f7adeb68 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -73,7 +73,7 @@ table th#headerSize, table td.filesize { min-width:3em; padding:0 1em; text-alig table th#headerDate, table td.date { min-width:11em; padding:0 .1em 0 1em; text-align:left; } /* Multiselect bar */ -table.multiselect { top:63px; } +#filestable.multiselect { top:63px; } table.multiselect thead { position:fixed; top:82px; z-index:1; -moz-box-sizing: border-box; box-sizing: border-box; left: 0; padding-left: 64px; width:100%; } table.multiselect thead th { background:rgba(230,230,230,.8); color:#000; font-weight:bold; border-bottom:0; } table.multiselect #headerName { width: 100%; } diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 464f77036857c6ec85982976cf5bfc92a8848f89..a4ef41c280382cdf34925504d416ea0ea39777eb 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -220,14 +220,15 @@ $(document).ready(function() { }); $('.download').click('click',function(event) { - var files=getSelectedFiles('name').join(';'); + var files=getSelectedFiles('name'); + var fileslist = JSON.stringify(files); var dir=$('#dir').val()||'/'; OC.Notification.show(t('files','Your download is being prepared. This might take some time if the files are big.')); // use special download URL if provided, e.g. for public shared files if ( (downloadURL = document.getElementById("downloadURL")) ) { window.location=downloadURL.value+"&download&files="+files; } else { - window.location=OC.filePath('files', 'ajax', 'download.php') + '?'+ $.param({ dir: dir, files: files }); + window.location=OC.filePath('files', 'ajax', 'download.php') + '?'+ $.param({ dir: dir, files: fileslist }); } return false; }); diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index 4c7dc898cc9a97ea213c69c2969e5a151d931968..48b60bfb7118c7f8e3cb82e1118369bdf8682930 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -61,6 +61,7 @@ "From link" => "Z odkazu", "Deleted files" => "Odstraněné soubory", "Cancel upload" => "Zrušit odesílání", +"You don’t have write permissions here." => "Nemáte zde práva zápisu.", "Nothing in here. Upload something!" => "Žádný obsah. Nahrajte něco.", "Download" => "Stáhnout", "Unshare" => "Zrušit sdílení", diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index c9042e30b4effcf0d3872b39801feb64d3d94d83..c147c939f847bd96768e18ca3850777ab187d883 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -59,7 +59,9 @@ "Text file" => "Tekstfil", "Folder" => "Mappe", "From link" => "Fra link", +"Deleted files" => "Slettede filer", "Cancel upload" => "Fortryd upload", +"You don’t have write permissions here." => "Du har ikke skriverettigheder her.", "Nothing in here. Upload something!" => "Her er tomt. Upload noget!", "Download" => "Download", "Unshare" => "Fjern deling", diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index b78ffe1c168d298eeb4160a575d7ea34f418d01b..53427503f4c0ac790c3a126e1705d99b7f2efded 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -61,6 +61,7 @@ "From link" => "Von einem Link", "Deleted files" => "Gelöschte Dateien", "Cancel upload" => "Upload abbrechen", +"You don’t have write permissions here." => "Du besitzt hier keine Schreib-Berechtigung.", "Nothing in here. Upload something!" => "Alles leer. Lade etwas hoch!", "Download" => "Herunterladen", "Unshare" => "Nicht mehr freigeben", diff --git a/apps/files/l10n/de_DE.php b/apps/files/l10n/de_DE.php index dd5dd28472d1c4e72c14fa594cb48d0ce7e03120..538c1b63652f2c0ba16466473d39256215364976 100644 --- a/apps/files/l10n/de_DE.php +++ b/apps/files/l10n/de_DE.php @@ -61,6 +61,7 @@ "From link" => "Von einem Link", "Deleted files" => "Gelöschte Dateien", "Cancel upload" => "Upload abbrechen", +"You don’t have write permissions here." => "Sie haben hier keine Schreib-Berechtigungen.", "Nothing in here. Upload something!" => "Alles leer. Bitte laden Sie etwas hoch!", "Download" => "Herunterladen", "Unshare" => "Nicht mehr freigeben", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index e70a1afd0ef50bf1e505c99660a9655392d312a6..f702a5b513d4d89ea35f2771074255e14f61627d 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -61,6 +61,7 @@ "From link" => "Desde el enlace", "Deleted files" => "Archivos eliminados", "Cancel upload" => "Cancelar subida", +"You don’t have write permissions here." => "No tienes permisos para escribir aquí.", "Nothing in here. Upload something!" => "Aquí no hay nada. ¡Sube algo!", "Download" => "Descargar", "Unshare" => "Dejar de compartir", diff --git a/apps/files/l10n/lv.php b/apps/files/l10n/lv.php index 93c3593b0950827061d44254aec88d5e58cd539c..a7a9284c6512fa1661554d042198dcfa1d742f11 100644 --- a/apps/files/l10n/lv.php +++ b/apps/files/l10n/lv.php @@ -61,6 +61,7 @@ "From link" => "No saites", "Deleted files" => "Dzēstās datnes", "Cancel upload" => "Atcelt augšupielādi", +"You don’t have write permissions here." => "Jums nav tiesību šeit rakstīt.", "Nothing in here. Upload something!" => "Te vēl nekas nav. Rīkojies, sāc augšupielādēt!", "Download" => "Lejupielādēt", "Unshare" => "Pārtraukt dalīšanos", diff --git a/apps/files/l10n/nb_NO.php b/apps/files/l10n/nb_NO.php index dc267e36fb3973f0049a54dd52ee3c5c0eda3738..d9972feb6a585c8bde21be9082311499f3db0126 100644 --- a/apps/files/l10n/nb_NO.php +++ b/apps/files/l10n/nb_NO.php @@ -7,6 +7,7 @@ "Missing a temporary folder" => "Mangler en midlertidig mappe", "Failed to write to disk" => "Klarte ikke å skrive til disk", "Files" => "Filer", +"Delete permanently" => "Slett permanent", "Delete" => "Slett", "Rename" => "Omdøp", "Pending" => "Ventende", diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index 1719350f9c7927866ccd359efce62131fc9b4411..6af7edf2501836bf3ba9dc6d8f7dc497af5464d0 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -61,6 +61,7 @@ "From link" => "Vanaf link", "Deleted files" => "Verwijderde bestanden", "Cancel upload" => "Upload afbreken", +"You don’t have write permissions here." => "U hebt hier geen schrijfpermissies.", "Nothing in here. Upload something!" => "Er bevindt zich hier niets. Upload een bestand!", "Download" => "Download", "Unshare" => "Stop delen", diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php index cce5a916dbc1bbc978607076e3210688ac594d8f..3bebb68227113e7e01b39f667e072fd70608fdac 100644 --- a/apps/files/l10n/pt_BR.php +++ b/apps/files/l10n/pt_BR.php @@ -1,8 +1,8 @@ <?php $TRANSLATIONS = array( -"Could not move %s - File with this name already exists" => "Não possível mover %s - Um arquivo com este nome já existe", -"Could not move %s" => "Não possível mover %s", +"Could not move %s - File with this name already exists" => "Impossível mover %s - Um arquivo com este nome já existe", +"Could not move %s" => "Impossível mover %s", "Unable to rename file" => "Impossível renomear arquivo", -"No file was uploaded. Unknown error" => "Nenhum arquivo foi transferido. Erro desconhecido", +"No file was uploaded. Unknown error" => "Nenhum arquivo foi enviado. Erro desconhecido", "There is no error, the file uploaded with success" => "Não houve nenhum erro, o arquivo foi transferido com sucesso", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "O arquivo enviado excede a diretiva upload_max_filesize no php.ini: ", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "O arquivo carregado excede o MAX_FILE_SIZE que foi especificado no formulário HTML", @@ -27,10 +27,10 @@ "'.' is an invalid file name." => "'.' é um nome de arquivo inválido.", "File name cannot be empty." => "O nome do arquivo não pode estar vazio.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nome inválido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos.", -"Your storage is full, files can not be updated or synced anymore!" => "Seu armazenamento está cheio, arquivos não serão mais atualizados nem sincronizados!", +"Your storage is full, files can not be updated or synced anymore!" => "Seu armazenamento está cheio, arquivos não podem mais ser atualizados ou sincronizados!", "Your storage is almost full ({usedSpacePercent}%)" => "Seu armazenamento está quase cheio ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Seu download está sendo preparado. Isto pode levar algum tempo se os arquivos forem grandes.", -"Unable to upload your file as it is a directory or has 0 bytes" => "Impossível enviar seus arquivo como diretório ou ele tem 0 bytes.", +"Unable to upload your file as it is a directory or has 0 bytes" => "Impossível enviar seus arquivo por ele ser um diretório ou ter 0 bytes.", "Upload Error" => "Erro de envio", "Close" => "Fechar", "1 file uploading" => "enviando 1 arquivo", @@ -50,7 +50,7 @@ "File handling" => "Tratamento de Arquivo", "Maximum upload size" => "Tamanho máximo para carregar", "max. possible: " => "max. possível:", -"Needed for multi-file and folder downloads." => "Necessário para multiplos arquivos e diretório de downloads.", +"Needed for multi-file and folder downloads." => "Necessário para download de múltiplos arquivos e diretórios.", "Enable ZIP-download" => "Habilitar ZIP-download", "0 is unlimited" => "0 para ilimitado", "Maximum input size for ZIP files" => "Tamanho máximo para arquivo ZIP", @@ -61,6 +61,7 @@ "From link" => "Do link", "Deleted files" => "Arquivos apagados", "Cancel upload" => "Cancelar upload", +"You don’t have write permissions here." => "Você não possui permissão de escrita aqui.", "Nothing in here. Upload something!" => "Nada aqui.Carrege alguma coisa!", "Download" => "Baixar", "Unshare" => "Descompartilhar", @@ -68,5 +69,5 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Os arquivos que você está tentando carregar excedeu o tamanho máximo para arquivos no servidor.", "Files are being scanned, please wait." => "Arquivos sendo escaneados, por favor aguarde.", "Current scanning" => "Scanning atual", -"Upgrading filesystem cache..." => "Aprimorando cache do sistema de arquivos..." +"Upgrading filesystem cache..." => "Atualizando cache do sistema de arquivos..." ); diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index b8334db27254a791e6ac194855ece2af28fc8c25..7162517e8162dcff122399c849521733ad5a79b1 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -61,6 +61,7 @@ "From link" => "Da ligação", "Deleted files" => "Ficheiros eliminados", "Cancel upload" => "Cancelar envio", +"You don’t have write permissions here." => "Não tem permissões de escrita aqui.", "Nothing in here. Upload something!" => "Vazio. Envie alguma coisa!", "Download" => "Transferir", "Unshare" => "Deixar de partilhar", diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index c02a7818707df8cae651a79f2dc4d836395f5c29..ca9610a33c7766bb746df9c14008180b134b41fd 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -61,6 +61,7 @@ "From link" => "Från länk", "Deleted files" => "Raderade filer", "Cancel upload" => "Avbryt uppladdning", +"You don’t have write permissions here." => "Du saknar skrivbehörighet här.", "Nothing in here. Upload something!" => "Ingenting här. Ladda upp något!", "Download" => "Ladda ner", "Unshare" => "Sluta dela", diff --git a/apps/files/l10n/uk.php b/apps/files/l10n/uk.php index 05f279d8eb6dccff62e6ba7c94e1a6ff1fe5b143..f5e161996c0e2e993ba98a802d348f50e4415a24 100644 --- a/apps/files/l10n/uk.php +++ b/apps/files/l10n/uk.php @@ -61,6 +61,7 @@ "From link" => "З посилання", "Deleted files" => "Видалено файлів", "Cancel upload" => "Перервати завантаження", +"You don’t have write permissions here." => "У вас тут немає прав на запис.", "Nothing in here. Upload something!" => "Тут нічого немає. Відвантажте що-небудь!", "Download" => "Завантажити", "Unshare" => "Заборонити доступ", diff --git a/apps/files/templates/admin.php b/apps/files/templates/admin.php index 0ab931a467cbb5f51b9fb65524cb8e417ad8cac9..e1ca6afc4ada49f11ba2fa1da5c0df8bd242dec0 100644 --- a/apps/files/templates/admin.php +++ b/apps/files/templates/admin.php @@ -16,7 +16,7 @@ <?php if ($_['allowZipDownload']): ?> checked="checked"<?php endif; ?> /> <label for="allowZipDownload"><?php p($l->t( 'Enable ZIP-download' )); ?></label><br/> - <input name="maxZipInputSize" id="maxZipInputSize" style="width:180px;" value='<?php p($_['maxZipInputSize']) ?>' + <input type="text" name="maxZipInputSize" id="maxZipInputSize" style="width:180px;" value='<?php p($_['maxZipInputSize']) ?>' title="<?php p($l->t( '0 is unlimited' )); ?>" <?php if (!$_['allowZipDownload']): ?> disabled="disabled"<?php endif; ?> /><br /> <em><?php p($l->t( 'Maximum input size for ZIP files' )); ?> </em><br /> diff --git a/apps/files_encryption/appinfo/app.php b/apps/files_encryption/appinfo/app.php index 3bdf6829a9b088563b622d2371c4c1a8b42d2125..bf16fec3aea0d60678d0a26d8121c9cbd0413868 100644 --- a/apps/files_encryption/appinfo/app.php +++ b/apps/files_encryption/appinfo/app.php @@ -1,13 +1,13 @@ <?php -OC::$CLASSPATH['OCA\Encryption\Crypt'] = 'apps/files_encryption/lib/crypt.php'; -OC::$CLASSPATH['OCA\Encryption\Hooks'] = 'apps/files_encryption/hooks/hooks.php'; -OC::$CLASSPATH['OCA\Encryption\Util'] = 'apps/files_encryption/lib/util.php'; -OC::$CLASSPATH['OCA\Encryption\Keymanager'] = 'apps/files_encryption/lib/keymanager.php'; -OC::$CLASSPATH['OCA\Encryption\Stream'] = 'apps/files_encryption/lib/stream.php'; -OC::$CLASSPATH['OCA\Encryption\Proxy'] = 'apps/files_encryption/lib/proxy.php'; -OC::$CLASSPATH['OCA\Encryption\Session'] = 'apps/files_encryption/lib/session.php'; -OC::$CLASSPATH['OCA\Encryption\Capabilities'] = 'apps/files_encryption/lib/capabilities.php'; +OC::$CLASSPATH['OCA\Encryption\Crypt'] = 'files_encryption/lib/crypt.php'; +OC::$CLASSPATH['OCA\Encryption\Hooks'] = 'files_encryption/hooks/hooks.php'; +OC::$CLASSPATH['OCA\Encryption\Util'] = 'files_encryption/lib/util.php'; +OC::$CLASSPATH['OCA\Encryption\Keymanager'] = 'files_encryption/lib/keymanager.php'; +OC::$CLASSPATH['OCA\Encryption\Stream'] = 'files_encryption/lib/stream.php'; +OC::$CLASSPATH['OCA\Encryption\Proxy'] = 'files_encryption/lib/proxy.php'; +OC::$CLASSPATH['OCA\Encryption\Session'] = 'files_encryption/lib/session.php'; +OC::$CLASSPATH['OCA\Encryption\Capabilities'] = 'files_encryption/lib/capabilities.php'; OC_FileProxy::register( new OCA\Encryption\Proxy() ); diff --git a/apps/files_encryption/l10n/nb_NO.php b/apps/files_encryption/l10n/nb_NO.php index e52ecb868af102a058ea58e23d00456dc891a788..a5e16a034218f70cfbd03f2b55073b9c46934166 100644 --- a/apps/files_encryption/l10n/nb_NO.php +++ b/apps/files_encryption/l10n/nb_NO.php @@ -1,4 +1,7 @@ <?php $TRANSLATIONS = array( "Encryption" => "Kryptering", +"File encryption is enabled." => "Fil-kryptering er aktivert.", +"The following file types will not be encrypted:" => "Følgende filtyper vil ikke bli kryptert:", +"Exclude the following file types from encryption:" => "Ekskluder følgende filtyper fra kryptering:", "None" => "Ingen" ); diff --git a/apps/files_external/appinfo/app.php b/apps/files_external/appinfo/app.php index d976c0175232bfe3364f84cca636a40a708765d1..d786c6c7a2aa33552d1ad30c93bf325f4000f014 100644 --- a/apps/files_external/appinfo/app.php +++ b/apps/files_external/appinfo/app.php @@ -6,16 +6,16 @@ * See the COPYING-README file. */ -OC::$CLASSPATH['OC\Files\Storage\StreamWrapper']='apps/files_external/lib/streamwrapper.php'; -OC::$CLASSPATH['OC\Files\Storage\FTP']='apps/files_external/lib/ftp.php'; -OC::$CLASSPATH['OC\Files\Storage\DAV']='apps/files_external/lib/webdav.php'; -OC::$CLASSPATH['OC\Files\Storage\Google']='apps/files_external/lib/google.php'; -OC::$CLASSPATH['OC\Files\Storage\SWIFT']='apps/files_external/lib/swift.php'; -OC::$CLASSPATH['OC\Files\Storage\SMB']='apps/files_external/lib/smb.php'; -OC::$CLASSPATH['OC\Files\Storage\AmazonS3']='apps/files_external/lib/amazons3.php'; -OC::$CLASSPATH['OC\Files\Storage\Dropbox']='apps/files_external/lib/dropbox.php'; -OC::$CLASSPATH['OC\Files\Storage\SFTP']='apps/files_external/lib/sftp.php'; -OC::$CLASSPATH['OC_Mount_Config']='apps/files_external/lib/config.php'; +OC::$CLASSPATH['OC\Files\Storage\StreamWrapper'] = 'files_external/lib/streamwrapper.php'; +OC::$CLASSPATH['OC\Files\Storage\FTP'] = 'files_external/lib/ftp.php'; +OC::$CLASSPATH['OC\Files\Storage\DAV'] = 'files_external/lib/webdav.php'; +OC::$CLASSPATH['OC\Files\Storage\Google'] = 'files_external/lib/google.php'; +OC::$CLASSPATH['OC\Files\Storage\SWIFT'] = 'files_external/lib/swift.php'; +OC::$CLASSPATH['OC\Files\Storage\SMB'] = 'files_external/lib/smb.php'; +OC::$CLASSPATH['OC\Files\Storage\AmazonS3'] = 'files_external/lib/amazons3.php'; +OC::$CLASSPATH['OC\Files\Storage\Dropbox'] = 'files_external/lib/dropbox.php'; +OC::$CLASSPATH['OC\Files\Storage\SFTP'] = 'files_external/lib/sftp.php'; +OC::$CLASSPATH['OC_Mount_Config'] = 'files_external/lib/config.php'; OCP\App::registerAdmin('files_external', 'settings'); if (OCP\Config::getAppValue('files_external', 'allow_user_mounting', 'yes') == 'yes') { diff --git a/apps/files_external/l10n/nb_NO.php b/apps/files_external/l10n/nb_NO.php index 65f9e9bbaf144b90ce53e43c967621005b5a7743..961ef2b1046bb8833751b47be4a337f77c761371 100644 --- a/apps/files_external/l10n/nb_NO.php +++ b/apps/files_external/l10n/nb_NO.php @@ -1,9 +1,21 @@ <?php $TRANSLATIONS = array( +"Access granted" => "Tilgang innvilget", +"Error configuring Dropbox storage" => "Feil ved konfigurering av Dropbox-lagring", +"Grant access" => "Gi tilgang", +"External Storage" => "Ekstern lagring", "Folder name" => "Mappenavn", +"External storage" => "Ekstern lagringsplass", "Configuration" => "Konfigurasjon", "Options" => "Innstillinger", +"Applicable" => "Anvendelig", +"Add storage" => "Legg til lagringsplass", +"None set" => "Ingen valgt", "All Users" => "Alle brukere", "Groups" => "Grupper", "Users" => "Brukere", -"Delete" => "Slett" +"Delete" => "Slett", +"Enable User External Storage" => "Aktiver ekstern lagring for bruker", +"Allow users to mount their own external storage" => "Tillat brukere å koble til egne eksterne lagringsmedium", +"SSL root certificates" => "SSL root-sertifikater", +"Import Root Certificate" => "Importer root-sertifikat" ); diff --git a/apps/files_external/l10n/nl.php b/apps/files_external/l10n/nl.php index ef03f46379addc995c902a46541e7caeef9a3f89..ad3eda9747fe44c0dda8ef59b8e433a807598ee1 100644 --- a/apps/files_external/l10n/nl.php +++ b/apps/files_external/l10n/nl.php @@ -8,9 +8,11 @@ "<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "<b>Waarschuwing:</b> FTP ondersteuning in PHP is niet geactiveerd of geïnstalleerd. Mounten van FTP shares is niet mogelijk. Vraag uw beheerder FTP ondersteuning te installeren.", "External Storage" => "Externe opslag", "Folder name" => "Mapnaam", +"External storage" => "Externe opslag", "Configuration" => "Configuratie", "Options" => "Opties", "Applicable" => "Van toepassing", +"Add storage" => "Toevoegen opslag", "None set" => "Niets ingesteld", "All Users" => "Alle gebruikers", "Groups" => "Groepen", diff --git a/apps/files_external/l10n/pt_BR.php b/apps/files_external/l10n/pt_BR.php index 908c95b00904568c3766fa00dfa33f5537a990cc..a358d56913916cff5bdeddc883acf765aba20a30 100644 --- a/apps/files_external/l10n/pt_BR.php +++ b/apps/files_external/l10n/pt_BR.php @@ -4,13 +4,15 @@ "Grant access" => "Permitir acesso", "Please provide a valid Dropbox app key and secret." => "Por favor forneça um app key e secret válido do Dropbox", "Error configuring Google Drive storage" => "Erro ao configurar armazenamento do Google Drive", -"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>Aviso:</b> \"smbclient\" não está instalado. Não será possível montar compartilhamentos de CIFS/SMB. Por favor, peça ao seu administrador do sistema para instalá-lo.", -"<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "<b>Aviso:</b> O suporte para FTP do PHP não está ativado ou instalado. Não será possível montar compartilhamentos FTP. Por favor, peça ao seu administrador do sistema para instalá-lo.", +"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>Aviso:</b> \"smbclient\" não está instalado. Impossível montar compartilhamentos de CIFS/SMB. Por favor, peça ao seu administrador do sistema para instalá-lo.", +"<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "<b>Aviso:</b> O suporte para FTP do PHP não está ativado ou instalado. Impossível montar compartilhamentos FTP. Por favor, peça ao seu administrador do sistema para instalá-lo.", "External Storage" => "Armazenamento Externo", "Folder name" => "Nome da pasta", +"External storage" => "Armazenamento Externo", "Configuration" => "Configuração", "Options" => "Opções", "Applicable" => "Aplicável", +"Add storage" => "Adicionar Armazenamento", "None set" => "Nenhum definido", "All Users" => "Todos os Usuários", "Groups" => "Grupos", diff --git a/apps/files_external/l10n/pt_PT.php b/apps/files_external/l10n/pt_PT.php index 1204f13f42f758948d387c39e968a53755462da4..aac3c1c2ca0779e1ca00f13a17a6d3fd986e82e0 100644 --- a/apps/files_external/l10n/pt_PT.php +++ b/apps/files_external/l10n/pt_PT.php @@ -4,18 +4,20 @@ "Grant access" => "Conceder acesso", "Please provide a valid Dropbox app key and secret." => "Por favor forneça uma \"app key\" e \"secret\" do Dropbox válidas.", "Error configuring Google Drive storage" => "Erro ao configurar o armazenamento do Google Drive", -"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>Aviso:</b> O cliente \"smbclient\" não está instalado. Não é possível montar as partilhas CIFS/SMB . Peça ao seu administrador para instalar.", +"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>Atenção:</b> O cliente \"smbclient\" não está instalado. Não é possível montar as partilhas CIFS/SMB . Peça ao seu administrador para instalar.", "<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "<b>Aviso:</b> O suporte FTP no PHP não está activate ou instalado. Não é possível montar as partilhas FTP. Peça ao seu administrador para instalar.", "External Storage" => "Armazenamento Externo", "Folder name" => "Nome da pasta", +"External storage" => "Armazenamento Externo", "Configuration" => "Configuração", "Options" => "Opções", "Applicable" => "Aplicável", -"None set" => "Nenhum configurado", +"Add storage" => "Adicionar armazenamento", +"None set" => "Não definido", "All Users" => "Todos os utilizadores", "Groups" => "Grupos", "Users" => "Utilizadores", -"Delete" => "Apagar", +"Delete" => "Eliminar", "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", diff --git a/apps/files_external/l10n/sv.php b/apps/files_external/l10n/sv.php index db0ed7a6af34e04d353c7ebcd8e5e3088a5d217b..45d3589228f614f483049cbd0faa2a3c102af7f2 100644 --- a/apps/files_external/l10n/sv.php +++ b/apps/files_external/l10n/sv.php @@ -8,9 +8,11 @@ "<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "<b>Varning:</b> Stöd för FTP i PHP är inte aktiverat eller installerat. Montering av FTP-delningar är inte möjligt. Kontakta din systemadministratör för att få det installerat.", "External Storage" => "Extern lagring", "Folder name" => "Mappnamn", +"External storage" => "Extern lagring", "Configuration" => "Konfiguration", "Options" => "Alternativ", "Applicable" => "Tillämplig", +"Add storage" => "Lägg till lagring", "None set" => "Ingen angiven", "All Users" => "Alla användare", "Groups" => "Grupper", diff --git a/apps/files_external/l10n/uk.php b/apps/files_external/l10n/uk.php index f83c1a7eb6ac939f1d0caacd69e1186d5f535668..34d19af0ee94ac061e583979c4dc7ba9521fb3a8 100644 --- a/apps/files_external/l10n/uk.php +++ b/apps/files_external/l10n/uk.php @@ -8,9 +8,11 @@ "<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "<b>Попередження:</b> Підтримка FTP в PHP не увімкнута чи не встановлена. Під'єднанатися до FTP тек неможливо. Попрохайте системного адміністратора встановити її.", "External Storage" => "Зовнішні сховища", "Folder name" => "Ім'я теки", +"External storage" => "Зовнішнє сховище", "Configuration" => "Налаштування", "Options" => "Опції", "Applicable" => "Придатний", +"Add storage" => "Додати сховище", "None set" => "Не встановлено", "All Users" => "Усі користувачі", "Groups" => "Групи", diff --git a/apps/files_sharing/appinfo/app.php b/apps/files_sharing/appinfo/app.php index d3e05cc62d8c8fb2f0e3190f1de3a13640dc6338..5b5893abc930c0d2934ec6fa09472796f6d725ac 100644 --- a/apps/files_sharing/appinfo/app.php +++ b/apps/files_sharing/appinfo/app.php @@ -1,11 +1,11 @@ <?php -OC::$CLASSPATH['OC_Share_Backend_File'] = "apps/files_sharing/lib/share/file.php"; -OC::$CLASSPATH['OC_Share_Backend_Folder'] = 'apps/files_sharing/lib/share/folder.php'; -OC::$CLASSPATH['OC\Files\Storage\Shared'] = "apps/files_sharing/lib/sharedstorage.php"; -OC::$CLASSPATH['OC\Files\Cache\Shared_Cache'] = 'apps/files_sharing/lib/cache.php'; -OC::$CLASSPATH['OC\Files\Cache\Shared_Permissions'] = 'apps/files_sharing/lib/permissions.php'; -OC::$CLASSPATH['OC\Files\Cache\Shared_Watcher'] = 'apps/files_sharing/lib/watcher.php'; +OC::$CLASSPATH['OC_Share_Backend_File'] = 'files_sharing/lib/share/file.php'; +OC::$CLASSPATH['OC_Share_Backend_Folder'] = 'files_sharing/lib/share/folder.php'; +OC::$CLASSPATH['OC\Files\Storage\Shared'] = 'files_sharing/lib/sharedstorage.php'; +OC::$CLASSPATH['OC\Files\Cache\Shared_Cache'] = 'files_sharing/lib/cache.php'; +OC::$CLASSPATH['OC\Files\Cache\Shared_Permissions'] = 'files_sharing/lib/permissions.php'; +OC::$CLASSPATH['OC\Files\Cache\Shared_Watcher'] = 'files_sharing/lib/watcher.php'; OCP\Util::connectHook('OC_Filesystem', 'setup', '\OC\Files\Storage\Shared', 'setup'); OCP\Share::registerBackend('file', 'OC_Share_Backend_File'); OCP\Share::registerBackend('folder', 'OC_Share_Backend_Folder', 'file'); diff --git a/apps/files_sharing/lib/permissions.php b/apps/files_sharing/lib/permissions.php index 72c1ec96c46a1fe4861f37cdb482fd6853be0a99..6747faa4d4313269cbf1649774e625cbfd1f26f5 100644 --- a/apps/files_sharing/lib/permissions.php +++ b/apps/files_sharing/lib/permissions.php @@ -76,7 +76,7 @@ class Shared_Permissions extends Permissions { * @param int $fileId * @param string $user */ - public function remove($fileId, $user) { + public function remove($fileId, $user = null) { // Not a valid action for Shared Permissions } diff --git a/apps/files_sharing/lib/share/file.php b/apps/files_sharing/lib/share/file.php index 0aeb763d89ad21d0c99d44f22f1940ef32501158..fa43e87b49e39be3091e81c27501bbe36704b1e7 100644 --- a/apps/files_sharing/lib/share/file.php +++ b/apps/files_sharing/lib/share/file.php @@ -73,7 +73,9 @@ class OC_Share_Backend_File implements OCP\Share_Backend_File_Dependent { if ($format == self::FORMAT_SHARED_STORAGE) { // Only 1 item should come through for this format call return array( + 'parent' => $items[key($items)]['parent'], 'path' => $items[key($items)]['path'], + 'storage' => $items[key($items)]['storage'], 'permissions' => $items[key($items)]['permissions'], 'uid_owner' => $items[key($items)]['uid_owner'] ); @@ -139,13 +141,28 @@ class OC_Share_Backend_File implements OCP\Share_Backend_File_Dependent { $source = \OCP\Share::getItemSharedWith('folder', $folder, \OC_Share_Backend_File::FORMAT_SHARED_STORAGE); if ($source) { $source['path'] = $source['path'].substr($target, strlen($folder)); - return $source; } } else { $source = \OCP\Share::getItemSharedWith('file', $target, \OC_Share_Backend_File::FORMAT_SHARED_STORAGE); - if ($source) { - return $source; + } + if ($source) { + if (isset($source['parent'])) { + $parent = $source['parent']; + while (isset($parent)) { + $query = \OC_DB::prepare('SELECT `parent`, `uid_owner` FROM `*PREFIX*share` WHERE `id` = ?', 1); + $item = $query->execute(array($parent))->fetchRow(); + if (isset($item['parent'])) { + $parent = $item['parent']; + } else { + $fileOwner = $item['uid_owner']; + break; + } + } + } else { + $fileOwner = $source['uid_owner']; } + $source['fileOwner'] = $fileOwner; + return $source; } \OCP\Util::writeLog('files_sharing', 'File source not found for: '.$target, \OCP\Util::ERROR); return false; diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index 5a9864b64bae035873c12cef62d7f8758069883a..be0e59e6732dc52bbc8e0ec99fdf94200b41dde6 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -45,11 +45,7 @@ class Shared extends \OC\Files\Storage\Common { */ private function getFile($target) { if (!isset($this->files[$target])) { - $source = \OC_Share_Backend_File::getSource($target); - if ($source) { - $source['path'] = '/'.$source['uid_owner'].'/'.$source['path']; - } - $this->files[$target] = $source; + $this->files[$target] = \OC_Share_Backend_File::getSource($target); } return $this->files[$target]; } @@ -62,8 +58,16 @@ class Shared extends \OC\Files\Storage\Common { private function getSourcePath($target) { $source = $this->getFile($target); if ($source) { - \OC\Files\Filesystem::initMountPoints($source['uid_owner']); - return $source['path']; + if (!isset($source['fullPath'])) { + \OC\Files\Filesystem::initMountPoints($source['fileOwner']); + $mount = \OC\Files\Mount::findByNumericId($source['storage']); + if ($mount) { + $this->files[$target]['fullPath'] = $mount->getMountPoint().$source['path']; + } else { + $this->files[$target]['fullPath'] = false; + } + } + return $this->files[$target]['fullPath']; } return false; } @@ -430,7 +434,7 @@ class Shared extends \OC\Files\Storage\Common { } $source = $this->getFile($path); if ($source) { - return $source['uid_owner']; + return $source['fileOwner']; } return false; } diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php index e345b91e293c0e2244c8e3a91708b60984e95280..1da972ad7e3fd295053a4b419de74cb1bdf2c501 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -141,7 +141,9 @@ if (isset($path)) { OCP\Util::addscript('files', 'keyboardshortcuts'); $files = array(); $rootLength = strlen($basePath) + 1; + $totalSize = 0; foreach (\OC\Files\Filesystem::getDirectoryContent($path) as $i) { + $totalSize += $i['size']; $i['date'] = OCP\Util::formatDate($i['mtime']); if ($i['type'] == 'file') { $fileinfo = pathinfo($i['name']); @@ -188,7 +190,9 @@ if (isset($path)) { $folder->assign('allowZipDownload', intval(OCP\Config::getSystemValue('allowZipDownload', true))); $folder->assign('usedSpacePercent', 0); $tmpl->assign('folder', $folder->fetchPage()); - $tmpl->assign('allowZipDownload', intval(OCP\Config::getSystemValue('allowZipDownload', true))); + $allowZip = OCP\Config::getSystemValue('allowZipDownload', true) + && $totalSize <= OCP\Config::getSystemValue('maxZipInputSize', OCP\Util::computerFileSize('800 MB')); + $tmpl->assign('allowZipDownload', intval($allowZip)); $tmpl->assign('downloadURL', OCP\Util::linkToPublic('files') . $urlLinkIdentifiers . '&download&path=' . urlencode($getPath)); } else { diff --git a/apps/files_sharing/templates/authenticate.php b/apps/files_sharing/templates/authenticate.php index b6ef82da6f09678a9fa972440a9eb608bf6861c3..7a67b6e550343e0762bf8a5539883391e01d2c3b 100644 --- a/apps/files_sharing/templates/authenticate.php +++ b/apps/files_sharing/templates/authenticate.php @@ -2,8 +2,8 @@ <fieldset> <p class="infield"> <label for="password" class="infield"><?php p($l->t('Password')); ?></label> - <input type="password" name="password" id="password" value="" autofocus /> + <input type="password" name="password" id="password" placeholder="" value="" autofocus /> <input type="submit" value="<?php p($l->t('Submit')); ?>" /> </p> </fieldset> -</form> \ No newline at end of file +</form> diff --git a/apps/files_trashbin/appinfo/app.php b/apps/files_trashbin/appinfo/app.php index 7c04e583db1515a88abdee18f1b313592baa120d..a6a99db034c9f19deb1fa1d1e9b47e1e9254fe39 100644 --- a/apps/files_trashbin/appinfo/app.php +++ b/apps/files_trashbin/appinfo/app.php @@ -1,7 +1,7 @@ <?php -OC::$CLASSPATH['OCA\Files_Trashbin\Hooks'] = 'apps/files_trashbin/lib/hooks.php'; -OC::$CLASSPATH['OCA\Files_Trashbin\Trashbin'] = 'apps/files_trashbin/lib/trash.php'; +OC::$CLASSPATH['OCA\Files_Trashbin\Hooks'] = 'files_trashbin/lib/hooks.php'; +OC::$CLASSPATH['OCA\Files_Trashbin\Trashbin'] = 'files_trashbin/lib/trash.php'; OCP\Util::connectHook('OC_Filesystem', 'delete', "OCA\Files_Trashbin\Hooks", "remove_hook"); diff --git a/apps/files_trashbin/index.php b/apps/files_trashbin/index.php index 8e726836f8a275731b37129ea3733247881e6253..24ccd8c4609535299f006fb661a9cf05d85b3282 100644 --- a/apps/files_trashbin/index.php +++ b/apps/files_trashbin/index.php @@ -95,9 +95,10 @@ foreach (explode('/', $dir) as $i) { } } -$breadcrumbNav = new OCP\Template('files', 'part.breadcrumb', ''); +$breadcrumbNav = new OCP\Template('files_trashbin', 'part.breadcrumb', ''); $breadcrumbNav->assign('breadcrumb', $breadcrumb); $breadcrumbNav->assign('baseURL', OCP\Util::linkTo('files_trashbin', 'index.php') . '?dir='); +$breadcrumbNav->assign('home', OCP\Util::linkTo('files', 'index.php')); $list = new OCP\Template('files_trashbin', 'part.list', ''); $list->assign('files', $files); @@ -105,6 +106,7 @@ $list->assign('baseURL', OCP\Util::linkTo('files_trashbin', 'index.php'). '?dir= $list->assign('downloadURL', OCP\Util::linkTo('files_trashbin', 'download.php') . '?file='.$dir); $list->assign('disableSharing', true); $list->assign('dirlisting', $dirlisting); +$tmpl->assign('dirlisting', $dirlisting); $list->assign('disableDownloadActions', true); $tmpl->assign('breadcrumb', $breadcrumbNav->fetchPage()); $tmpl->assign('fileList', $list->fetchPage()); diff --git a/apps/files_trashbin/l10n/nb_NO.php b/apps/files_trashbin/l10n/nb_NO.php index dc7b8fe97c5a0fa0968ff8af45a2169130fdffec..fa9543a5eb06e1f45012e6752bfb9f852933b41a 100644 --- a/apps/files_trashbin/l10n/nb_NO.php +++ b/apps/files_trashbin/l10n/nb_NO.php @@ -1,8 +1,16 @@ <?php $TRANSLATIONS = array( +"Couldn't delete %s permanently" => "Kunne ikke slette %s fullstendig", +"Couldn't restore %s" => "Kunne ikke gjenopprette %s", +"perform restore operation" => "utfør gjenopprettings operasjon", +"delete file permanently" => "slett filer permanent", +"Delete permanently" => "Slett permanent", "Name" => "Navn", +"Deleted" => "Slettet", "1 folder" => "1 mappe", "{count} folders" => "{count} mapper", "1 file" => "1 fil", "{count} files" => "{count} filer", +"Nothing in here. Your trash bin is empty!" => "Ingenting her. Søppelkassen din er tom!", +"Restore" => "Gjenopprett", "Delete" => "Slett" ); diff --git a/apps/files_trashbin/templates/index.php b/apps/files_trashbin/templates/index.php index 4c865d8981c30bf74bb125a168a55a7fd712b0eb..cb5edaa2c91e4718dbb678f3d8943ab9b0575ba9 100644 --- a/apps/files_trashbin/templates/index.php +++ b/apps/files_trashbin/templates/index.php @@ -9,7 +9,7 @@ <div id="emptyfolder"><?php p($l->t('Nothing in here. Your trash bin is empty!'))?></div> <?php endif; ?> -<table> +<table id="filestable"> <thead> <tr> <th id='headerName'> diff --git a/apps/files_trashbin/templates/part.breadcrumb.php b/apps/files_trashbin/templates/part.breadcrumb.php new file mode 100644 index 0000000000000000000000000000000000000000..2801e04e9ad9d5fc1ad15d77cbe4f1fbf62064d7 --- /dev/null +++ b/apps/files_trashbin/templates/part.breadcrumb.php @@ -0,0 +1,20 @@ +<div class="crumb"> + <a href="<?php print_unescaped($_['home']); ?>"> + <img src="<?php print_unescaped(OCP\image_path('core', 'places/home.svg'));?>" class="svg" /> + </a> +</div> +<?php if(count($_["breadcrumb"])):?> + <div class="crumb svg" + data-dir='<?php print_unescaped($_['baseURL']); ?>'> + <a href="<?php p($_['baseURL']); ?>"><?php p($l->t("Deleted Files")); ?></a> + </div> +<?php endif;?> +<?php for($i=0; $i<count($_["breadcrumb"]); $i++): + $crumb = $_["breadcrumb"][$i]; + $dir = str_replace('+', '%20', urlencode($crumb["dir"])); + $dir = str_replace('%2F', '/', $dir); ?> + <div class="crumb <?php if($i == count($_["breadcrumb"])-1) p('last');?> svg" + data-dir='<?php p($dir);?>'> + <a href="<?php p($_['baseURL'].$dir); ?>"><?php p($crumb["name"]); ?></a> + </div> +<?php endfor; diff --git a/apps/files_versions/appinfo/app.php b/apps/files_versions/appinfo/app.php index 761e0b723afffbde1c927d68eb34f00f975a819e..9be1c88968249a40398c31259fd7a61929b7dc91 100644 --- a/apps/files_versions/appinfo/app.php +++ b/apps/files_versions/appinfo/app.php @@ -1,9 +1,9 @@ <?php //require_once 'files_versions/versions.php'; -OC::$CLASSPATH['OCA\Files_Versions\Storage'] = 'apps/files_versions/lib/versions.php'; -OC::$CLASSPATH['OCA\Files_Versions\Hooks'] = 'apps/files_versions/lib/hooks.php'; -OC::$CLASSPATH['OCA\Files_Versions\Capabilities'] = 'apps/files_versions/lib/capabilities.php'; +OC::$CLASSPATH['OCA\Files_Versions\Storage'] = 'files_versions/lib/versions.php'; +OC::$CLASSPATH['OCA\Files_Versions\Hooks'] = 'files_versions/lib/hooks.php'; +OC::$CLASSPATH['OCA\Files_Versions\Capabilities'] = 'files_versions/lib/capabilities.php'; OCP\Util::addscript('files_versions', 'versions'); diff --git a/apps/files_versions/l10n/da.php b/apps/files_versions/l10n/da.php index 76ababe665ae6841b403b78518a7fc36b2deae0b..447a3d2b85df8f4e0367eef94eada8119f1b6e8c 100644 --- a/apps/files_versions/l10n/da.php +++ b/apps/files_versions/l10n/da.php @@ -6,5 +6,6 @@ "File %s could not be reverted to version %s" => "Filen %s blev genskabt til version: %s", "No old versions available" => "Ingen gamle version tilgængelige", "No path specified" => "Ingen sti specificeret", +"Versions" => "Versioner", "Revert a file to a previous version by clicking on its revert button" => "Genskab en fil til en tidligere version ved at klikke på denne genskab knap." ); diff --git a/apps/files_versions/l10n/nl.php b/apps/files_versions/l10n/nl.php index c50f76c7addcddb36e62a9569f9fda51b7a80ea8..9208852212180edef43fa67dedaf884a4dbacf31 100644 --- a/apps/files_versions/l10n/nl.php +++ b/apps/files_versions/l10n/nl.php @@ -6,5 +6,6 @@ "File %s could not be reverted to version %s" => "Bestand %s kon niet worden teruggedraaid naar versie %s", "No old versions available" => "Geen oudere versies beschikbaar", "No path specified" => "Geen pad opgegeven", +"Versions" => "Versies", "Revert a file to a previous version by clicking on its revert button" => "Draai een bestand terug naar een voorgaande versie door te klikken op de terugdraai knop" ); diff --git a/apps/files_versions/l10n/pt_BR.php b/apps/files_versions/l10n/pt_BR.php index f68197ef09219920fe97cd500c95e0bbb7143472..f13b7931d4b7cfe0f38775578f4ce71e02e925a9 100644 --- a/apps/files_versions/l10n/pt_BR.php +++ b/apps/files_versions/l10n/pt_BR.php @@ -1,10 +1,11 @@ <?php $TRANSLATIONS = array( -"Could not revert: %s" => "Não foi possível reverter: %s", +"Could not revert: %s" => "Impossível reverter: %s", "success" => "sucesso", "File %s was reverted to version %s" => "Arquivo %s revertido à versão %s", "failure" => "falha", "File %s could not be reverted to version %s" => "Arquivo %s não pôde ser revertido à versão %s", "No old versions available" => "Nenhuma versão antiga disponível", "No path specified" => "Nenhum caminho especificado", +"Versions" => "Versões", "Revert a file to a previous version by clicking on its revert button" => "Reverta um arquivo a uma versão anterior clicando no botão reverter" ); diff --git a/apps/files_versions/l10n/pt_PT.php b/apps/files_versions/l10n/pt_PT.php index 2baccf3def88ad72e116891a989aae007f4c8ba3..93379547295fc4d6fc9c64167d5ccf5e2790e50e 100644 --- a/apps/files_versions/l10n/pt_PT.php +++ b/apps/files_versions/l10n/pt_PT.php @@ -6,5 +6,6 @@ "File %s could not be reverted to version %s" => "Não foi possível reverter o ficheiro %s para a versão %s", "No old versions available" => "Não existem versões mais antigas", "No path specified" => "Nenhum caminho especificado", +"Versions" => "Versões", "Revert a file to a previous version by clicking on its revert button" => "Reverter um ficheiro para uma versão anterior clicando no seu botão reverter." ); diff --git a/apps/files_versions/l10n/uk.php b/apps/files_versions/l10n/uk.php index bfee066c63d061d0941aafc4625bbb325a3e1e40..e722d95497b290ba8568c3379669d1d7db6e1980 100644 --- a/apps/files_versions/l10n/uk.php +++ b/apps/files_versions/l10n/uk.php @@ -6,5 +6,6 @@ "File %s could not be reverted to version %s" => "Файл %s не може бути відновлений до версії %s", "No old versions available" => "Старі версії недоступні", "No path specified" => "Шлях не вказаний", +"Versions" => "Версії", "Revert a file to a previous version by clicking on its revert button" => "Відновити файл на попередню версію, натиснувши на кнопку Відновити" ); diff --git a/apps/files_versions/lib/versions.php b/apps/files_versions/lib/versions.php index 178ef7227358c18edce4a64b7602b5169767f578..20611c61ec7a7b2ae9303279b6167a0798bd6534 100644 --- a/apps/files_versions/lib/versions.php +++ b/apps/files_versions/lib/versions.php @@ -61,7 +61,7 @@ class Storage { } return false; } - + /** * write to the database how much space is in use for versions * @@ -82,6 +82,14 @@ class Storage { */ public static function store($filename) { if(\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true') { + + // if the file gets streamed we need to remove the .part extension + // to get the right target + $ext = pathinfo($filename, PATHINFO_EXTENSION); + if ($ext === 'part') { + $filename = substr($filename, 0, strlen($filename)-5); + } + list($uid, $filename) = self::getUidAndFilename($filename); $files_view = new \OC\Files\View('/'.$uid .'/files'); @@ -442,12 +450,12 @@ class Storage { } } - // check if enough space is available after versions are rearranged. - // if not we delete the oldest versions until we meet the size limit for versions - $numOfVersions = count($all_versions); + // Check if enough space is available after versions are rearranged. + // If not we delete the oldest versions until we meet the size limit for versions, + // but always keep the two latest versions + $numOfVersions = count($all_versions) -2 ; $i = 0; - while ($availableSpace < 0) { - if ($i = $numOfVersions-2) break; // keep at least the last version + while ($availableSpace < 0 && $i < $numOfVersions) { $versions_fileview->unlink($all_versions[$i]['path'].'.v'.$all_versions[$i]['version']); $versionsSize -= $all_versions[$i]['size']; $availableSpace += $all_versions[$i]['size']; diff --git a/apps/user_ldap/group_ldap.php b/apps/user_ldap/group_ldap.php index 4fd4c636913cffa5ca04eca62d87e4d40ef88cf6..efa5f8b4fe32d9f99eedc2c7231ce35661077568 100644 --- a/apps/user_ldap/group_ldap.php +++ b/apps/user_ldap/group_ldap.php @@ -209,6 +209,19 @@ class GROUP_LDAP extends lib\Access implements \OCP\GroupInterface { return $groupUsers; } + /** + * @brief get a list of all display names in a group + * @returns array with display names (value) and user ids(key) + */ + public function displayNamesInGroup($gid, $search, $limit, $offset) { + $users = $this->usersInGroup($gid, $search, $limit, $offset); + $displayNames = array(); + foreach($users as $user) { + $displayNames[$user] = \OC_User::getDisplayName($user); + } + return $displayNames; + } + /** * @brief get a list of all groups * @returns array with group names @@ -287,8 +300,6 @@ class GROUP_LDAP extends lib\Access implements \OCP\GroupInterface { * compared with OC_USER_BACKEND_CREATE_USER etc. */ public function implementsActions($actions) { - //always returns false, because possible actions are modifying - // actions. We do not write to LDAP, at least for now. - return false; + return (bool)(OC_GROUP_BACKEND_GET_DISPLAYNAME & $actions); } } diff --git a/apps/user_ldap/group_proxy.php b/apps/user_ldap/group_proxy.php index 5aa1aef0e0eb128608900370555b787b14a8173c..68d2efe38718dd00d1ed9bc8a4610c833f765e50 100644 --- a/apps/user_ldap/group_proxy.php +++ b/apps/user_ldap/group_proxy.php @@ -135,6 +135,22 @@ class Group_Proxy extends lib\Proxy implements \OCP\GroupInterface { return $users; } + /** + * @brief get a list of all display names in a group + * @returns array with display names (value) and user ids(key) + */ + public function displayNamesInGroup($gid, $search, $limit, $offset) { + $displayNames = array(); + + foreach($this->backends as $backend) { + $backendUsers = $backend->displayNamesInGroup($gid, $search, $limit, $offset); + if (is_array($backendUsers)) { + $displayNames = array_merge($displayNames, $backendUsers); + } + } + return $displayNames; + } + /** * @brief get a list of all groups * @returns array with group names diff --git a/apps/user_ldap/l10n/cs_CZ.php b/apps/user_ldap/l10n/cs_CZ.php index 4c74f195cf44d5718bd2fba58f234cd0e1e1bd4a..c5d77026b9e9b317dc7b6a1bbc46ef67d1ef298a 100644 --- a/apps/user_ldap/l10n/cs_CZ.php +++ b/apps/user_ldap/l10n/cs_CZ.php @@ -1,5 +1,5 @@ <?php $TRANSLATIONS = array( -"Failed to delete the server configuration" => "Selhalo smazání konfigurace serveru", +"Failed to delete the server configuration" => "Selhalo smazání nastavení serveru", "The configuration is valid and the connection could be established!" => "Nastavení je v pořádku a spojení bylo navázáno.", "The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "Konfigurace je v pořádku, ale spojení selhalo. Zkontrolujte, prosím, nastavení serveru a přihlašovací údaje.", "The configuration is invalid. Please look in the ownCloud log for further details." => "Nastavení je neplatné. Zkontrolujte, prosím, záznam ownCloud pro další podrobnosti.", @@ -48,6 +48,7 @@ "Turn off SSL certificate validation." => "Vypnout ověřování SSL certifikátu.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Pokud připojení pracuje pouze s touto možností, tak importujte SSL certifikát SSL serveru do Vašeho serveru ownCloud", "Not recommended, use for testing only." => "Není doporučeno, pouze pro testovací účely.", +"Cache Time-To-Live" => "TTL vyrovnávací paměti", "in seconds. A change empties the cache." => "ve vteřinách. Změna vyprázdní vyrovnávací paměť.", "Directory Settings" => "Nastavení adresáře", "User Display Name Field" => "Pole pro zobrazované jméno uživatele", @@ -63,7 +64,12 @@ "Group Search Attributes" => "Atributy vyhledávání skupin", "Group-Member association" => "Asociace člena skupiny", "Special Attributes" => "Speciální atributy", +"Quota Field" => "Pole pro kvótu", +"Quota Default" => "Výchozí kvóta", "in bytes" => "v bajtech", +"Email Field" => "Pole e-mailu", +"User Home Folder Naming Rule" => "Pravidlo pojmenování domovské složky uživatele", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Ponechte prázdné pro uživatelské jméno (výchozí). Jinak uveďte LDAP/AD parametr.", +"Test Configuration" => "Vyzkoušet nastavení", "Help" => "Nápověda" ); diff --git a/apps/user_ldap/l10n/de_DE.php b/apps/user_ldap/l10n/de_DE.php index c88ed22b4fa61d798bd85a8b02745b24e234030d..bff7b0312c7cbdb8002cee8c6e35ec5e81198c1e 100644 --- a/apps/user_ldap/l10n/de_DE.php +++ b/apps/user_ldap/l10n/de_DE.php @@ -48,6 +48,7 @@ "Turn off SSL certificate validation." => "Schalten Sie 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.", "Not recommended, use for testing only." => "Nicht empfohlen, nur zu Testzwecken.", +"Cache Time-To-Live" => "Speichere Time-To-Live zwischen", "in seconds. A change empties the cache." => "in Sekunden. Eine Änderung leert den Cache.", "Directory Settings" => "Verzeichniseinstellungen", "User Display Name Field" => "Feld für den Anzeigenamen des Benutzers", @@ -63,7 +64,12 @@ "Group Search Attributes" => "Gruppen-Suche Eigenschaften", "Group-Member association" => "Assoziation zwischen Gruppe und Benutzer", "Special Attributes" => "Besondere Eigenschaften", +"Quota Field" => "Kontingent Feld", +"Quota Default" => "Kontingent Standard", "in bytes" => "in Bytes", +"Email Field" => "E-Mail Feld", +"User Home Folder Naming Rule" => "Benennungsregel für das Heimatverzeichnis des Benutzers", "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.", +"Test Configuration" => "Testkonfiguration", "Help" => "Hilfe" ); diff --git a/apps/user_ldap/l10n/es.php b/apps/user_ldap/l10n/es.php index c0a444c0c7d1666d58eeaadd1c82c51d9d799855..1f0f92e7ac495ac08a4a4c7780443375de79eddf 100644 --- a/apps/user_ldap/l10n/es.php +++ b/apps/user_ldap/l10n/es.php @@ -15,7 +15,7 @@ "<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Advertencia:</b> El módulo LDAP de PHP no está instalado, el sistema no funcionará. Por favor consulte al administrador del sistema para instalarlo.", "Server configuration" => "Configuración del Servidor", "Add Server Configuration" => "Agregar configuracion del servidor", -"Host" => "Máquina", +"Host" => "Servidor", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Puede omitir el protocolo, excepto si requiere SSL. En ese caso, empiece con ldaps://", "Base DN" => "DN base", "One Base DN per line" => "Un DN Base por línea", @@ -48,6 +48,7 @@ "Turn off SSL certificate validation." => "Apagar la validación por certificado SSL.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Si la conexión sólo funciona con esta opción, importe el certificado SSL del servidor LDAP en su servidor ownCloud.", "Not recommended, use for testing only." => "No recomendado, sólo para pruebas.", +"Cache Time-To-Live" => "Cache TTL", "in seconds. A change empties the cache." => "en segundos. Un cambio vacía la cache.", "Directory Settings" => "Configuracion de directorio", "User Display Name Field" => "Campo de nombre de usuario a mostrar", @@ -63,7 +64,11 @@ "Group Search Attributes" => "Atributos de busqueda de grupo", "Group-Member association" => "Asociación Grupo-Miembro", "Special Attributes" => "Atributos especiales", +"Quota Field" => "Cuota", +"Quota Default" => "Cuota por defecto", "in bytes" => "en bytes", +"Email Field" => "E-mail", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Vacío para el nombre de usuario (por defecto). En otro caso, especifique un atributo LDAP/AD.", +"Test Configuration" => "Configuración de prueba", "Help" => "Ayuda" ); diff --git a/apps/user_ldap/l10n/it.php b/apps/user_ldap/l10n/it.php index 86887970dabc62131d1eda2e75536176ac3fb7f8..a2790fd1dec60f2a6e4079930e25590b93878d89 100644 --- a/apps/user_ldap/l10n/it.php +++ b/apps/user_ldap/l10n/it.php @@ -48,6 +48,7 @@ "Turn off SSL certificate validation." => "Disattiva il controllo del certificato SSL.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Se la connessione funziona esclusivamente con questa opzione, importa il certificato SSL del server LDAP nel tuo server ownCloud.", "Not recommended, use for testing only." => "Non consigliato, utilizzare solo per test.", +"Cache Time-To-Live" => "Tempo di vita della cache", "in seconds. A change empties the cache." => "in secondi. Il cambio svuota la cache.", "Directory Settings" => "Impostazioni delle cartelle", "User Display Name Field" => "Campo per la visualizzazione del nome utente", @@ -67,6 +68,7 @@ "Quota Default" => "Quota predefinita", "in bytes" => "in byte", "Email Field" => "Campo Email", +"User Home Folder Naming Rule" => "Regola di assegnazione del nome della cartella utente", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Lascia vuoto per il nome utente (predefinito). Altrimenti, specifica un attributo LDAP/AD.", "Test Configuration" => "Prova configurazione", "Help" => "Aiuto" diff --git a/apps/user_ldap/l10n/nb_NO.php b/apps/user_ldap/l10n/nb_NO.php index 8aab71354b092f141150b5078b6b643ecf5df111..c4700245f24059f50b3be04e0bd8c061b40d3d5d 100644 --- a/apps/user_ldap/l10n/nb_NO.php +++ b/apps/user_ldap/l10n/nb_NO.php @@ -1,11 +1,58 @@ <?php $TRANSLATIONS = array( -"Deletion failed" => "Sletting feilet", +"Failed to delete the server configuration" => "Klarte ikke å slette tjener-konfigurasjonen.", +"The configuration is valid and the connection could be established!" => "Konfigurasjonen er i orden og tilkoblingen skal være etablert!", +"The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "Konfigurasjonen er i orden, men Bind mislyktes. Vennligst sjekk tjener-konfigurasjonen og påloggingsinformasjonen.", +"The configuration is invalid. Please look in the ownCloud log for further details." => "Konfigurasjonen er ikke i orden. Vennligst se ownClouds logfil for flere detaljer.", +"Deletion failed" => "Sletting mislyktes", +"Take over settings from recent server configuration?" => "Hent innstillinger fra tidligere tjener-konfigurasjon?", +"Keep settings?" => "Behold innstillinger?", +"Cannot add server configuration" => "Kan ikke legge til tjener-konfigurasjon", +"Connection test succeeded" => "Tilkoblingstest lyktes", +"Connection test failed" => "Tilkoblingstest mislyktes", +"Do you really want to delete the current Server Configuration?" => "Er du sikker på at du vil slette aktiv tjener-konfigurasjon?", +"Confirm Deletion" => "Bekreft sletting", +"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Advarsel:</b>Apps user_ldap og user_webdavauth er ikke kompatible. Du kan oppleve uventet atferd fra systemet. Vennligst spør din system-administrator om å deaktivere en av dem.", +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Warning:</b> PHP LDAP modulen er ikke installert, hjelperen vil ikke virke. Vennligst be din system-administrator om å installere den.", +"Server configuration" => "Tjener-konfigurasjon", +"Add Server Configuration" => "Legg til tjener-konfigurasjon", +"Host" => "Tjener", +"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Du kan utelate protokollen, men du er påkrevd å bruke SSL. Deretter starte med ldaps://", +"Base DN" => "Base DN", +"One Base DN per line" => "En hoved DN pr. linje", +"You can specify Base DN for users and groups in the Advanced tab" => "Du kan spesifisere Base DN for brukere og grupper under Avansert fanen", +"User DN" => "Bruker DN", +"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "DN nummeret til klienten som skal bindes til, f.eks. uid=agent,dc=example,dc=com. For anonym tilgang, la DN- og passord-feltet stå tomt.", "Password" => "Passord", +"For anonymous access, leave DN and Password empty." => "For anonym tilgang, la DN- og passord-feltet stå tomt.", +"User Login Filter" => "Brukerpålogging filter", +"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action." => "Definerer filteret som skal brukes når et påloggingsforsøk blir utført. %%uid erstatter brukernavnet i innloggingshandlingen.", +"use %%uid placeholder, e.g. \"uid=%%uid\"" => "bruk %%uid plassholder, f.eks. \"uid=%%uid\"", +"User List Filter" => "Brukerliste filter", +"Defines the filter to apply, when retrieving users." => "Definerer filteret som skal brukes, når systemet innhenter brukere.", +"without any placeholder, e.g. \"objectClass=person\"." => "uten noe plassholder, f.eks. \"objectClass=person\".", "Group Filter" => "Gruppefilter", +"Defines the filter to apply, when retrieving groups." => "Definerer filteret som skal brukes, når systemet innhenter grupper.", +"without any placeholder, e.g. \"objectClass=posixGroup\"." => "uten noe plassholder, f.eks. \"objectClass=posixGroup\".", +"Configuration Active" => "Konfigurasjon aktiv", +"When unchecked, this configuration will be skipped." => "Når ikke huket av så vil denne konfigurasjonen bli hoppet over.", "Port" => "Port", +"Backup (Replica) Host" => "Sikkerhetskopierings (Replica) vert", "Use TLS" => "Bruk TLS", +"Case insensitve LDAP server (Windows)" => "Case-insensitiv LDAP tjener (Windows)", +"Turn off SSL certificate validation." => "Slå av SSL-sertifikat validering", +"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Hvis tilgang kun fungerer med dette alternativet, importer LDAP-tjenerens SSL-sertifikat til din egen ownCloud tjener.", "Not recommended, use for testing only." => "Ikke anbefalt, bruk kun for testing", "in seconds. A change empties the cache." => "i sekunder. En endring tømmer bufferen.", +"User Display Name Field" => "Vis brukerens navnfelt", +"The LDAP attribute to use to generate the user`s ownCloud name." => "LDAP-attributen å bruke for å generere brukers ownCloud navn.", +"Base User Tree" => "Hovedbruker tre", +"One User Base DN per line" => "En Bruker Base DN pr. linje", +"Group Display Name Field" => "Vis gruppens navnfelt", +"The LDAP attribute to use to generate the groups`s ownCloud name." => "LDAP-attributen å bruke for å generere gruppens ownCloud navn.", +"Base Group Tree" => "Hovedgruppe tre", +"One Group Base DN per line" => "En gruppe hoved-DN pr. linje", +"Group-Member association" => "gruppe-medlem assosiasjon", "in bytes" => "i bytes", +"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "La stå tom for brukernavn (standard). Ellers, spesifiser en LDAP/AD attributt.", "Help" => "Hjelp" ); diff --git a/apps/user_ldap/l10n/nl.php b/apps/user_ldap/l10n/nl.php index 0eda263aa116bf7c8ec6dc6644518d798920b51e..7973c66cd10d8cc3d5dee001a2a04d787aa6d63f 100644 --- a/apps/user_ldap/l10n/nl.php +++ b/apps/user_ldap/l10n/nl.php @@ -48,6 +48,7 @@ "Turn off SSL certificate validation." => "Schakel SSL certificaat validatie uit.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Als de connectie alleen werkt met deze optie, importeer dan het LDAP server SSL certificaat naar je ownCloud server.", "Not recommended, use for testing only." => "Niet aangeraden, gebruik alleen voor test doeleinden.", +"Cache Time-To-Live" => "Cache time-to-live", "in seconds. A change empties the cache." => "in seconden. Een verandering maakt de cache leeg.", "Directory Settings" => "Mapinstellingen", "User Display Name Field" => "Gebruikers Schermnaam Veld", @@ -63,7 +64,12 @@ "Group Search Attributes" => "Attributen voor groepszoekopdrachten", "Group-Member association" => "Groepslid associatie", "Special Attributes" => "Speciale attributen", +"Quota Field" => "Quota veld", +"Quota Default" => "Quota standaard", "in bytes" => "in bytes", +"Email Field" => "E-mailveld", +"User Home Folder Naming Rule" => "Gebruikers Home map naamgevingsregel", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Laat leeg voor de gebruikersnaam (standaard). Of, specificeer een LDAP/AD attribuut.", +"Test Configuration" => "Test configuratie", "Help" => "Help" ); diff --git a/apps/user_ldap/l10n/pt_BR.php b/apps/user_ldap/l10n/pt_BR.php index e3d2da463cca9d227bc672810a26cd97cf18772a..a728ea15fde20d9a9e366d70841a6a81f8b61261 100644 --- a/apps/user_ldap/l10n/pt_BR.php +++ b/apps/user_ldap/l10n/pt_BR.php @@ -2,20 +2,20 @@ "Failed to delete the server configuration" => "Falha ao deletar a configuração do servidor", "The configuration is valid and the connection could be established!" => "A configuração é válida e a conexão foi estabelecida!", "The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "A configuração é válida, mas o Bind falhou. Confira as configurações do servidor e as credenciais.", -"The configuration is invalid. Please look in the ownCloud log for further details." => "A configuração é inválida. Leia o \"log\" do ownCloud para mais detalhes.", +"The configuration is invalid. Please look in the ownCloud log for further details." => "A configuração é inválida. Leia o log do ownCloud para mais detalhes.", "Deletion failed" => "Remoção falhou", "Take over settings from recent server configuration?" => "Tomar parámetros de recente configuração de servidor?", "Keep settings?" => "Manter ajustes?", -"Cannot add server configuration" => "Não foi possível adicionar a configuração do servidor", -"Connection test succeeded" => "Teste de conexão bem sucedido", +"Cannot add server configuration" => "Impossível adicionar a configuração do servidor", +"Connection test succeeded" => "Teste de conexão bem sucedida", "Connection test failed" => "Teste de conexão falhou", "Do you really want to delete the current Server Configuration?" => "Você quer realmente deletar as atuais Configurações de Servidor?", "Confirm Deletion" => "Confirmar Exclusão", "<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Aviso:</b> Os aplicativos user_ldap e user_webdavauth são incompatíveis. Você deverá experienciar comportamento inesperado. Por favor, peça ao seu administrador do sistema para desabilitar um deles.", "<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Aviso:</b> O módulo PHP LDAP não está instalado, o backend não funcionará. Por favor, peça ao seu administrador do sistema para instalá-lo.", "Server configuration" => "Configuração de servidor", -"Add Server Configuration" => "Adicionar configuração de servidor", -"Host" => "Host", +"Add Server Configuration" => "Adicionar Configuração de Servidor", +"Host" => "Servidor", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Você pode omitir o protocolo, exceto quando requerer SSL. Então inicie com ldaps://", "Base DN" => "DN Base", "One Base DN per line" => "Uma base DN por linha", @@ -28,39 +28,48 @@ "Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action." => "Define o filtro pra aplicar ao efetuar uma tentativa de login. %%uuid substitui o nome de usuário na ação de login.", "use %%uid placeholder, e.g. \"uid=%%uid\"" => "use %%uid placeholder, ex. \"uid=%%uid\"", "User List Filter" => "Filtro de Lista de Usuário", -"Defines the filter to apply, when retrieving users." => "Define filtro a aplicar ao obter usuários.", +"Defines the filter to apply, when retrieving users." => "Define filtro a ser aplicado ao obter usuários.", "without any placeholder, e.g. \"objectClass=person\"." => "sem nenhum espaço reservado, ex. \"objectClass=person\".", "Group Filter" => "Filtro de Grupo", "Defines the filter to apply, when retrieving groups." => "Define o filtro a aplicar ao obter grupos.", "without any placeholder, e.g. \"objectClass=posixGroup\"." => "sem nenhum espaço reservado, ex. \"objectClass=posixGroup\"", -"Connection Settings" => "Configurações de conexão", +"Connection Settings" => "Configurações de Conexão", "Configuration Active" => "Configuração ativa", -"When unchecked, this configuration will be skipped." => "Quando assinalada, esta configuração será pulada.", +"When unchecked, this configuration will be skipped." => "Quando não marcada, esta configuração será ignorada.", "Port" => "Porta", +"Backup (Replica) Host" => "Servidor de Backup (Réplica)", +"Give an optional backup host. It must be a replica of the main LDAP/AD server." => "Defina um servidor de backup opcional. Ele deverá ser uma réplica do servidor LDAP/AD principal.", +"Backup (Replica) Port" => "Porta do Backup (Réplica)", "Disable Main Server" => "Desativar Servidor Principal", -"When switched on, ownCloud will only connect to the replica server." => "Quando ativado, ownCloud somente conectar-se-á ao servidor réplica.", +"When switched on, ownCloud will only connect to the replica server." => "Quando ativado, ownCloud somente se conectará ao servidor de réplica.", "Use TLS" => "Usar TLS", "Do not use it additionally for LDAPS connections, it will fail." => "Não use adicionalmente para conexões LDAPS, pois falhará.", "Case insensitve LDAP server (Windows)" => "Servidor LDAP sensível à caixa alta (Windows)", "Turn off SSL certificate validation." => "Desligar validação de certificado SSL.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Se a conexão só funciona com essa opção, importe o certificado SSL do servidor LDAP no seu servidor ownCloud.", "Not recommended, use for testing only." => "Não recomendado, use somente para testes.", +"Cache Time-To-Live" => "Cache Time-To-Live", "in seconds. A change empties the cache." => "em segundos. Uma mudança esvaziará o cache.", "Directory Settings" => "Configurações de Diretório", "User Display Name Field" => "Campo Nome de Exibição de Usuário", "The LDAP attribute to use to generate the user`s ownCloud name." => "O atributo LDAP para usar para gerar nome ownCloud do usuário.", "Base User Tree" => "Árvore de Usuário Base", "One User Base DN per line" => "Um usuário-base DN por linha", -"User Search Attributes" => "Atributos de busca de usuário", +"User Search Attributes" => "Atributos de Busca de Usuário", "Optional; one attribute per line" => "Opcional; um atributo por linha", "Group Display Name Field" => "Campo Nome de Exibição de Grupo", "The LDAP attribute to use to generate the groups`s ownCloud name." => "O atributo LDAP para usar para gerar nome ownCloud do grupo.", "Base Group Tree" => "Árvore de Grupo Base", "One Group Base DN per line" => "Um grupo-base DN por linha", -"Group Search Attributes" => "Atributos de busca de grupo", +"Group Search Attributes" => "Atributos de Busca de Grupo", "Group-Member association" => "Associação Grupo-Membro", "Special Attributes" => "Atributos Especiais", +"Quota Field" => "Campo de Cota", +"Quota Default" => "Cota Padrão", "in bytes" => "em bytes", +"Email Field" => "Campo de Email", +"User Home Folder Naming Rule" => "Regra para Nome da Pasta Pessoal do Usuário", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Deixe vazio para nome de usuário (padrão). Caso contrário, especifique um atributo LDAP/AD.", +"Test Configuration" => "Teste de Configuração", "Help" => "Ajuda" ); diff --git a/apps/user_ldap/l10n/pt_PT.php b/apps/user_ldap/l10n/pt_PT.php index bfe6656b3b688df9c4aff407441a8688a09e5b10..3092d061437e537618aa08824aab23c5eaadc819 100644 --- a/apps/user_ldap/l10n/pt_PT.php +++ b/apps/user_ldap/l10n/pt_PT.php @@ -48,6 +48,7 @@ "Turn off SSL certificate validation." => "Desligar a validação de certificado SSL.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Se a ligação apenas funcionar com está opção, importe o certificado SSL do servidor LDAP para o seu servidor do ownCloud.", "Not recommended, use for testing only." => "Não recomendado, utilizado apenas para testes!", +"Cache Time-To-Live" => "Cache do tempo de vida dos objetos no servidor", "in seconds. A change empties the cache." => "em segundos. Uma alteração esvazia a cache.", "Directory Settings" => "Definições de directorias", "User Display Name Field" => "Mostrador do nome de utilizador.", @@ -63,7 +64,12 @@ "Group Search Attributes" => "Atributos de pesquisa de grupo", "Group-Member association" => "Associar utilizador ao grupo.", "Special Attributes" => "Atributos especiais", +"Quota Field" => "Quota", +"Quota Default" => "Quota padrão", "in bytes" => "em bytes", +"Email Field" => "Campo de email", +"User Home Folder Naming Rule" => "Regra da pasta inicial do utilizador", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Deixe vazio para nome de utilizador (padrão). De outro modo, especifique um atributo LDAP/AD.", +"Test Configuration" => "Testar a configuração", "Help" => "Ajuda" ); diff --git a/apps/user_ldap/l10n/sv.php b/apps/user_ldap/l10n/sv.php index 702912f9c682fe479ee26d6128caafee87e52a0f..12ecc7b1633c15ea469f48cbd7d0d619d26814af 100644 --- a/apps/user_ldap/l10n/sv.php +++ b/apps/user_ldap/l10n/sv.php @@ -63,7 +63,9 @@ "Group Search Attributes" => "Gruppsökningsattribut", "Group-Member association" => "Attribut för gruppmedlemmar", "Special Attributes" => "Specialattribut", +"Quota Field" => "Kvotfält", "in bytes" => "i bytes", +"Email Field" => "E-postfält", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Lämnas tomt för användarnamn (standard). Ange annars ett LDAP/AD-attribut.", "Help" => "Hjälp" ); diff --git a/apps/user_ldap/l10n/uk.php b/apps/user_ldap/l10n/uk.php index 3b85e095ff01ac2a1f574f23d2b95640b196dacc..623d34c98e6a5f3a26b8a8b58b4187a5e95c07d9 100644 --- a/apps/user_ldap/l10n/uk.php +++ b/apps/user_ldap/l10n/uk.php @@ -48,6 +48,7 @@ "Turn off SSL certificate validation." => "Вимкнути перевірку SSL сертифіката.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Якщо з'єднання працює лише з цією опцією, імпортуйте SSL сертифікат LDAP сервера у ваший ownCloud сервер.", "Not recommended, use for testing only." => "Не рекомендується, використовуйте лише для тестів.", +"Cache Time-To-Live" => "Час актуальності Кеша", "in seconds. A change empties the cache." => "в секундах. Зміна очищує кеш.", "Directory Settings" => "Налаштування Каталога", "User Display Name Field" => "Поле, яке відображає Ім'я Користувача", @@ -63,7 +64,12 @@ "Group Search Attributes" => "Пошукові Атрибути Групи", "Group-Member association" => "Асоціація Група-Член", "Special Attributes" => "Спеціальні Атрибути", +"Quota Field" => "Поле Квоти", +"Quota Default" => "Квота за замовчанням", "in bytes" => "в байтах", +"Email Field" => "Поле Ел. пошти", +"User Home Folder Naming Rule" => "Правило іменування домашньої теки користувача", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Залиште порожнім для імені користувача (за замовчанням). Інакше, вкажіть атрибут LDAP/AD.", +"Test Configuration" => "Тестове налаштування", "Help" => "Допомога" ); diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php index 05249b8f16380f0583ed2e62e31199fc40c46046..a8cfd45bf4d630f3cd48ce35da40c00c3e082eca 100644 --- a/apps/user_ldap/lib/access.php +++ b/apps/user_ldap/lib/access.php @@ -144,6 +144,9 @@ abstract class Access { '\;' => '\5c3B', '\"' => '\5c22', '\#' => '\5c23', + '(' => '\28', + ')' => '\29', + '*' => '\2A', ); $dn = str_replace(array_keys($replacements), array_values($replacements), $dn); @@ -650,7 +653,7 @@ abstract class Access { $linkResources = array_pad(array(), count($base), $link_resource); $sr = ldap_search($linkResources, $base, $filter, $attr); $error = ldap_errno($link_resource); - if(!is_array($sr) || $error > 0) { + if(!is_array($sr) || $error != 0) { \OCP\Util::writeLog('user_ldap', 'Error when searching: '.ldap_error($link_resource).' code '.ldap_errno($link_resource), \OCP\Util::ERROR); diff --git a/apps/user_ldap/settings.php b/apps/user_ldap/settings.php index c55a718a82a9b515edccfe51354808f319eb28a4..05497ae8a3375790a9bd2530f3f46bc338a0fc27 100644 --- a/apps/user_ldap/settings.php +++ b/apps/user_ldap/settings.php @@ -42,17 +42,7 @@ OCP\Util::addstyle('user_ldap', 'settings'); $tmpl = new OCP\Template('user_ldap', 'settings'); $prefixes = \OCA\user_ldap\lib\Helper::getServerConfigurationPrefixes(); -$scoHtml = ''; -$i = 1; -$sel = ' selected'; -foreach($prefixes as $prefix) { - $scoHtml .= '<option value="'.$prefix.'"'.$sel.'>'.$i++.'. Server</option>'; - $sel = ''; -} -if(count($prefixes) == 0) { - $scoHtml .= '<option value="" selected>1. Server</option>'; -} -$tmpl->assign('serverConfigurationOptions', $scoHtml); +$tmpl->assign('serverConfigurationPrefixes', $prefixes); // assign default values if(!isset($ldap)) { diff --git a/apps/user_ldap/templates/settings.php b/apps/user_ldap/templates/settings.php index cd004cec4b3e8f00507429d6ef5857b24b7f2547..d3c2c298904305f72af82fc52ddf8e872987e6d7 100644 --- a/apps/user_ldap/templates/settings.php +++ b/apps/user_ldap/templates/settings.php @@ -14,7 +14,20 @@ <fieldset id="ldapSettings-1"> <p><label for="ldap_serverconfig_chooser"><?php p($l->t('Server configuration'));?></label> <select id="ldap_serverconfig_chooser" name="ldap_serverconfig_chooser"> - <?php p($_['serverConfigurationOptions']); ?> + <?php if(count($_['serverConfigurationPrefixes']) == 0 ) { + ?> + <option value="" selected>1. Server</option>'); + <?php + } else { + $i = 1; + $sel = ' selected'; + foreach($_['serverConfigurationPrefixes'] as $prefix) { + ?> + <option value="<?php p($prefix); ?>"<?php p($sel); ?>><?php p($i++); ?>. Server</option> + <?php + } + } + ?> <option value="NEW"><?php p($l->t('Add Server Configuration'));?></option> </select> <button id="ldap_action_delete_configuration" diff --git a/apps/user_webdavauth/appinfo/app.php b/apps/user_webdavauth/appinfo/app.php index c4c131b7ef0205001588f76ffd6046bf13c21034..3cd227bddbefa4bbe7b1005f992d0ed54c64fd3e 100755 --- a/apps/user_webdavauth/appinfo/app.php +++ b/apps/user_webdavauth/appinfo/app.php @@ -21,7 +21,7 @@ * */ -require_once 'apps/user_webdavauth/user_webdavauth.php'; +require_once OC_App::getAppPath('user_webdavauth').'/user_webdavauth.php'; OC_APP::registerAdmin('user_webdavauth', 'settings'); diff --git a/core/ajax/update.php b/core/ajax/update.php index b112cf6266b59d41698e0f8655adcbd8ee69f578..8b20150d43248ae38ec263619a62719dfc8c09e2 100644 --- a/core/ajax/update.php +++ b/core/ajax/update.php @@ -17,10 +17,6 @@ if (OC::checkUpgrade(false)) { } catch (Exception $exception) { $watcher->failure($exception->getMessage()); } - $minimizerCSS = new OC_Minimizer_CSS(); - $minimizerCSS->clearCache(); - $minimizerJS = new OC_Minimizer_JS(); - $minimizerJS->clearCache(); OC_Config::setValue('version', implode('.', OC_Util::getVersion())); OC_App::checkAppsRequirements(); // load all apps to also upgrade enabled apps diff --git a/core/css/styles.css b/core/css/styles.css index 61243237bc1df523c5857f23ecee2e63f463902c..0725e658965e1145c2ce524399417a13b609ad69 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -32,12 +32,12 @@ background:linear-gradient(top, #35537a 0%,#1d2d42 100%); /* W3C */ filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#35537a', endColorstr='#1d2d42',GradientType=0 ); /* IE6-9 */ } #owncloud { position:absolute; top:0; left:0; padding:6px; padding-bottom:0; } -.header-right { float:right; vertical-align:middle; padding:0 0.5em; } +.header-right { float:right; vertical-align:middle; padding:0.5em; } .header-right > * { vertical-align:middle; } + /* INPUTS */ -input[type="text"], input[type="password"], input[type="number"] { cursor:text; } -input[type="text"], input[type="password"], input[type="search"], input[type="number"], +input[type="text"], input[type="password"], input[type="search"], input[type="number"], input[type="email"], textarea, select, button, .button, #quota, div.jp-progress, .pager li a { width:10em; margin:.3em; padding:.6em .5em .4em; font-size:1em; font-family:Arial, Verdana, sans-serif; @@ -46,13 +46,22 @@ textarea, select, button, .button, #quota, div.jp-progress, .pager li a { -moz-border-radius:.5em; -webkit-border-radius:.5em; border-radius:.5em; } input[type="hidden"] { height:0; width:0; } -input[type="text"], input[type="password"], input[type="search"], input[type="number"], textarea { background:#f8f8f8; color:#555; cursor:text; } -input[type="text"], input[type="password"], input[type="search"], input[type="number"] { -webkit-appearance:textfield; -moz-appearance:textfield; -webkit-box-sizing:content-box; -moz-box-sizing:content-box; box-sizing:content-box; } +input[type="text"], input[type="password"], input[type="search"], input[type="number"], input[type="email"], textarea { + background:#f8f8f8; color:#555; cursor:text; +} +input[type="text"], input[type="password"], input[type="search"], input[type="number"], input[type="email"] { + -webkit-appearance:textfield; -moz-appearance:textfield; + -webkit-box-sizing:content-box; -moz-box-sizing:content-box; box-sizing:content-box; +} input[type="text"]:hover, input[type="text"]:focus, input[type="text"]:active, input[type="password"]:hover, input[type="password"]:focus, input[type="password"]:active, input[type="number"]:hover, input[type="number"]:focus, input[type="number"]:active, .searchbox input[type="search"]:hover, .searchbox input[type="search"]:focus, .searchbox input[type="search"]:active, -textarea:hover, textarea:focus, textarea:active { background-color:#fff; color:#333; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter:alpha(opacity=100); opacity:1; } +input[type="email"]:hover, input[type="email"]:focus, input[type="email"]:active, +textarea:hover, textarea:focus, textarea:active { + background-color:#fff; color:#333; + -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter:alpha(opacity=100); opacity:1; +} input[type="checkbox"] { margin:0; padding:0; height:auto; width:auto; } input[type="checkbox"]:hover+label, input[type="checkbox"]:focus+label { color:#111 !important; } #quota { cursor:default; } diff --git a/core/js/js.js b/core/js/js.js index 582d1f808d7dd9d091b4b4a93e73105f3d440cda..1a94215c27bf71b4ffeb598e0911ca40b8626fc3 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -349,7 +349,7 @@ OC.Notification={ }, show: function(text) { if(($('#notification').filter('span.undo').length == 1) || OC.Notification.isHidden()){ - $('#notification').html(html); + $('#notification').html(text); $('#notification').fadeIn().css("display","inline"); }else{ OC.Notification.queuedNotifications.push($(text).html()); diff --git a/core/js/oc-dialogs.js b/core/js/oc-dialogs.js index 28dec97fd307a3d77095e792d2015d6428491245..cfbca2833c7a64aed507ada1cf1472b55acb81e5 100644 --- a/core/js/oc-dialogs.js +++ b/core/js/oc-dialogs.js @@ -129,13 +129,13 @@ var OCdialogs = { var p; if ($(c_id).data('multiselect') == true) { p = []; - $(c_id+' .filepicker_element_selected #filename').each(function(i, elem) { + $(c_id+' .filepicker_element_selected .filename').each(function(i, elem) { p.push(($(c_id).data('path')?$(c_id).data('path'):'')+'/'+$(elem).text()); }); } else { var p = $(c_id).data('path'); if (p == undefined) p = ''; - p = p+'/'+$(c_id+' .filepicker_element_selected #filename').text() + p = p+'/'+$(c_id+' .filepicker_element_selected .filename').text() } callback(p); $(c_id).dialog('close'); @@ -216,13 +216,15 @@ var OCdialogs = { } }, fillFilePicker:function(r, dialog_content_id) { - var entry_template = '<div onclick="javascript:OC.dialogs.handlePickerClick(this, \'*ENTRYNAME*\',\''+dialog_content_id+'\')" data="*ENTRYTYPE*"><img src="*MIMETYPEICON*" style="margin-right:1em;"><span id="filename">*NAME*</span><div style="float:right;margin-right:1em;">*LASTMODDATE*</div></div>'; + var entry_template = '<div data-entryname="*ENTRYNAME*" data-dcid="'+dialog_content_id+'" data="*ENTRYTYPE*"><img src="*MIMETYPEICON*" style="margin-right:1em;"><span class="filename">*NAME*</span><div style="float:right;margin-right:1em;">*LASTMODDATE*</div></div>'; var names = ''; $.each(r.data, function(index, a) { names += entry_template.replace('*LASTMODDATE*', OC.mtime2date(a.mtime)).replace('*NAME*', a.name).replace('*MIMETYPEICON*', a.mimetype_icon).replace('*ENTRYNAME*', a.name).replace('*ENTRYTYPE*', a.type); }); - $(dialog_content_id + ' #filelist').html(names); + $(dialog_content_id + ' #filelist').html(names).on('click', '[data="file"]', function() { + OC.dialogs.handlePickerClick(this, $(this).data('entryname'), $(this).data('dcid')); + }); $(dialog_content_id + ' .filepicker_loader').css('visibility', 'hidden'); }, handleTreeListSelect:function(event) { diff --git a/core/l10n/id.php b/core/l10n/id.php index 697195e75149fec21ceecb792eed7cbf30365b76..0be3ef20fb5b3ce2953ffce8b4227b59483641f4 100644 --- a/core/l10n/id.php +++ b/core/l10n/id.php @@ -1,6 +1,12 @@ <?php $TRANSLATIONS = array( +"Category type not provided." => "Tipe kategori tidak diberikan.", "No category to add?" => "Tidak ada kategori yang akan ditambahkan?", +"This category already exists: %s" => "Kategori ini sudah ada: %s", +"Object type not provided." => "Tipe obyek tidak diberikan.", +"%s ID not provided." => "%s ID tidak diberikan.", +"Error adding %s to favorites." => "Kesalahan menambah %s ke favorit", "No categories selected for deletion." => "Tidak ada kategori terpilih untuk penghapusan.", +"Error removing %s from favorites." => "Kesalahan menghapus %s dari favorit", "Sunday" => "minggu", "Monday" => "senin", "Tuesday" => "selasa", @@ -23,9 +29,14 @@ "Settings" => "Setelan", "seconds ago" => "beberapa detik yang lalu", "1 minute ago" => "1 menit lalu", +"{minutes} minutes ago" => "{minutes} menit yang lalu", +"1 hour ago" => "1 jam yang lalu", +"{hours} hours ago" => "{hours} jam yang lalu", "today" => "hari ini", "yesterday" => "kemarin", +"{days} days ago" => "{days} hari yang lalu", "last month" => "bulan kemarin", +"{months} months ago" => "{months} bulan yang lalu", "months ago" => "beberapa bulan lalu", "last year" => "tahun kemarin", "years ago" => "beberapa tahun lalu", @@ -35,7 +46,8 @@ "Yes" => "Ya", "Ok" => "Oke", "Error" => "gagal", -"Share" => "berbagi", +"Shared" => "Terbagi", +"Share" => "Bagi", "Error while sharing" => "gagal ketika membagikan", "Error while unsharing" => "gagal ketika membatalkan pembagian", "Error while changing permissions" => "gagal ketika merubah perijinan", @@ -45,6 +57,8 @@ "Share with link" => "bagikan dengan tautan", "Password protect" => "lindungi dengan kata kunci", "Password" => "Password", +"Email link to person" => "Email link ini ke orang", +"Send" => "Kirim", "Set expiration date" => "set tanggal kadaluarsa", "Expiration date" => "tanggal kadaluarsa", "Share via email:" => "berbagi memlalui surel:", @@ -61,9 +75,13 @@ "Password protected" => "dilindungi kata kunci", "Error unsetting expiration date" => "gagal melepas tanggal kadaluarsa", "Error setting expiration date" => "gagal memasang tanggal kadaluarsa", +"Sending ..." => "Sedang mengirim ...", +"Email sent" => "Email terkirim", +"The update was successful. Redirecting you to ownCloud now." => "Update sukses. Membawa anda ke ownCloud sekarang.", "ownCloud password reset" => "reset password ownCloud", "Use the following link to reset your password: {link}" => "Gunakan tautan berikut untuk mereset password anda: {link}", "You will receive a link to reset your password via Email." => "Anda akan mendapatkan link untuk mereset password anda lewat Email.", +"Request failed!" => "Permintaan gagal!", "Username" => "Username", "Request reset" => "Meminta reset", "Your password was reset" => "Password anda telah direset", @@ -100,6 +118,7 @@ "Lost your password?" => "Lupa password anda?", "remember" => "selalu login", "Log in" => "Masuk", +"Alternative Logins" => "Login dengan cara lain", "prev" => "sebelum", "next" => "selanjutnya" ); diff --git a/core/lostpassword/templates/lostpassword.php b/core/lostpassword/templates/lostpassword.php index 55c070f3e0cff518cf157fdf68d46d899d6cc44e..dc9f0bc8ad380b891df236caf3ffc8830ebd6fca 100644 --- a/core/lostpassword/templates/lostpassword.php +++ b/core/lostpassword/templates/lostpassword.php @@ -9,7 +9,7 @@ <?php endif; ?> <p class="infield"> <label for="user" class="infield"><?php echo $l->t( 'Username' ); ?></label> - <input type="text" name="user" id="user" value="" autocomplete="off" required autofocus /> + <input type="text" name="user" id="user" placeholder="" value="" autocomplete="off" required autofocus /> </p> <input type="submit" id="submit" value="<?php echo $l->t('Request reset'); ?>" /> <?php endif; ?> diff --git a/core/templates/error.php b/core/templates/error.php index 3305f3fba9c54f73c032ca4e2808aa7791fc10f2..ac91357b350e1f53a1bcadf72bf5ebfeac6fdb43 100644 --- a/core/templates/error.php +++ b/core/templates/error.php @@ -2,7 +2,7 @@ <?php foreach($_["errors"] as $error):?> <li class='error'> <?php p($error['error']) ?><br/> - <p class='hint'><?php if(isset($error['hint']))p($error['hint']) ?></p> + <p class='hint'><?php if(isset($error['hint']))print_unescaped($error['hint']) ?></p> </li> <?php endforeach ?> </ul> diff --git a/core/templates/installation.php b/core/templates/installation.php index 33b01853fb83b83cb2afbde4839ca3b33d334726..842686932c77f92947ea63b8c32a635027cc0539 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -36,13 +36,13 @@ <fieldset id="adminaccount"> <legend><?php print_unescaped($l->t( 'Create an <strong>admin account</strong>' )); ?></legend> <p class="infield grouptop"> - <input type="text" name="adminlogin" id="adminlogin" + <input type="text" name="adminlogin" id="adminlogin" placeholder="" value="<?php p(OC_Helper::init_var('adminlogin')); ?>" autocomplete="off" autofocus required /> <label for="adminlogin" class="infield"><?php p($l->t( 'Username' )); ?></label> <img class="svg" src="<?php p(image_path('', 'actions/user.svg')); ?>" alt="" /> </p> <p class="infield groupbottom"> - <input type="password" name="adminpass" data-typetoggle="#show" id="adminpass" + <input type="password" name="adminpass" data-typetoggle="#show" id="adminpass" placeholder="" value="<?php p(OC_Helper::init_var('adminpass')); ?>" /> <label for="adminpass" class="infield"><?php p($l->t( 'Password' )); ?></label> <img class="svg" id="adminpass-icon" src="<?php print_unescaped(image_path('', 'actions/password.svg')); ?>" alt="" /> @@ -127,17 +127,17 @@ <div id="use_other_db"> <p class="infield grouptop"> <label for="dbuser" class="infield"><?php p($l->t( 'Database user' )); ?></label> - <input type="text" name="dbuser" id="dbuser" + <input type="text" name="dbuser" id="dbuser" placeholder="" value="<?php p(OC_Helper::init_var('dbuser')); ?>" autocomplete="off" /> </p> <p class="infield groupmiddle"> <label for="dbpass" class="infield"><?php p($l->t( 'Database password' )); ?></label> - <input type="password" name="dbpass" id="dbpass" + <input type="password" name="dbpass" id="dbpass" placeholder="" value="<?php p(OC_Helper::init_var('dbpass')); ?>" /> </p> <p class="infield groupmiddle"> <label for="dbname" class="infield"><?php p($l->t( 'Database name' )); ?></label> - <input type="text" name="dbname" id="dbname" + <input type="text" name="dbname" id="dbname" placeholder="" value="<?php p(OC_Helper::init_var('dbname')); ?>" autocomplete="off" pattern="[0-9a-zA-Z$_-]+" /> </p> @@ -147,14 +147,14 @@ <div id="use_oracle_db"> <p class="infield groupmiddle"> <label for="dbtablespace" class="infield"><?php p($l->t( 'Database tablespace' )); ?></label> - <input type="text" name="dbtablespace" id="dbtablespace" + <input type="text" name="dbtablespace" id="dbtablespace" placeholder="" value="<?php p(OC_Helper::init_var('dbtablespace')); ?>" autocomplete="off" /> </p> </div> <?php endif; ?> <p class="infield groupbottom"> <label for="dbhost" class="infield" id="dbhostlabel"><?php p($l->t( 'Database host' )); ?></label> - <input type="text" name="dbhost" id="dbhost" + <input type="text" name="dbhost" id="dbhost" placeholder="" value="<?php p(OC_Helper::init_var('dbhost', 'localhost')); ?>" /> </p> </fieldset> diff --git a/core/templates/login.php b/core/templates/login.php index 463b951c80fa38e768ee2b466319233ed5f518d4..2c9884f52469f8963887493b9441aee1c7eade02 100644 --- a/core/templates/login.php +++ b/core/templates/login.php @@ -22,7 +22,7 @@ <?php endif; ?> </ul> <p class="infield grouptop"> - <input type="text" name="user" id="user" + <input type="text" name="user" id="user" placeholder="" value="<?php p($_['username']); ?>"<?php p($_['user_autofocus'] ? ' autofocus' : ''); ?> autocomplete="on" required/> <label for="user" class="infield"><?php p($l->t('Username')); ?></label> @@ -30,7 +30,7 @@ </p> <p class="infield groupbottom"> - <input type="password" name="password" id="password" value="" data-typetoggle="#show" + <input type="password" name="password" id="password" value="" data-typetoggle="#show" placeholder="" required<?php p($_['user_autofocus'] ? '' : ' autofocus'); ?> /> <label for="password" class="infield"><?php p($l->t('Password')); ?></label> <img class="svg" id="password-icon" src="<?php print_unescaped(image_path('', 'actions/password.svg')); ?>" alt=""/> diff --git a/l10n/af_ZA/files_trashbin.po b/l10n/af_ZA/files_trashbin.po index a79bcc39407dbcc779cbba06c38e8684aa4c8183..ab00b3efd96780ac1409f6633e0f35f2ff3409f5 100644 --- a/l10n/af_ZA/files_trashbin.po +++ b/l10n/af_ZA/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-21 00:14+0100\n" -"PO-Revision-Date: 2013-02-20 23:14+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -39,27 +39,27 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "" @@ -74,3 +74,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index 3f60e93c503a6a73788d1631a2a38c02b1a1f386..e15d676d00fd52bc8120a887f416c9e3cc924db3 100644 --- a/l10n/ar/files_trashbin.po +++ b/l10n/ar/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -39,27 +39,27 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "اسم" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "" @@ -74,3 +74,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "إلغاء" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/be/files_trashbin.po b/l10n/be/files_trashbin.po index 83bee5fbbdd98188ea752e7e501f7abec0617d06..79e1f2ab9e49b142891dd54e32c9f6d119b2cfae 100644 --- a/l10n/be/files_trashbin.po +++ b/l10n/be/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-21 00:14+0100\n" -"PO-Revision-Date: 2013-02-20 23:14+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -39,27 +39,27 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "" @@ -74,3 +74,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index 74c3889ddf85606905505de78ab6dc8d0d4f647b..794a8d34f60e021c87c0686efe31c4ea70545773 100644 --- a/l10n/bg_BG/files_trashbin.po +++ b/l10n/bg_BG/files_trashbin.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 16:00+0000\n" -"Last-Translator: Kiril <neohidra@gmail.com>\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -76,3 +76,7 @@ msgstr "Възтановяване" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "Изтриване" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/bn_BD/files_trashbin.po b/l10n/bn_BD/files_trashbin.po index d6a3063e74d923efbefd5b80736d193c7fe9e8cd..d4cfe626a62b961a19c02223c2495e08d1f33160 100644 --- a/l10n/bn_BD/files_trashbin.po +++ b/l10n/bn_BD/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -39,27 +39,27 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "রাম" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "১টি ফোল্ডার" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "{count} টি ফোল্ডার" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "১টি ফাইল" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "{count} টি ফাইল" @@ -74,3 +74,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "মুছে" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index 616424f0f79c440a4100b65535ccd614783d8683..cc147c1f7ffa0d9680bfe3ec9ef9d56749bae234 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -40,27 +40,27 @@ msgstr "esborra el fitxer permanentment" msgid "Delete permanently" msgstr "Esborra permanentment" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "Nom" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "Eliminat" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "1 carpeta" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "{count} carpetes" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "1 fitxer" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "{count} fitxers" @@ -75,3 +75,7 @@ msgstr "Recupera" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "Esborra" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index ccb6c7fa431ff1c40331d07e44a02005eca7c692..5aaad214447a06cb81dda987aae4124e8e907d94 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-03-05 00:18+0100\n" +"PO-Revision-Date: 2013-03-04 07:30+0000\n" +"Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -281,7 +281,7 @@ msgstr "Zrušit odesílání" #: templates/index.php:53 msgid "You don’t have write permissions here." -msgstr "" +msgstr "Nemáte zde práva zápisu." #: templates/index.php:60 msgid "Nothing in here. Upload something!" diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index 49cec94198c76609fb07a4fd9cb44a30a164b3f7..95843b88dec8d1a3e9ee2d8c784ebb321ed674f0 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -40,27 +40,27 @@ msgstr "trvale odstranit soubor" msgid "Delete permanently" msgstr "Trvale odstranit" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "Název" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "Smazáno" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "1 složka" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "{count} složky" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "1 soubor" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "{count} soubory" @@ -75,3 +75,7 @@ msgstr "Obnovit" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "Smazat" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index a1d1984547eb3b150d7c710ead3b75a41cf4525b..cd9f8f378273f8666c84613523ecca1e73ddb7c1 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-03-05 00:18+0100\n" +"PO-Revision-Date: 2013-03-04 12:20+0000\n" +"Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,7 +21,7 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "Selhalo smazání konfigurace serveru" +msgstr "Selhalo smazání nastavení serveru" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" @@ -238,7 +238,7 @@ msgstr "Není doporučeno, pouze pro testovací účely." #: templates/settings.php:65 msgid "Cache Time-To-Live" -msgstr "" +msgstr "TTL vyrovnávací paměti" #: templates/settings.php:65 msgid "in seconds. A change empties the cache." @@ -302,11 +302,11 @@ msgstr "Speciální atributy" #: templates/settings.php:79 msgid "Quota Field" -msgstr "" +msgstr "Pole pro kvótu" #: templates/settings.php:80 msgid "Quota Default" -msgstr "" +msgstr "Výchozí kvóta" #: templates/settings.php:80 msgid "in bytes" @@ -314,11 +314,11 @@ msgstr "v bajtech" #: templates/settings.php:81 msgid "Email Field" -msgstr "" +msgstr "Pole e-mailu" #: templates/settings.php:82 msgid "User Home Folder Naming Rule" -msgstr "" +msgstr "Pravidlo pojmenování domovské složky uživatele" #: templates/settings.php:82 msgid "" @@ -328,7 +328,7 @@ msgstr "Ponechte prázdné pro uživatelské jméno (výchozí). Jinak uveďte L #: templates/settings.php:86 msgid "Test Configuration" -msgstr "" +msgstr "Vyzkoušet nastavení" #: templates/settings.php:86 msgid "Help" diff --git a/l10n/da/files.po b/l10n/da/files.po index 637f4779fb98574c577f091e8e6b717e4ed77362..7d64d326b93d1e8788d65168ed1dafd5da0f70b0 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -10,15 +10,16 @@ # <osos@openeyes.dk>, 2012. # Pascal d'Hermilly <pascal@dhermilly.dk>, 2011. # <simon@rosmi.dk>, 2012. +# Thomas <cronner@gmail.com>, 2013. # Thomas Tanghus <>, 2012. # Thomas Tanghus <thomas@tanghus.net>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-03-05 00:18+0100\n" +"PO-Revision-Date: 2013-03-04 18:10+0000\n" +"Last-Translator: cronner <cronner@gmail.com>\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" @@ -279,7 +280,7 @@ msgstr "Fra link" #: templates/index.php:40 msgid "Deleted files" -msgstr "" +msgstr "Slettede filer" #: templates/index.php:46 msgid "Cancel upload" @@ -287,7 +288,7 @@ msgstr "Fortryd upload" #: templates/index.php:53 msgid "You don’t have write permissions here." -msgstr "" +msgstr "Du har ikke skriverettigheder her." #: templates/index.php:60 msgid "Nothing in here. Upload something!" diff --git a/l10n/da/files_trashbin.po b/l10n/da/files_trashbin.po index 0c0c7a71eb369998b493864416dc7b5c88208d3c..4c32d1c2f550b552857cbb44d0f3342d2ba67dbb 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -40,27 +40,27 @@ msgstr "slet fil permanent" msgid "Delete permanently" msgstr "Slet permanent" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "Navn" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "Slettet" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "1 mappe" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "{count} mapper" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "1 fil" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "{count} filer" @@ -75,3 +75,7 @@ msgstr "Gendan" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "Slet" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/da/files_versions.po b/l10n/da/files_versions.po index 00cf12aa11579300451c66eab7b62019426fb40b..6b6ab2ac91f3c355a8d2171d5c7b81289c13c6f6 100644 --- a/l10n/da/files_versions.po +++ b/l10n/da/files_versions.po @@ -6,13 +6,14 @@ # Frederik Lassen <frederiklassen@gmail.com>, 2013. # Morten Juhl-Johansen Zölde-Fejér <morten@writtenandread.net>, 2012. # <osos@openeyes.dk>, 2012. +# Thomas <cronner@gmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-03-05 00:18+0100\n" +"PO-Revision-Date: 2013-03-04 18:20+0000\n" +"Last-Translator: cronner <cronner@gmail.com>\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" @@ -43,17 +44,17 @@ msgstr "fejl" msgid "File %s could not be reverted to version %s" msgstr "Filen %s blev genskabt til version: %s" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "Ingen gamle version tilgængelige" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "Ingen sti specificeret" #: js/versions.js:6 msgid "Versions" -msgstr "" +msgstr "Versioner" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index e541159bed1cda96943158e917902e0b4d6afd81..a8476f00b378838d409eea48ccd93bb432fca1e2 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -7,13 +7,14 @@ # Frederik Lassen <frederiklassen@gmail.com>, 2013. # Morten Juhl-Johansen Zölde-Fejér <morten@writtenandread.net>, 2012-2013. # <osos@openeyes.dk>, 2012. +# Thomas <cronner@gmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-03-05 00:18+0100\n" +"PO-Revision-Date: 2013-03-04 18:10+0000\n" +"Last-Translator: cronner <cronner@gmail.com>\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" @@ -178,7 +179,7 @@ msgstr "Fejlende kommando var: \"%s\", navn: %s, password: %s" #: setup.php:631 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "" +msgstr "MS SQL brugernavn og/eller adgangskode ikke er gyldigt: %s" #: setup.php:849 msgid "" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index a70828aa5eaf761503fa7137af00c4d3890a0041..57f9c33b59981a105d86ccd4efd70d60c1d8640a 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -7,20 +7,21 @@ # Frederik Lassen <frederiklassen@gmail.com>, 2013. # <icewind1991@gmail.com>, 2012. # <mikkelbjerglarsen@gmail.com>, 2011. -# Morten Juhl-Johansen Zölde-Fejér <morten@writtenandread.net>, 2011-2012. +# Morten Juhl-Johansen Zölde-Fejér <morten@writtenandread.net>, 2011-2013. # Ole Holm Frandsen <froksen@gmail.com>, 2012. # Pascal d'Hermilly <pascal@dhermilly.dk>, 2011. # <simon@rosmi.dk>, 2012. # <sr@ybnet.dk>, 2012-2013. +# Thomas <cronner@gmail.com>, 2013. # Thomas Tanghus <>, 2012. # Thomas Tanghus <thomas@tanghus.net>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-03-07 00:16+0100\n" +"PO-Revision-Date: 2013-03-06 11:50+0000\n" +"Last-Translator: Morten Juhl-Johansen Zölde-Fejér <morten@writtenandread.net>\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" @@ -141,7 +142,7 @@ msgstr "fortryd" #: js/users.js:62 msgid "Unable to remove user" -msgstr "" +msgstr "Kan ikke fjerne bruger" #: js/users.js:75 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 @@ -158,19 +159,19 @@ msgstr "Slet" #: js/users.js:191 msgid "add group" -msgstr "" +msgstr "Tilføj gruppe" #: js/users.js:352 msgid "A valid username must be provided" -msgstr "" +msgstr "Et gyldigt brugernavn skal angives" #: js/users.js:353 js/users.js:359 js/users.js:374 msgid "Error creating user" -msgstr "" +msgstr "Fejl ved oprettelse af bruger" #: js/users.js:358 msgid "A valid password must be provided" -msgstr "" +msgstr "En gyldig adgangskode skal angives" #: personal.php:29 personal.php:30 msgid "__language_name__" @@ -191,7 +192,7 @@ msgstr "Din data mappe og dine filer er muligvis tilgængelige fra internettet. #: templates/admin.php:29 msgid "Setup Warning" -msgstr "" +msgstr "Opsætnings Advarsel" #: templates/admin.php:32 msgid "" @@ -206,17 +207,17 @@ msgstr "Dobbelttjek venligst <a href='%s'>installations vejledningerne</a>." #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "" +msgstr "Module 'fileinfo' mangler" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "" +msgstr "PHP modulet 'fileinfo' mangler. Vi anbefaler stærkt at aktivere dette modul til at få de bedste resultater med mime-type detektion." #: templates/admin.php:58 msgid "Locale not working" -msgstr "" +msgstr "Landestandard fungerer ikke" #: templates/admin.php:63 #, php-format @@ -224,11 +225,11 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "" +msgstr "Denne ownCloud server kan ikke indstille systemets landestandard for %s. Det betyder, at der kan være problemer med visse tegn i filnavne. Vi anbefaler kraftigt, at installere de nødvendige pakker på dit system til at understøtte %s." #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "" +msgstr "Internetforbindelse fungerer ikke" #: templates/admin.php:78 msgid "" @@ -238,90 +239,90 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "" +msgstr "Denne ownCloud-server har ikke en fungerende forbindelse til internettet. Det betyder, at visse funktioner som montering af eksterne drev, oplysninger om opdatering eller installation af eksterne applikationer ikke fungerer. Det vil sandsynligvis heller ikke fungere at tilgå filer fra eksterne drev eller informationsemails. Vi opfordrer til at etablere forbindelse til internettet for denne server, såfremt du ønsker alle ownClouds funktioner." #: templates/admin.php:92 msgid "Cron" -msgstr "" +msgstr "Cron" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Udføre en opgave med hver side indlæst" #: templates/admin.php:111 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "" +msgstr "cron.php er registreret hos en webcron service. Kald cron.php side i owncloud rod en gang i minuttet over HTTP." #: templates/admin.php:121 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "Brug system cron service. Kald cron.php filen i owncloud mappe via et system cronjob en gang i minuttet." #: templates/admin.php:128 msgid "Sharing" -msgstr "" +msgstr "Deling" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "" +msgstr "Aktiver Share API" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Tillad apps til at bruge Share API" #: templates/admin.php:142 msgid "Allow links" -msgstr "" +msgstr "Tillad links" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Tillad brugere at dele elementer til offentligheden med links" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "" +msgstr "Tillad videredeling" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "Tillad brugere at dele elementer delt med dem igen" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Tillad brugere at dele med alle" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Tillad brugere at kun dele med brugerne i deres grupper" #: templates/admin.php:168 msgid "Security" -msgstr "" +msgstr "Sikkerhed" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "" +msgstr "Gennemtving HTTPS" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "" +msgstr "Håndhæver klienter at oprette forbindelse til ownCloud via en krypteret forbindelse." #: templates/admin.php:185 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "" +msgstr "Opret forbindelse til denne ownCloud enhed via HTTPS for at aktivere eller deaktivere SSL håndhævelse." #: templates/admin.php:195 msgid "Log" -msgstr "" +msgstr "Log" #: templates/admin.php:196 msgid "Log level" -msgstr "" +msgstr "Log niveau" #: templates/admin.php:223 msgid "More" diff --git a/l10n/de/files.po b/l10n/de/files.po index 423becbecde5c8fe09e7df83254b9c781b41e120..12c0a5d450438b6ecce1b7ff686e2b0125c6bcc7 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -28,8 +28,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-03-05 00:18+0100\n" +"PO-Revision-Date: 2013-03-04 13:20+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" @@ -299,7 +299,7 @@ msgstr "Upload abbrechen" #: templates/index.php:53 msgid "You don’t have write permissions here." -msgstr "" +msgstr "Du besitzt hier keine Schreib-Berechtigung." #: templates/index.php:60 msgid "Nothing in here. Upload something!" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index 4d4dac598fbc0dc4ccec351044648831286c6674..ceb8a6faea1a5724564edcbcc8e4e2afef538830 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" @@ -43,27 +43,27 @@ msgstr "Datei dauerhaft löschen" msgid "Delete permanently" msgstr "Permanent löschen" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "Name" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "gelöscht" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "1 Ordner" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "{count} Ordner" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "1 Datei" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "{count} Dateien" @@ -78,3 +78,7 @@ msgstr "Wiederherstellen" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "Löschen" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index f6bec1d9e43d31e5373e2b5840d2e30e8e72e6df..0b1891ce18210995cb2c72d68768b6ca9d74d8f9 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -33,9 +33,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-03-06 00:07+0100\n" +"PO-Revision-Date: 2013-03-05 21:30+0000\n" +"Last-Translator: a.tangemann <a.tangemann@web.de>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -304,7 +304,7 @@ msgstr "Upload abbrechen" #: templates/index.php:53 msgid "You don’t have write permissions here." -msgstr "" +msgstr "Sie haben hier keine Schreib-Berechtigungen." #: templates/index.php:60 msgid "Nothing in here. Upload something!" diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index 49517df9cc4d663b94756d7b3e24f169deaf3e63..aaa3056fbb6dc94b4420d56d0e71003cd0500690 100644 --- a/l10n/de_DE/files_external.po +++ b/l10n/de_DE/files_external.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-28 10:30+0000\n" -"Last-Translator: stefanniedermann <stefan.niedermann@googlemail.com>\n" +"POT-Creation-Date: 2013-03-06 00:07+0100\n" +"PO-Revision-Date: 2013-03-05 21:25+0000\n" +"Last-Translator: a.tangemann <a.tangemann@web.de>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index c07b5d37fdd800d40aefe467f2bc513bfac925f3..447c37a5ed12a3d7a3483280071fdf39044ba866 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-23 00:04+0100\n" -"PO-Revision-Date: 2013-02-22 23:00+0000\n" -"Last-Translator: a.tangemann <a.tangemann@web.de>\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -46,27 +46,27 @@ msgstr "Datei dauerhaft löschen" msgid "Delete permanently" msgstr "Endgültig löschen" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "Name" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "Gelöscht" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "1 Ordner" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "{count} Ordner" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "1 Datei" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "{count} Dateien" @@ -81,3 +81,7 @@ msgstr "Wiederherstellen" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "Löschen" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/de_DE/files_versions.po b/l10n/de_DE/files_versions.po index 38f4c1b5534ffe9f822ad005f5ce80ca75b47862..67694eac279c4cbd5909d1b960632af2fff8ea56 100644 --- a/l10n/de_DE/files_versions.po +++ b/l10n/de_DE/files_versions.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-28 10:20+0000\n" -"Last-Translator: stefanniedermann <stefan.niedermann@googlemail.com>\n" +"POT-Creation-Date: 2013-03-06 00:07+0100\n" +"PO-Revision-Date: 2013-03-05 21:26+0000\n" +"Last-Translator: a.tangemann <a.tangemann@web.de>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -49,11 +49,11 @@ msgstr "Fehlgeschlagen" msgid "File %s could not be reverted to version %s" msgstr "Die Datei %s konnte nicht zur Version %s zurückgesetzt werden" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "Keine älteren Versionen verfügbar" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "Kein Pfad angegeben" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index 9dc9d840f2a03e2b6a7f886ecd0bbb9676514ada..f6f092bc77e216fe7cb97affb1ffe40fa6e3a101 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-28 10:30+0000\n" -"Last-Translator: stefanniedermann <stefan.niedermann@googlemail.com>\n" +"POT-Creation-Date: 2013-03-06 00:07+0100\n" +"PO-Revision-Date: 2013-03-05 21:30+0000\n" +"Last-Translator: a.tangemann <a.tangemann@web.de>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -185,7 +185,7 @@ msgstr "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s" #: setup.php:631 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "MS SQL Benutzername und/oder Passwort nicht valide: %s" +msgstr "MS SQL Benutzername und/oder Passwort ungültig: %s" #: setup.php:849 msgid "" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 40f04d32f8a1de2639331320c50ef42660aa69a1..dada42976f105607b930b4f869891350e4cbf9ae 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -4,6 +4,7 @@ # # Translators: # <admin@s-goecker.de>, 2011-2012. +# Andreas Tangemann <a.tangemann@web.de>, 2013. # <blobbyjj@ymail.com>, 2012. # <icewind1991@gmail.com>, 2012. # I Robot <owncloud-bot@tmit.eu>, 2012-2013. @@ -30,9 +31,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-28 10:20+0000\n" -"Last-Translator: stefanniedermann <stefan.niedermann@googlemail.com>\n" +"POT-Creation-Date: 2013-03-06 00:07+0100\n" +"PO-Revision-Date: 2013-03-05 21:30+0000\n" +"Last-Translator: a.tangemann <a.tangemann@web.de>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -236,7 +237,7 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "Dieser ownCloud Server kann die Ländereinstellung nicht auf %s ändern. Dies bedeutet dass es Probleme mit bestimmten Zeichen in Dateinamen geben könnte. Wir empfehlen die für %s benötigten Pakete auf ihrem System zu installieren." +msgstr "Dieser ownCloud Server kann die Ländereinstellung nicht auf %s ändern. Dies bedeutet, dass es Probleme mit bestimmten Zeichen in Dateinamen geben könnte. Wir empfehlen, die für %s benötigten Pakete auf ihrem System zu installieren." #: templates/admin.php:75 msgid "Internet connection not working" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index 4d2ec8814ee9af6851bce80682df0daefdc73548..c3bbb56e7172b660a0a13b807c2472a41fae3ba3 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -20,9 +20,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-03-06 00:07+0100\n" +"PO-Revision-Date: 2013-03-05 21:40+0000\n" +"Last-Translator: a.tangemann <a.tangemann@web.de>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -249,7 +249,7 @@ msgstr "Nicht empfohlen, nur zu Testzwecken." #: templates/settings.php:65 msgid "Cache Time-To-Live" -msgstr "" +msgstr "Speichere Time-To-Live zwischen" #: templates/settings.php:65 msgid "in seconds. A change empties the cache." @@ -313,11 +313,11 @@ msgstr "Besondere Eigenschaften" #: templates/settings.php:79 msgid "Quota Field" -msgstr "" +msgstr "Kontingent Feld" #: templates/settings.php:80 msgid "Quota Default" -msgstr "" +msgstr "Kontingent Standard" #: templates/settings.php:80 msgid "in bytes" @@ -325,11 +325,11 @@ msgstr "in Bytes" #: templates/settings.php:81 msgid "Email Field" -msgstr "" +msgstr "E-Mail Feld" #: templates/settings.php:82 msgid "User Home Folder Naming Rule" -msgstr "" +msgstr "Benennungsregel für das Heimatverzeichnis des Benutzers" #: templates/settings.php:82 msgid "" @@ -339,7 +339,7 @@ msgstr "Ohne Eingabe wird der Benutzername (Standard) verwendet. Anderenfall tra #: templates/settings.php:86 msgid "Test Configuration" -msgstr "" +msgstr "Testkonfiguration" #: templates/settings.php:86 msgid "Help" diff --git a/l10n/el/files_trashbin.po b/l10n/el/files_trashbin.po index 3976247d3e6444a2eb4119db322965927c51b6ed..e47d9c1615725a1c3dad10770a34e0fac91cc3ae 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -40,27 +40,27 @@ msgstr "μόνιμη διαγραφή αρχείου" msgid "Delete permanently" msgstr "Μόνιμη διαγραφή" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "Όνομα" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "Διαγράφηκε" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "1 φάκελος" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "{count} φάκελοι" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "1 αρχείο" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "{count} αρχεία" @@ -75,3 +75,7 @@ msgstr "Επαναφορά" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "Διαγραφή" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/eo/files_trashbin.po b/l10n/eo/files_trashbin.po index 54c8bebce857e8c47f157dc17e4a9cfe9c24d631..783a5f733f9e15a1ddc70380aacdaaf0fecb4a74 100644 --- a/l10n/eo/files_trashbin.po +++ b/l10n/eo/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -39,27 +39,27 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "Nomo" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "1 dosierujo" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "{count} dosierujoj" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "1 dosiero" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "{count} dosierujoj" @@ -74,3 +74,7 @@ msgstr "Restaŭri" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "Forigi" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/es/files.po b/l10n/es/files.po index 09f0eb978b27b5c2c20cfeebeaa79b0126f9061c..8de6b03bbbe245c52269e382cdcd35243b359097 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -12,6 +12,7 @@ # <karvayoEdgar@gmail.com>, 2013. # Ricardo A. Hermosilla Carrillo <ra.hermosillac@gmail.com>, 2013. # Rubén Trujillo <rubentrf@gmail.com>, 2012. +# <sergioballesterossolanas@gmail.com>, 2013. # <sergioballesterossolanas@gmail.com>, 2011-2012. # <sergio@entrecables.com>, 2012. # Vladimir Martinez Sierra <vladimirmartinezsierra@gmail.com>, 2013. @@ -19,9 +20,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-03-07 00:16+0100\n" +"PO-Revision-Date: 2013-03-06 15:12+0000\n" +"Last-Translator: xsergiolpx <sergioballesterossolanas@gmail.com>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -290,7 +291,7 @@ msgstr "Cancelar subida" #: templates/index.php:53 msgid "You don’t have write permissions here." -msgstr "" +msgstr "No tienes permisos para escribir aquí." #: templates/index.php:60 msgid "Nothing in here. Upload something!" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index 25c844232576f866e3beb3fd411f6b84d7ec6891..c0b5a2c7ec0347ea12677b547587519969bda8cb 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -40,27 +40,27 @@ msgstr "Eliminar archivo permanentemente" msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "Nombre" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "Eliminado" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "1 carpeta" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "{count} carpetas" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "1 archivo" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "{count} archivos" @@ -75,3 +75,7 @@ msgstr "Recuperar" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "Eliminar" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index e9a792bc62a409d0edf28290d84c061fc73658f7..be0e253e524a8cb6b4468f5801adf6f6b553c19f 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -7,7 +7,7 @@ # Javier Llorente <javier@opensuse.org>, 2012. # <juanma@kde.org.ar>, 2012. # <manudeloz86@gmail.com>, 2012. -# Raul Fernandez Garcia <raulfg3@gmail.com>, 2012. +# Raul Fernandez Garcia <raulfg3@gmail.com>, 2012-2013. # Rubén Trujillo <rubentrf@gmail.com>, 2012. # <sergioballesterossolanas@gmail.com>, 2012. # Vladimir Martinez Sierra <vladimirmartinezsierra@gmail.com>, 2013. @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-03-07 00:16+0100\n" +"PO-Revision-Date: 2013-03-06 21:20+0000\n" +"Last-Translator: Raul Fernandez Garcia <raulfg3@gmail.com>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -94,248 +94,248 @@ msgstr "<b>Advertencia:</b> El módulo LDAP de PHP no está instalado, el sistem msgid "Server configuration" msgstr "Configuración del Servidor" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "Agregar configuracion del servidor" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" -msgstr "Máquina" +msgstr "Servidor" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Puede omitir el protocolo, excepto si requiere SSL. En ese caso, empiece con ldaps://" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "DN base" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "Un DN Base por línea" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Puede especificar el DN base para usuarios y grupos en la pestaña Avanzado" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "DN usuario" -#: templates/settings.php:32 +#: templates/settings.php:45 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 "El DN del usuario cliente con el que se hará la asociación, p.ej. uid=agente,dc=ejemplo,dc=com. Para acceso anónimo, deje DN y contraseña vacíos." -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "Contraseña" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "Para acceso anónimo, deje DN y contraseña vacíos." -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "Filtro de inicio de sesión de usuario" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "Define el filtro a aplicar cuando se ha realizado un login. %%uid remplazrá el nombre de usuario en el proceso de login." -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "usar %%uid como placeholder, ej: \"uid=%%uid\"" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "Lista de filtros de usuario" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "Define el filtro a aplicar, cuando se obtienen usuarios." -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "Sin placeholder, ej: \"objectClass=person\"." -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "Filtro de grupo" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "Define el filtro a aplicar, cuando se obtienen grupos." -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "Con cualquier placeholder, ej: \"objectClass=posixGroup\"." -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "Configuracion de coneccion" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "Configuracion activa" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "Cuando deseleccione, esta configuracion sera omitida." -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "Puerto" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "Host para backup (Replica)" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "Dar un host de copia de seguridad opcional. Debe ser una réplica del servidor principal LDAP / AD." -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "Puerto para backup (Replica)" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "Deshabilitar servidor principal" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "Cuando se inicie, ownCloud unicamente estara conectado al servidor replica" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "Usar TLS" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "No usar adicionalmente para conecciones LDAPS, estas fallaran" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "Servidor de LDAP sensible a mayúsculas/minúsculas (Windows)" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "Apagar la validación por certificado SSL." -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "Si la conexión sólo funciona con esta opción, importe el certificado SSL del servidor LDAP en su servidor ownCloud." -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "No recomendado, sólo para pruebas." -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" -msgstr "" +msgstr "Cache TTL" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "en segundos. Un cambio vacía la cache." -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "Configuracion de directorio" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "Campo de nombre de usuario a mostrar" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "El atributo LDAP a usar para generar el nombre de usuario de ownCloud." -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "Árbol base de usuario" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "Un DN Base de Usuario por línea" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "Atributos de la busqueda de usuario" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "Opcional; un atributo por linea" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "Campo de nombre de grupo a mostrar" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "El atributo LDAP a usar para generar el nombre de los grupos de ownCloud." -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "Árbol base de grupo" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "Un DN Base de Grupo por línea" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "Atributos de busqueda de grupo" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "Asociación Grupo-Miembro" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "Atributos especiales" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" -msgstr "" +msgstr "Cuota" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" -msgstr "" +msgstr "Cuota por defecto" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "en bytes" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" -msgstr "" +msgstr "E-mail" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Vacío para el nombre de usuario (por defecto). En otro caso, especifique un atributo LDAP/AD." -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" -msgstr "" +msgstr "Configuración de prueba" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "Ayuda" diff --git a/l10n/es_AR/files_trashbin.po b/l10n/es_AR/files_trashbin.po index a539d4424ec9dfe2cd334d22a270143440f459b5..ad68177e2e7379626ab56160fffc6af17b5c2418 100644 --- a/l10n/es_AR/files_trashbin.po +++ b/l10n/es_AR/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -40,27 +40,27 @@ msgstr "Borrar archivo de manera permanente" msgid "Delete permanently" msgstr "Borrar de manera permanente" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "Nombre" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "Borrado" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "1 directorio" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "{count} directorios" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "1 archivo" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "{count} archivos" @@ -75,3 +75,7 @@ msgstr "Recuperar" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "Borrar" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index 77281fb6fd6b17fb66f7b8336fc9950ca1bf437c..33291a6ce4448ed5f78892dc6e4d0f5a46d51c65 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -40,27 +40,27 @@ msgstr "kustuta fail jäädavalt" msgid "Delete permanently" msgstr "Kustuta jäädavalt" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "Nimi" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "Kustutatud" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "1 kaust" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "{count} kausta" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "1 fail" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "{count} faili" @@ -75,3 +75,7 @@ msgstr "Taasta" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "Kustuta" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/eu/files_trashbin.po b/l10n/eu/files_trashbin.po index b9a97c88fe958e3f6648bb76e5ee0e43cbec0c74..1e340f1ca10a76c346066738cf782ad93e180548 100644 --- a/l10n/eu/files_trashbin.po +++ b/l10n/eu/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -40,27 +40,27 @@ msgstr "ezabatu fitxategia betirako" msgid "Delete permanently" msgstr "Ezabatu betirako" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "Izena" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "Ezabatuta" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "karpeta bat" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "{count} karpeta" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "fitxategi bat" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "{count} fitxategi" @@ -75,3 +75,7 @@ msgstr "Berrezarri" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "Ezabatu" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/fa/files_trashbin.po b/l10n/fa/files_trashbin.po index 962fcc1a0a4ceec43637d671271e68e1ff2019b2..8a62df4a881051a7c19e3b5e2a21860f90ba359d 100644 --- a/l10n/fa/files_trashbin.po +++ b/l10n/fa/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -39,27 +39,27 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "نام" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "1 پوشه" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "{ شمار} پوشه ها" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "1 پرونده" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "{ شمار } فایل ها" @@ -74,3 +74,7 @@ msgstr "بازیابی" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "حذف" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 2f647994415ecd39dda95c0474df4d1db5291b92..269b36235008fa99f90d63c6d2ec2dc626cdb732 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Amir Reza Asadi <amirreza.asadi@live.com>, 2013. # <basir.jafarzadeh@gmail.com>, 2012. # Hossein nag <h.sname@yahoo.com>, 2012. # mahdi Kereshteh <miki_mika1362@yahoo.com>, 2013. @@ -12,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-03-05 00:18+0100\n" +"PO-Revision-Date: 2013-03-04 16:30+0000\n" +"Last-Translator: Amir Reza Asadi <amirreza.asadi@live.com>\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" @@ -152,7 +153,7 @@ msgstr "پاک کردن" #: js/users.js:191 msgid "add group" -msgstr "" +msgstr "افزودن گروه" #: js/users.js:352 msgid "A valid username must be provided" @@ -160,7 +161,7 @@ msgstr "" #: js/users.js:353 js/users.js:359 js/users.js:374 msgid "Error creating user" -msgstr "" +msgstr "خطا در ایجاد کاربر" #: js/users.js:358 msgid "A valid password must be provided" @@ -185,7 +186,7 @@ msgstr "" #: templates/admin.php:29 msgid "Setup Warning" -msgstr "" +msgstr "هشدار راه اندازی" #: templates/admin.php:32 msgid "" @@ -222,7 +223,7 @@ msgstr "" #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "" +msgstr "اتصال اینترنت کار نمی کند" #: templates/admin.php:78 msgid "" @@ -256,7 +257,7 @@ msgstr "" #: templates/admin.php:128 msgid "Sharing" -msgstr "" +msgstr "اشتراک گذاری" #: templates/admin.php:134 msgid "Enable Share API" @@ -272,7 +273,7 @@ msgstr "" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "اجازه دادن به کاربران برای اشتراک گذاری آیتم ها با عموم از طریق پیوند ها" #: templates/admin.php:150 msgid "Allow resharing" @@ -292,7 +293,7 @@ msgstr "" #: templates/admin.php:168 msgid "Security" -msgstr "" +msgstr "امنیت" #: templates/admin.php:181 msgid "Enforce HTTPS" @@ -369,7 +370,7 @@ msgstr "مستندات مدیر" #: templates/help.php:9 msgid "Online Documentation" -msgstr "" +msgstr "مستندات آنلاین" #: templates/help.php:11 msgid "Forum" @@ -377,7 +378,7 @@ msgstr "انجمن" #: templates/help.php:14 msgid "Bugtracker" -msgstr "" +msgstr "ردیاب باگ " #: templates/help.php:17 msgid "Commercial Support" diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index 749b49636c74f0435109632aff87bc70777b323f..482678d9c7152448cdb7708e8932e8890e1251b5 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -40,27 +40,27 @@ msgstr "poista tiedosto pysyvästi" msgid "Delete permanently" msgstr "Poista pysyvästi" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "Nimi" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "Poistettu" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "1 kansio" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "{count} kansiota" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "1 tiedosto" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "{count} tiedostoa" @@ -75,3 +75,7 @@ msgstr "Palauta" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "Poista" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/fr/files_trashbin.po b/l10n/fr/files_trashbin.po index 38e193af759165b016feaf6031bd6d3b3ef8ac28..4b183165c73c00114ce0a1430201b186c9b7114f 100644 --- a/l10n/fr/files_trashbin.po +++ b/l10n/fr/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -41,27 +41,27 @@ msgstr "effacer définitivement le fichier" msgid "Delete permanently" msgstr "Supprimer de façon définitive" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "Nom" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "Effacé" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "1 dossier" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "{count} dossiers" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "1 fichier" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "{count} fichiers" @@ -76,3 +76,7 @@ msgstr "Restaurer" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "Supprimer" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/gl/files_trashbin.po b/l10n/gl/files_trashbin.po index 4ea502436cf3cc9b94b33a62943f6c143db91769..6f1595820d3a3c90db68942c48e8692e5fabdb51 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -40,27 +40,27 @@ msgstr "eliminar o ficheiro permanentemente" msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "Nome" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "Eliminado" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "1 cartafol" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "{count} cartafoles" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "1 ficheiro" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "{count} ficheiros" @@ -75,3 +75,7 @@ msgstr "Restablecer" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "Eliminar" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/he/files_trashbin.po b/l10n/he/files_trashbin.po index 0f5b6dca9e8b53698eb68059b33efe9cdf13422d..b60aec2b9c29f890c4346a31ddb220cd96060994 100644 --- a/l10n/he/files_trashbin.po +++ b/l10n/he/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-25 00:05+0100\n" -"PO-Revision-Date: 2013-02-24 12:30+0000\n" -"Last-Translator: Gilad Naaman <gilad.doom@gmail.com>\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,27 +40,27 @@ msgstr "מחק קובץ לצמיתות" msgid "Delete permanently" msgstr "מחק לצמיתות" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "שם" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "נמחק" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "תיקייה אחת" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "{count} תיקיות" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "קובץ אחד" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "{count} קבצים" @@ -75,3 +75,7 @@ msgstr "שחזר" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "מחיקה" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/hi/files_trashbin.po b/l10n/hi/files_trashbin.po index 2f956fdfd702d3d2be86decc0c34faa3828c2b50..e0e86d2f8e1db36253a0521913063778663141dc 100644 --- a/l10n/hi/files_trashbin.po +++ b/l10n/hi/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-21 00:14+0100\n" -"PO-Revision-Date: 2013-02-20 23:14+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -39,27 +39,27 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "" @@ -74,3 +74,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/hr/files_trashbin.po b/l10n/hr/files_trashbin.po index 30fa8bb0b29e697a1384ec8685dd0b93fb648ea1..4be5c7a6f5a3387b85f86df790467ae43fefa2fc 100644 --- a/l10n/hr/files_trashbin.po +++ b/l10n/hr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -39,27 +39,27 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "Ime" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "" @@ -74,3 +74,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "Obriši" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/hu_HU/files_trashbin.po b/l10n/hu_HU/files_trashbin.po index 77f4f58eadcbd29630d1b012c3957021d836af89..3496d44486bd6a1aceaee45ce6152ced1e60a85e 100644 --- a/l10n/hu_HU/files_trashbin.po +++ b/l10n/hu_HU/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -40,27 +40,27 @@ msgstr "az állomány végleges törlése" msgid "Delete permanently" msgstr "Végleges törlés" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "Név" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "Törölve" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "1 mappa" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "{count} mappa" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "1 fájl" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "{count} fájl" @@ -75,3 +75,7 @@ msgstr "Visszaállítás" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "Törlés" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/hy/files_trashbin.po b/l10n/hy/files_trashbin.po index 79b83d2bb2f8e659770ee8f7892931fa0fa9d37b..b04c3cb98c48dd76cfe7fe62eec1417ec51fc8cd 100644 --- a/l10n/hy/files_trashbin.po +++ b/l10n/hy/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 16:03+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -39,27 +39,27 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "" @@ -74,3 +74,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "Ջնջել" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/ia/files_trashbin.po b/l10n/ia/files_trashbin.po index 5c26542ab60a5181ca22dad0f30675e1b1871471..8f143679d149fdde995b4b087eef6c4add5de10b 100644 --- a/l10n/ia/files_trashbin.po +++ b/l10n/ia/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -39,27 +39,27 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "Nomine" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "" @@ -74,3 +74,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "Deler" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/id/core.po b/l10n/id/core.po index c88257c6bd0df8603e037f18dc5ac8d02f769bcc..181a4aff126287f349ab23334cdc2727aca12a3d 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# <evanlimanto@gmail.com>, 2013. # <mr.pige_ina@yahoo.co.id>, 2012. # Muhammad Fauzan <yosanpro@gmail.com>, 2012. # Muhammad Panji <sumodirjo@gmail.com>, 2012. @@ -11,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:20+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-03-06 00:07+0100\n" +"PO-Revision-Date: 2013-03-05 14:10+0000\n" +"Last-Translator: evanlimanto <evanlimanto@gmail.com>\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" @@ -21,24 +22,24 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:85 +#: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" msgstr "" -#: ajax/share.php:87 +#: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" msgstr "" -#: ajax/share.php:89 +#: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" msgstr "" -#: ajax/share.php:91 +#: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " @@ -47,7 +48,7 @@ msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "" +msgstr "Tipe kategori tidak diberikan." #: ajax/vcategories/add.php:30 msgid "No category to add?" @@ -56,24 +57,24 @@ msgstr "Tidak ada kategori yang akan ditambahkan?" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "" +msgstr "Kategori ini sudah ada: %s" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "" +msgstr "Tipe obyek tidak diberikan." #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "" +msgstr "%s ID tidak diberikan." #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "" +msgstr "Kesalahan menambah %s ke favorit" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." @@ -82,81 +83,81 @@ msgstr "Tidak ada kategori terpilih untuk penghapusan." #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "" +msgstr "Kesalahan menghapus %s dari favorit" -#: js/config.php:32 +#: js/config.php:34 msgid "Sunday" msgstr "minggu" -#: js/config.php:32 +#: js/config.php:35 msgid "Monday" msgstr "senin" -#: js/config.php:32 +#: js/config.php:36 msgid "Tuesday" msgstr "selasa" -#: js/config.php:32 +#: js/config.php:37 msgid "Wednesday" msgstr "rabu" -#: js/config.php:32 +#: js/config.php:38 msgid "Thursday" msgstr "kamis" -#: js/config.php:32 +#: js/config.php:39 msgid "Friday" msgstr "jumat" -#: js/config.php:32 +#: js/config.php:40 msgid "Saturday" msgstr "sabtu" -#: js/config.php:33 +#: js/config.php:45 msgid "January" msgstr "Januari" -#: js/config.php:33 +#: js/config.php:46 msgid "February" msgstr "Februari" -#: js/config.php:33 +#: js/config.php:47 msgid "March" msgstr "Maret" -#: js/config.php:33 +#: js/config.php:48 msgid "April" msgstr "April" -#: js/config.php:33 +#: js/config.php:49 msgid "May" msgstr "Mei" -#: js/config.php:33 +#: js/config.php:50 msgid "June" msgstr "Juni" -#: js/config.php:33 +#: js/config.php:51 msgid "July" msgstr "Juli" -#: js/config.php:33 +#: js/config.php:52 msgid "August" msgstr "Agustus" -#: js/config.php:33 +#: js/config.php:53 msgid "September" msgstr "September" -#: js/config.php:33 +#: js/config.php:54 msgid "October" msgstr "Oktober" -#: js/config.php:33 +#: js/config.php:55 msgid "November" msgstr "Nopember" -#: js/config.php:33 +#: js/config.php:56 msgid "December" msgstr "Desember" @@ -164,55 +165,55 @@ msgstr "Desember" msgid "Settings" msgstr "Setelan" -#: js/js.js:767 +#: js/js.js:777 msgid "seconds ago" msgstr "beberapa detik yang lalu" -#: js/js.js:768 +#: js/js.js:778 msgid "1 minute ago" msgstr "1 menit lalu" -#: js/js.js:769 +#: js/js.js:779 msgid "{minutes} minutes ago" -msgstr "" +msgstr "{minutes} menit yang lalu" -#: js/js.js:770 +#: js/js.js:780 msgid "1 hour ago" -msgstr "" +msgstr "1 jam yang lalu" -#: js/js.js:771 +#: js/js.js:781 msgid "{hours} hours ago" -msgstr "" +msgstr "{hours} jam yang lalu" -#: js/js.js:772 +#: js/js.js:782 msgid "today" msgstr "hari ini" -#: js/js.js:773 +#: js/js.js:783 msgid "yesterday" msgstr "kemarin" -#: js/js.js:774 +#: js/js.js:784 msgid "{days} days ago" -msgstr "" +msgstr "{days} hari yang lalu" -#: js/js.js:775 +#: js/js.js:785 msgid "last month" msgstr "bulan kemarin" -#: js/js.js:776 +#: js/js.js:786 msgid "{months} months ago" -msgstr "" +msgstr "{months} bulan yang lalu" -#: js/js.js:777 +#: js/js.js:787 msgid "months ago" msgstr "beberapa bulan lalu" -#: js/js.js:778 +#: js/js.js:788 msgid "last year" msgstr "tahun kemarin" -#: js/js.js:779 +#: js/js.js:789 msgid "years ago" msgstr "beberapa tahun lalu" @@ -257,11 +258,11 @@ msgstr "" #: js/share.js:29 js/share.js:43 js/share.js:90 msgid "Shared" -msgstr "" +msgstr "Terbagi" #: js/share.js:93 msgid "Share" -msgstr "berbagi" +msgstr "Bagi" #: js/share.js:141 js/share.js:622 msgid "Error while sharing" @@ -295,17 +296,17 @@ msgstr "bagikan dengan tautan" msgid "Password protect" msgstr "lindungi dengan kata kunci" -#: js/share.js:185 templates/installation.php:44 templates/login.php:35 +#: js/share.js:185 templates/installation.php:47 templates/login.php:35 msgid "Password" msgstr "Password" #: js/share.js:189 msgid "Email link to person" -msgstr "" +msgstr "Email link ini ke orang" #: js/share.js:190 msgid "Send" -msgstr "" +msgstr "Kirim" #: js/share.js:194 msgid "Set expiration date" @@ -373,11 +374,11 @@ msgstr "gagal memasang tanggal kadaluarsa" #: js/share.js:609 msgid "Sending ..." -msgstr "" +msgstr "Sedang mengirim ..." #: js/share.js:620 msgid "Email sent" -msgstr "" +msgstr "Email terkirim" #: js/update.js:14 msgid "" @@ -388,7 +389,7 @@ msgstr "" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "" +msgstr "Update sukses. Membawa anda ke ownCloud sekarang." #: lostpassword/controller.php:48 msgid "ownCloud password reset" @@ -408,9 +409,9 @@ msgstr "" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "" +msgstr "Permintaan gagal!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:41 #: templates/login.php:28 msgid "Username" msgstr "Username" @@ -471,85 +472,86 @@ msgstr "Edit kategori" msgid "Add" msgstr "Tambahkan" -#: templates/installation.php:23 templates/installation.php:30 +#: templates/installation.php:24 templates/installation.php:31 msgid "Security Warning" msgstr "peringatan keamanan" -#: templates/installation.php:24 +#: templates/installation.php:25 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "tanpa generator angka acak, penyerang mungkin dapat menebak token reset kata kunci dan mengambil alih akun anda." -#: templates/installation.php:31 +#: templates/installation.php:32 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "For information how to properly configure your server, please see the <a " "href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " "target=\"_blank\">documentation</a>." msgstr "" -#: templates/installation.php:36 +#: templates/installation.php:37 msgid "Create an <strong>admin account</strong>" msgstr "Buat sebuah <strong>akun admin</strong>" -#: templates/installation.php:52 +#: templates/installation.php:55 msgid "Advanced" msgstr "Tingkat Lanjut" -#: templates/installation.php:54 +#: templates/installation.php:57 msgid "Data folder" msgstr "Folder data" -#: templates/installation.php:61 +#: templates/installation.php:66 msgid "Configure the database" msgstr "Konfigurasi database" -#: templates/installation.php:66 templates/installation.php:77 -#: templates/installation.php:87 templates/installation.php:97 +#: templates/installation.php:71 templates/installation.php:83 +#: templates/installation.php:94 templates/installation.php:105 +#: templates/installation.php:117 msgid "will be used" msgstr "akan digunakan" -#: templates/installation.php:109 +#: templates/installation.php:129 msgid "Database user" msgstr "Pengguna database" -#: templates/installation.php:113 +#: templates/installation.php:134 msgid "Database password" msgstr "Password database" -#: templates/installation.php:117 +#: templates/installation.php:139 msgid "Database name" msgstr "Nama database" -#: templates/installation.php:125 +#: templates/installation.php:149 msgid "Database tablespace" msgstr "tablespace basis data" -#: templates/installation.php:131 +#: templates/installation.php:156 msgid "Database host" msgstr "Host database" -#: templates/installation.php:136 +#: templates/installation.php:162 msgid "Finish setup" msgstr "Selesaikan instalasi" -#: templates/layout.guest.php:33 +#: templates/layout.guest.php:40 msgid "web services under your control" msgstr "web service dibawah kontrol anda" -#: templates/layout.user.php:48 +#: templates/layout.user.php:58 msgid "Log out" msgstr "Keluar" @@ -581,7 +583,7 @@ msgstr "Masuk" #: templates/login.php:49 msgid "Alternative Logins" -msgstr "" +msgstr "Login dengan cara lain" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/id/files_trashbin.po b/l10n/id/files_trashbin.po index 3fdc100c6354047c58b19fa0af668d8f42ca719f..01538027a14ee6ee01e82f9fafca66d596783447 100644 --- a/l10n/id/files_trashbin.po +++ b/l10n/id/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -40,27 +40,27 @@ msgstr "hapus berkas secara permanen" msgid "Delete permanently" msgstr "" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "Nama" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "Dihapus" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "1 map" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "{count} map" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "1 berkas" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "{count} berkas" @@ -75,3 +75,7 @@ msgstr "Pulihkan" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "Hapus" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index 2a62c2e77fd527213bc08ac70e4ba520fdabbc92..6ef9f41ad6999629dfdd883caff6bfc37d7bf046 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" +"POT-Creation-Date: 2013-03-06 00:07+0100\n" +"PO-Revision-Date: 2013-03-05 14:00+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_trashbin.po b/l10n/is/files_trashbin.po index b5725ca57fac418e256806845ad8508dbc91cf7d..be62d3c52aaebff21f83746e94a1665ac769b8af 100644 --- a/l10n/is/files_trashbin.po +++ b/l10n/is/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -39,27 +39,27 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "Nafn" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "1 mappa" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "{count} möppur" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "1 skrá" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "{count} skrár" @@ -74,3 +74,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "Eyða" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po index 24a94de9a343cfa65a2515a148626d1a67c8a8a6..b2baa9ac7adf283bb92c4f18594374b8c0e0794b 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -40,27 +40,27 @@ msgstr "elimina il file definitivamente" msgid "Delete permanently" msgstr "Elimina definitivamente" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "Nome" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "Eliminati" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "1 cartella" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "{count} cartelle" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "1 file" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "{count} file" @@ -75,3 +75,7 @@ msgstr "Ripristina" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "Elimina" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index 22e3dcf32c4f518fdc85cacf45d1a4a49a7925d1..a03705a5cf6997f638d10e3140aca40bed8dca34 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-03 00:05+0100\n" -"PO-Revision-Date: 2013-03-02 00:40+0000\n" +"POT-Creation-Date: 2013-03-05 00:18+0100\n" +"PO-Revision-Date: 2013-03-04 14:30+0000\n" "Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -238,7 +238,7 @@ msgstr "Non consigliato, utilizzare solo per test." #: templates/settings.php:65 msgid "Cache Time-To-Live" -msgstr "" +msgstr "Tempo di vita della cache" #: templates/settings.php:65 msgid "in seconds. A change empties the cache." @@ -318,7 +318,7 @@ msgstr "Campo Email" #: templates/settings.php:82 msgid "User Home Folder Naming Rule" -msgstr "" +msgstr "Regola di assegnazione del nome della cartella utente" #: templates/settings.php:82 msgid "" diff --git a/l10n/ja_JP/files_trashbin.po b/l10n/ja_JP/files_trashbin.po index 7e5b2cb54a75d8205ca267e2b8357bc987ffbf74..842098d5227ccf9798a797bcf1830454cc638479 100644 --- a/l10n/ja_JP/files_trashbin.po +++ b/l10n/ja_JP/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -40,27 +40,27 @@ msgstr "ファイルを完全に削除する" msgid "Delete permanently" msgstr "完全に削除する" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "名前" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "削除済み" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "1 フォルダ" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "{count} フォルダ" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "1 ファイル" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "{count} ファイル" @@ -75,3 +75,7 @@ msgstr "復元" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "削除" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/ka/files_trashbin.po b/l10n/ka/files_trashbin.po index 1c461d5f9d5b4a8c4da19a6f26450000ba577a1d..84d63cc28b6ba51deee9cc467d8a72eee3a0c6ee 100644 --- a/l10n/ka/files_trashbin.po +++ b/l10n/ka/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 00:08+0100\n" -"PO-Revision-Date: 2013-01-31 16:03+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -39,27 +39,27 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "" @@ -74,3 +74,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index a93e459f4c9d5d9409de1750ccaa07d8aa351b60..df2af0a4a7da3240272f89f29a7321b7a6537fb3 100644 --- a/l10n/ka_GE/files_trashbin.po +++ b/l10n/ka_GE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -39,27 +39,27 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "სახელი" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "1 საქაღალდე" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "{count} საქაღალდე" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "1 ფაილი" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "{count} ფაილი" @@ -74,3 +74,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "წაშლა" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/ko/files_trashbin.po b/l10n/ko/files_trashbin.po index dc232ecb307c61b2d243e11829c7ab3938b05475..1464b23c7c3ee40c4fa530baed434f0312deedef 100644 --- a/l10n/ko/files_trashbin.po +++ b/l10n/ko/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -39,27 +39,27 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "이름" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "폴더 1개" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "폴더 {count}개" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "파일 1개" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "파일 {count}개" @@ -74,3 +74,7 @@ msgstr "복원" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "삭제" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/ku_IQ/files_trashbin.po b/l10n/ku_IQ/files_trashbin.po index a4a5d2ace62988e283d89d40d84cc07b3907597a..5fe9d389ebf1c9918fbbdb9f0839c09d6d8d1fed 100644 --- a/l10n/ku_IQ/files_trashbin.po +++ b/l10n/ku_IQ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-21 00:14+0100\n" -"PO-Revision-Date: 2013-02-20 23:14+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -39,27 +39,27 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "ناو" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "" @@ -74,3 +74,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index 57a40d95699bbd7783ac216dc224bdb8f3167b3c..715eba7064d7d12ff942160c10d7eeb6eb8efcdd 100644 --- a/l10n/lb/files_trashbin.po +++ b/l10n/lb/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -39,27 +39,27 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "Numm" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "" @@ -74,3 +74,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "Läschen" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index d212c6fa4e52ca82a3232792dabde5b0f1038fa5..de4d898a2c69cc64bc48c8d5bc26828e6e71c77c 100644 --- a/l10n/lt_LT/files_trashbin.po +++ b/l10n/lt_LT/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -39,27 +39,27 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "Pavadinimas" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "1 aplankalas" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "{count} aplankalai" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "1 failas" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "{count} failai" @@ -74,3 +74,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "Ištrinti" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index fb3f0b03350bf22aa16f56f00658093ced548ce9..afbd5a9846334cc8132ce23f7e9a6543661e940b 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-03-06 00:07+0100\n" +"PO-Revision-Date: 2013-03-05 16:30+0000\n" +"Last-Translator: Rūdolfs Mazurs <rudolfs.mazurs@gmail.com>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -281,7 +281,7 @@ msgstr "Atcelt augšupielādi" #: templates/index.php:53 msgid "You don’t have write permissions here." -msgstr "" +msgstr "Jums nav tiesību šeit rakstīt." #: templates/index.php:60 msgid "Nothing in here. Upload something!" diff --git a/l10n/lv/files_trashbin.po b/l10n/lv/files_trashbin.po index f4af7a84510218d6451f0d78626670f00c47bd9b..14de7d18f6249aa4f1c4c0c006356c7b8be54c51 100644 --- a/l10n/lv/files_trashbin.po +++ b/l10n/lv/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -40,27 +40,27 @@ msgstr "dzēst datni pavisam" msgid "Delete permanently" msgstr "Dzēst pavisam" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "Nosaukums" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "Dzēsts" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "1 mape" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "{count} mapes" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "1 datne" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "{count} datnes" @@ -75,3 +75,7 @@ msgstr "Atjaunot" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "Dzēst" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/mk/files_trashbin.po b/l10n/mk/files_trashbin.po index 733fe1f429c76dc876f8007d95efc69e899001b9..7910b81dd0a6a8333dfcc9393620c64299ca2896 100644 --- a/l10n/mk/files_trashbin.po +++ b/l10n/mk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -39,27 +39,27 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "Име" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "1 папка" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "{count} папки" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "1 датотека" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "{count} датотеки" @@ -74,3 +74,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "Избриши" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/ms_MY/files_trashbin.po b/l10n/ms_MY/files_trashbin.po index 457ed8d886e8999efe9e030b6841a65257d6661d..ca5700f5ff4d07845e630aade9375de498e2a493 100644 --- a/l10n/ms_MY/files_trashbin.po +++ b/l10n/ms_MY/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -39,27 +39,27 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "Nama" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "" @@ -74,3 +74,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "Padam" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/my_MM/files_trashbin.po b/l10n/my_MM/files_trashbin.po index 33f2492dba14bf55db78e51a75fa8dcf5c384cf6..f0875b29e8568b60956b174f2e6ee2b9fe032b06 100644 --- a/l10n/my_MM/files_trashbin.po +++ b/l10n/my_MM/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-21 00:14+0100\n" -"PO-Revision-Date: 2013-02-20 23:14+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -39,27 +39,27 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "" @@ -74,3 +74,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 70efb0326bed142859a487b258a3d3da8e862fd1..2f2ef834aacea5743d1d6ebd6a04a9cedc3a52f7 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:20+0000\n" +"POT-Creation-Date: 2013-03-07 00:16+0100\n" +"PO-Revision-Date: 2013-03-06 10:30+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -24,24 +24,24 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:85 +#: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" msgstr "" -#: ajax/share.php:87 +#: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" msgstr "" -#: ajax/share.php:89 +#: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" msgstr "" -#: ajax/share.php:91 +#: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " @@ -87,79 +87,79 @@ msgstr "Ingen kategorier merket for sletting." msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:32 +#: js/config.php:34 msgid "Sunday" msgstr "Søndag" -#: js/config.php:32 +#: js/config.php:35 msgid "Monday" msgstr "Mandag" -#: js/config.php:32 +#: js/config.php:36 msgid "Tuesday" msgstr "Tirsdag" -#: js/config.php:32 +#: js/config.php:37 msgid "Wednesday" msgstr "Onsdag" -#: js/config.php:32 +#: js/config.php:38 msgid "Thursday" msgstr "Torsdag" -#: js/config.php:32 +#: js/config.php:39 msgid "Friday" msgstr "Fredag" -#: js/config.php:32 +#: js/config.php:40 msgid "Saturday" msgstr "Lørdag" -#: js/config.php:33 +#: js/config.php:45 msgid "January" msgstr "Januar" -#: js/config.php:33 +#: js/config.php:46 msgid "February" msgstr "Februar" -#: js/config.php:33 +#: js/config.php:47 msgid "March" msgstr "Mars" -#: js/config.php:33 +#: js/config.php:48 msgid "April" msgstr "April" -#: js/config.php:33 +#: js/config.php:49 msgid "May" msgstr "Mai" -#: js/config.php:33 +#: js/config.php:50 msgid "June" msgstr "Juni" -#: js/config.php:33 +#: js/config.php:51 msgid "July" msgstr "Juli" -#: js/config.php:33 +#: js/config.php:52 msgid "August" msgstr "August" -#: js/config.php:33 +#: js/config.php:53 msgid "September" msgstr "September" -#: js/config.php:33 +#: js/config.php:54 msgid "October" msgstr "Oktober" -#: js/config.php:33 +#: js/config.php:55 msgid "November" msgstr "November" -#: js/config.php:33 +#: js/config.php:56 msgid "December" msgstr "Desember" @@ -167,55 +167,55 @@ msgstr "Desember" msgid "Settings" msgstr "Innstillinger" -#: js/js.js:767 +#: js/js.js:777 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:768 +#: js/js.js:778 msgid "1 minute ago" msgstr "1 minutt siden" -#: js/js.js:769 +#: js/js.js:779 msgid "{minutes} minutes ago" msgstr "{minutes} minutter siden" -#: js/js.js:770 +#: js/js.js:780 msgid "1 hour ago" msgstr "1 time siden" -#: js/js.js:771 +#: js/js.js:781 msgid "{hours} hours ago" msgstr "{hours} timer siden" -#: js/js.js:772 +#: js/js.js:782 msgid "today" msgstr "i dag" -#: js/js.js:773 +#: js/js.js:783 msgid "yesterday" msgstr "i går" -#: js/js.js:774 +#: js/js.js:784 msgid "{days} days ago" msgstr "{days} dager siden" -#: js/js.js:775 +#: js/js.js:785 msgid "last month" msgstr "forrige måned" -#: js/js.js:776 +#: js/js.js:786 msgid "{months} months ago" msgstr "{months} måneder siden" -#: js/js.js:777 +#: js/js.js:787 msgid "months ago" msgstr "måneder siden" -#: js/js.js:778 +#: js/js.js:788 msgid "last year" msgstr "forrige år" -#: js/js.js:779 +#: js/js.js:789 msgid "years ago" msgstr "år siden" @@ -298,7 +298,7 @@ msgstr "Del med link" msgid "Password protect" msgstr "Passordbeskyttet" -#: js/share.js:185 templates/installation.php:44 templates/login.php:35 +#: js/share.js:185 templates/installation.php:47 templates/login.php:35 msgid "Password" msgstr "Passord" @@ -413,7 +413,7 @@ msgstr "" msgid "Request failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:41 #: templates/login.php:28 msgid "Username" msgstr "Brukernavn" @@ -474,85 +474,86 @@ msgstr "Rediger kategorier" msgid "Add" msgstr "Legg til" -#: templates/installation.php:23 templates/installation.php:30 +#: templates/installation.php:24 templates/installation.php:31 msgid "Security Warning" msgstr "Sikkerhetsadvarsel" -#: templates/installation.php:24 +#: templates/installation.php:25 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" -#: templates/installation.php:31 +#: templates/installation.php:32 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "For information how to properly configure your server, please see the <a " "href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " "target=\"_blank\">documentation</a>." msgstr "" -#: templates/installation.php:36 +#: templates/installation.php:37 msgid "Create an <strong>admin account</strong>" msgstr "opprett en <strong>administrator-konto</strong>" -#: templates/installation.php:52 +#: templates/installation.php:55 msgid "Advanced" msgstr "Avansert" -#: templates/installation.php:54 +#: templates/installation.php:57 msgid "Data folder" msgstr "Datamappe" -#: templates/installation.php:61 +#: templates/installation.php:66 msgid "Configure the database" msgstr "Konfigurer databasen" -#: templates/installation.php:66 templates/installation.php:77 -#: templates/installation.php:87 templates/installation.php:97 +#: templates/installation.php:71 templates/installation.php:83 +#: templates/installation.php:94 templates/installation.php:105 +#: templates/installation.php:117 msgid "will be used" msgstr "vil bli brukt" -#: templates/installation.php:109 +#: templates/installation.php:129 msgid "Database user" msgstr "Databasebruker" -#: templates/installation.php:113 +#: templates/installation.php:134 msgid "Database password" msgstr "Databasepassord" -#: templates/installation.php:117 +#: templates/installation.php:139 msgid "Database name" msgstr "Databasenavn" -#: templates/installation.php:125 +#: templates/installation.php:149 msgid "Database tablespace" msgstr "Database tabellområde" -#: templates/installation.php:131 +#: templates/installation.php:156 msgid "Database host" msgstr "Databasevert" -#: templates/installation.php:136 +#: templates/installation.php:162 msgid "Finish setup" msgstr "Fullfør oppsetting" -#: templates/layout.guest.php:33 +#: templates/layout.guest.php:40 msgid "web services under your control" msgstr "nettjenester under din kontroll" -#: templates/layout.user.php:48 +#: templates/layout.user.php:58 msgid "Log out" msgstr "Logg ut" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index e4bb5ac29de42ec8eed809ac74ce911b2d9591ea..eb634477210f945367a6103b29387493471367c7 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 21:30+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -89,7 +89,7 @@ msgstr "Filer" #: js/fileactions.js:125 msgid "Delete permanently" -msgstr "" +msgstr "Slett permanent" #: js/fileactions.js:127 templates/index.php:92 templates/index.php:93 msgid "Delete" @@ -99,8 +99,8 @@ msgstr "Slett" msgid "Rename" msgstr "Omdøp" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "Ventende" @@ -154,74 +154,74 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Kan ikke laste opp filen din siden det er en mappe eller den har 0 bytes" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "Opplasting feilet" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "Lukk" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "1 fil lastes opp" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "{count} filer laster opp" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "Opplasting avbrutt." -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Filopplasting pågår. Forlater du siden nå avbrytes opplastingen." -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "URL-en kan ikke være tom." -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "Navn" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "Størrelse" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "Endret" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "1 mappe" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "{count} mapper" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "1 fil" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "{count} filer" diff --git a/l10n/nb_NO/files_encryption.po b/l10n/nb_NO/files_encryption.po index 7be43b41df8fbfb3b0096b8c82578194cf320a7d..50026411075873ff84c3d091eea8778129e4e87f 100644 --- a/l10n/nb_NO/files_encryption.po +++ b/l10n/nb_NO/files_encryption.po @@ -4,13 +4,14 @@ # # Translators: # Arvid Nornes <arvid.nornes@gmail.com>, 2012. +# <oyvind.hojem@gmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-03-07 00:16+0100\n" +"PO-Revision-Date: 2013-03-06 15:13+0000\n" +"Last-Translator: troll <oyvind.hojem@gmail.com>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,15 +25,15 @@ msgstr "Kryptering" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "" +msgstr "Fil-kryptering er aktivert." #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "" +msgstr "Følgende filtyper vil ikke bli kryptert:" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "" +msgstr "Ekskluder følgende filtyper fra kryptering:" #: templates/settings.php:12 msgid "None" diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po index 9797c5dd5b5b3ac4cd7950efa27622f5f2d34ed8..5ce4c85c3bcfcad036e47763e2d152aa862ed66a 100644 --- a/l10n/nb_NO/files_external.po +++ b/l10n/nb_NO/files_external.po @@ -4,13 +4,14 @@ # # Translators: # <ajarmund@gmail.com>, 2012. +# <oyvind.hojem@gmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-27 23:20+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-03-07 00:16+0100\n" +"PO-Revision-Date: 2013-03-06 15:13+0000\n" +"Last-Translator: troll <oyvind.hojem@gmail.com>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,15 +21,15 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "" +msgstr "Tilgang innvilget" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "" +msgstr "Feil ved konfigurering av Dropbox-lagring" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "" +msgstr "Gi tilgang" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." @@ -53,7 +54,7 @@ msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "" +msgstr "Ekstern lagring" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" @@ -61,7 +62,7 @@ msgstr "Mappenavn" #: templates/settings.php:10 msgid "External storage" -msgstr "" +msgstr "Ekstern lagringsplass" #: templates/settings.php:11 msgid "Configuration" @@ -73,15 +74,15 @@ msgstr "Innstillinger" #: templates/settings.php:13 msgid "Applicable" -msgstr "" +msgstr "Anvendelig" #: templates/settings.php:33 msgid "Add storage" -msgstr "" +msgstr "Legg til lagringsplass" #: templates/settings.php:90 msgid "None set" -msgstr "" +msgstr "Ingen valgt" #: templates/settings.php:91 msgid "All Users" @@ -102,16 +103,16 @@ msgstr "Slett" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "" +msgstr "Aktiver ekstern lagring for bruker" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "" +msgstr "Tillat brukere å koble til egne eksterne lagringsmedium" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "" +msgstr "SSL root-sertifikater" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "" +msgstr "Importer root-sertifikat" diff --git a/l10n/nb_NO/files_trashbin.po b/l10n/nb_NO/files_trashbin.po index 4bb1f08e6d7ec35922a1354c2e95abb8f1443466..19998898cf628034a8419dadb421d44f8527cd6e 100644 --- a/l10n/nb_NO/files_trashbin.po +++ b/l10n/nb_NO/files_trashbin.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Ivar Bredesen <ivar.bredesen@gmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -20,57 +21,61 @@ msgstr "" #: ajax/delete.php:40 #, php-format msgid "Couldn't delete %s permanently" -msgstr "" +msgstr "Kunne ikke slette %s fullstendig" #: ajax/undelete.php:41 #, php-format msgid "Couldn't restore %s" -msgstr "" +msgstr "Kunne ikke gjenopprette %s" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "" +msgstr "utfør gjenopprettings operasjon" #: js/trash.js:34 msgid "delete file permanently" -msgstr "" +msgstr "slett filer permanent" #: js/trash.js:121 msgid "Delete permanently" -msgstr "" +msgstr "Slett permanent" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "Navn" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "" +msgstr "Slettet" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "1 mappe" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "{count} mapper" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "1 fil" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "{count} filer" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "" +msgstr "Ingenting her. Søppelkassen din er tom!" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "" +msgstr "Gjenopprett" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "Slett" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index 0bfcd400be07264d935bbad146129c20da1ae52d..37a6960c9820962bf9ee97ca2622720c8628c173 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" +"POT-Creation-Date: 2013-03-07 00:16+0100\n" +"PO-Revision-Date: 2013-03-06 10:30+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 923293d7f650624a2ad6398f4253a33085e0057d..840084f1dab9bf23f751a544a187ee44972b751d 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 21:30+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -393,7 +393,7 @@ msgstr "Du har brukt <strong>%s</strong> av tilgjengelig <strong>%s</strong>" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "" +msgstr "Få dine apps til å synkronisere dine filer" #: templates/personal.php:26 msgid "Show First Run Wizard again" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index 557a2d45a59005357ad47d2580c36f2c1810c7da..ba8a8273f6b6eba96fd103990fa2b1a6d8cc54b9 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.po @@ -4,13 +4,14 @@ # # Translators: # <hdalgrav@gmail.com>, 2012. +# Ivar Bredesen <ivar.bredesen@gmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 22:10+0000\n" +"Last-Translator: MorphyNOR <ivar.bredesen@gmail.com>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,315 +21,315 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "" +msgstr "Klarte ikke å slette tjener-konfigurasjonen." #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "" +msgstr "Konfigurasjonen er i orden og tilkoblingen skal være etablert!" #: ajax/testConfiguration.php:39 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "" +msgstr "Konfigurasjonen er i orden, men Bind mislyktes. Vennligst sjekk tjener-konfigurasjonen og påloggingsinformasjonen." #: ajax/testConfiguration.php:43 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "" +msgstr "Konfigurasjonen er ikke i orden. Vennligst se ownClouds logfil for flere detaljer." #: js/settings.js:66 msgid "Deletion failed" -msgstr "Sletting feilet" +msgstr "Sletting mislyktes" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "" +msgstr "Hent innstillinger fra tidligere tjener-konfigurasjon?" #: js/settings.js:83 msgid "Keep settings?" -msgstr "" +msgstr "Behold innstillinger?" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "" +msgstr "Kan ikke legge til tjener-konfigurasjon" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "" +msgstr "Tilkoblingstest lyktes" #: js/settings.js:126 msgid "Connection test failed" -msgstr "" +msgstr "Tilkoblingstest mislyktes" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "" +msgstr "Er du sikker på at du vil slette aktiv tjener-konfigurasjon?" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "" +msgstr "Bekreft sletting" #: templates/settings.php:8 msgid "" "<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "" +msgstr "<b>Advarsel:</b>Apps user_ldap og user_webdavauth er ikke kompatible. Du kan oppleve uventet atferd fra systemet. Vennligst spør din system-administrator om å deaktivere en av dem." #: templates/settings.php:11 msgid "" "<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "" +msgstr "<b>Warning:</b> PHP LDAP modulen er ikke installert, hjelperen vil ikke virke. Vennligst be din system-administrator om å installere den." #: templates/settings.php:15 msgid "Server configuration" -msgstr "" +msgstr "Tjener-konfigurasjon" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" -msgstr "" +msgstr "Legg til tjener-konfigurasjon" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" -msgstr "" +msgstr "Tjener" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "" +msgstr "Du kan utelate protokollen, men du er påkrevd å bruke SSL. Deretter starte med ldaps://" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" -msgstr "" +msgstr "Base DN" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" -msgstr "" +msgstr "En hoved DN pr. linje" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "" +msgstr "Du kan spesifisere Base DN for brukere og grupper under Avansert fanen" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" -msgstr "" +msgstr "Bruker DN" -#: templates/settings.php:32 +#: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "" +msgstr "DN nummeret til klienten som skal bindes til, f.eks. uid=agent,dc=example,dc=com. For anonym tilgang, la DN- og passord-feltet stå tomt." -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "Passord" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "" +msgstr "For anonym tilgang, la DN- og passord-feltet stå tomt." -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" -msgstr "" +msgstr "Brukerpålogging filter" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "" +msgstr "Definerer filteret som skal brukes når et påloggingsforsøk blir utført. %%uid erstatter brukernavnet i innloggingshandlingen." -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "" +msgstr "bruk %%uid plassholder, f.eks. \"uid=%%uid\"" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" -msgstr "" +msgstr "Brukerliste filter" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." -msgstr "" +msgstr "Definerer filteret som skal brukes, når systemet innhenter brukere." -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "" +msgstr "uten noe plassholder, f.eks. \"objectClass=person\"." -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "Gruppefilter" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." -msgstr "" +msgstr "Definerer filteret som skal brukes, når systemet innhenter grupper." -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "" +msgstr "uten noe plassholder, f.eks. \"objectClass=posixGroup\"." -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" -msgstr "" +msgstr "Konfigurasjon aktiv" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." -msgstr "" +msgstr "Når ikke huket av så vil denne konfigurasjonen bli hoppet over." -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "Port" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" -msgstr "" +msgstr "Sikkerhetskopierings (Replica) vert" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "Bruk TLS" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" -msgstr "" +msgstr "Case-insensitiv LDAP tjener (Windows)" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "" +msgstr "Slå av SSL-sertifikat validering" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "" +msgstr "Hvis tilgang kun fungerer med dette alternativet, importer LDAP-tjenerens SSL-sertifikat til din egen ownCloud tjener." -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "Ikke anbefalt, bruk kun for testing" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "i sekunder. En endring tømmer bufferen." -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" -msgstr "" +msgstr "Vis brukerens navnfelt" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "" +msgstr "LDAP-attributen å bruke for å generere brukers ownCloud navn." -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" -msgstr "" +msgstr "Hovedbruker tre" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" -msgstr "" +msgstr "En Bruker Base DN pr. linje" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" -msgstr "" +msgstr "Vis gruppens navnfelt" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "" +msgstr "LDAP-attributen å bruke for å generere gruppens ownCloud navn." -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" -msgstr "" +msgstr "Hovedgruppe tre" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" -msgstr "" +msgstr "En gruppe hoved-DN pr. linje" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" -msgstr "" +msgstr "gruppe-medlem assosiasjon" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "i bytes" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "" +msgstr "La stå tom for brukernavn (standard). Ellers, spesifiser en LDAP/AD attributt." -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "Hjelp" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index a20d754aacb6149cc3b52eefcb98a3d4c98cf9ee..5443fe2eb4a425ab8789f450205a0e1b5b78bf3f 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-03-06 00:07+0100\n" +"PO-Revision-Date: 2013-03-05 20:10+0000\n" +"Last-Translator: André Koot <meneer@tken.net>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -290,7 +290,7 @@ msgstr "Upload afbreken" #: templates/index.php:53 msgid "You don’t have write permissions here." -msgstr "" +msgstr "U hebt hier geen schrijfpermissies." #: templates/index.php:60 msgid "Nothing in here. Upload something!" diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index af3a2234e18a9ab332497c66050fe2ddea0b15b5..3c135ef3441c5a2cc3cc116b33678f13ebcda74a 100644 --- a/l10n/nl/files_external.po +++ b/l10n/nl/files_external.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# André Koot <meneer@tken.net>, 2012. +# André Koot <meneer@tken.net>, 2012-2013. # Richard Bos <radoeka@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-27 23:20+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-03-06 00:07+0100\n" +"PO-Revision-Date: 2013-03-05 20:10+0000\n" +"Last-Translator: André Koot <meneer@tken.net>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -62,7 +62,7 @@ msgstr "Mapnaam" #: templates/settings.php:10 msgid "External storage" -msgstr "" +msgstr "Externe opslag" #: templates/settings.php:11 msgid "Configuration" @@ -78,7 +78,7 @@ msgstr "Van toepassing" #: templates/settings.php:33 msgid "Add storage" -msgstr "" +msgstr "Toevoegen opslag" #: templates/settings.php:90 msgid "None set" diff --git a/l10n/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index 0c2f17636ad056c0e14346be4719c08c963c18e0..a20ba8e0e4d55c1e5e23a2b71a5edf5ee76d9696 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -40,27 +40,27 @@ msgstr "verwijder bestanden definitief" msgid "Delete permanently" msgstr "Verwijder definitief" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "Naam" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "Verwijderd" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "1 map" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "{count} mappen" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "1 bestand" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "{count} bestanden" @@ -75,3 +75,7 @@ msgstr "Herstellen" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "Verwijder" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/nl/files_versions.po b/l10n/nl/files_versions.po index 0f1655775a19b2c59d0bd1bebca0c1ab592eb029..87ba278235f1297e5af989dbc1490cdda272ae34 100644 --- a/l10n/nl/files_versions.po +++ b/l10n/nl/files_versions.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-03-06 00:07+0100\n" +"PO-Revision-Date: 2013-03-05 20:10+0000\n" +"Last-Translator: André Koot <meneer@tken.net>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -42,17 +42,17 @@ msgstr "mislukking" msgid "File %s could not be reverted to version %s" msgstr "Bestand %s kon niet worden teruggedraaid naar versie %s" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "Geen oudere versies beschikbaar" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "Geen pad opgegeven" #: js/versions.js:6 msgid "Versions" -msgstr "" +msgstr "Versies" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index 1dc126dfa7909b0cc35d6b604a8475ab9dfedf47..f226fcaff3af028727dbf47ca71ea502eb0d554b 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-03-06 00:07+0100\n" +"PO-Revision-Date: 2013-03-05 20:10+0000\n" +"Last-Translator: André Koot <meneer@tken.net>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -178,7 +178,7 @@ msgstr "Onjuiste commando was: \"%s\", naam: %s, wachtwoord: %s" #: setup.php:631 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "" +msgstr "MS SQL gebruikersnaam en/of wachtwoord niet geldig: %s" #: setup.php:849 msgid "" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 075d5a41e10851ff7866f0ee4bbb2a15c5a10b22..595fce94d995fce69f9778ca632c4af753331150 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -14,13 +14,14 @@ # <lenny@weijl.org>, 2012. # <pietje8501@gmail.com>, 2012. # Richard Bos <radoeka@gmail.com>, 2012. +# Wilfred Dijksman <translate@wdijksman.nl>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-03-05 00:18+0100\n" +"PO-Revision-Date: 2013-03-04 22:30+0000\n" +"Last-Translator: Wilfred Dijksman <translate@wdijksman.nl>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -224,7 +225,7 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "" +msgstr "Deze ownCloud server kan de systeemtaal niet instellen op %s. Hierdoor kunnen er mogelijk problemen optreden met bepaalde karakters in bestandsnamen. Het wordt sterk aangeraden om de vereiste pakketen op uw systeem te installeren zodat %s ondersteund wordt." #: templates/admin.php:75 msgid "Internet connection not working" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index 76fce0bbb3f25221322d0ed904b5d3850c9739bd..bc89175daac9baad8ddf6a49b8b810af83645efe 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-03-06 00:07+0100\n" +"PO-Revision-Date: 2013-03-05 20:10+0000\n" +"Last-Translator: André Koot <meneer@tken.net>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -239,7 +239,7 @@ msgstr "Niet aangeraden, gebruik alleen voor test doeleinden." #: templates/settings.php:65 msgid "Cache Time-To-Live" -msgstr "" +msgstr "Cache time-to-live" #: templates/settings.php:65 msgid "in seconds. A change empties the cache." @@ -303,11 +303,11 @@ msgstr "Speciale attributen" #: templates/settings.php:79 msgid "Quota Field" -msgstr "" +msgstr "Quota veld" #: templates/settings.php:80 msgid "Quota Default" -msgstr "" +msgstr "Quota standaard" #: templates/settings.php:80 msgid "in bytes" @@ -315,11 +315,11 @@ msgstr "in bytes" #: templates/settings.php:81 msgid "Email Field" -msgstr "" +msgstr "E-mailveld" #: templates/settings.php:82 msgid "User Home Folder Naming Rule" -msgstr "" +msgstr "Gebruikers Home map naamgevingsregel" #: templates/settings.php:82 msgid "" @@ -329,7 +329,7 @@ msgstr "Laat leeg voor de gebruikersnaam (standaard). Of, specificeer een LDAP/A #: templates/settings.php:86 msgid "Test Configuration" -msgstr "" +msgstr "Test configuratie" #: templates/settings.php:86 msgid "Help" diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index 222802a4c90b32967003b28fe4361e075eedce39..25d68085d96630dc5ba5729340bbbb800c14b7a7 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_NO/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -39,27 +39,27 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "Namn" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "" @@ -74,3 +74,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "Slett" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/oc/files_trashbin.po b/l10n/oc/files_trashbin.po index f3b37f49d9ddb126f3956e6da02a1fd829eca05b..c021b24f318e5406479a0ca830ca250d1b8f27cf 100644 --- a/l10n/oc/files_trashbin.po +++ b/l10n/oc/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -39,27 +39,27 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "Nom" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "" @@ -74,3 +74,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "Escafa" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/pl/files_trashbin.po b/l10n/pl/files_trashbin.po index 5a9d61f0b2d48c02b08c251c5f216845b09e0650..a226bea7473c177940db25b6cfeec51fcf9f36ac 100644 --- a/l10n/pl/files_trashbin.po +++ b/l10n/pl/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-03 00:05+0100\n" -"PO-Revision-Date: 2013-03-02 14:40+0000\n" -"Last-Translator: Cyryl Sochacki <cyrylsochacki@gmail.com>\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -75,3 +75,7 @@ msgstr "Przywróć" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "Usuń" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/pl_PL/files_trashbin.po b/l10n/pl_PL/files_trashbin.po index e158e5a65ee4888592e862506522d61190a09177..3de7aff0fae4c1ddc19a3f4f190356294adbdeaa 100644 --- a/l10n/pl_PL/files_trashbin.po +++ b/l10n/pl_PL/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-21 00:14+0100\n" -"PO-Revision-Date: 2013-02-20 23:14+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -39,27 +39,27 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "" @@ -74,3 +74,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index decf5f16ff8ec7ff0a312bc2aa88675015f12e3f..9bf36d86207f039cbdb177b36bbffd5980f441e1 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# <dudanogueira@gmail.com>, 2013. # <dudanogueira@gmail.com>, 2012. # <fred.maranhao@gmail.com>, 2012. # Guilherme Maluf Balzana <guimalufb@gmail.com>, 2012. @@ -17,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 12:10+0000\n" +"Last-Translator: dudanogueira <dudanogueira@gmail.com>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,12 +31,12 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "Não possível mover %s - Um arquivo com este nome já existe" +msgstr "Impossível mover %s - Um arquivo com este nome já existe" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "Não possível mover %s" +msgstr "Impossível mover %s" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" @@ -43,7 +44,7 @@ msgstr "Impossível renomear arquivo" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "Nenhum arquivo foi transferido. Erro desconhecido" +msgstr "Nenhum arquivo foi enviado. Erro desconhecido" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" @@ -100,8 +101,8 @@ msgstr "Excluir" msgid "Rename" msgstr "Renomear" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "Pendente" @@ -149,80 +150,80 @@ msgstr "Nome inválido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "Seu armazenamento está cheio, arquivos não serão mais atualizados nem sincronizados!" +msgstr "Seu armazenamento está cheio, arquivos não podem mais ser atualizados ou sincronizados!" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Seu armazenamento está quase cheio ({usedSpacePercent}%)" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Seu download está sendo preparado. Isto pode levar algum tempo se os arquivos forem grandes." -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Impossível enviar seus arquivo como diretório ou ele tem 0 bytes." +msgstr "Impossível enviar seus arquivo por ele ser um diretório ou ter 0 bytes." -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "Erro de envio" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "Fechar" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "enviando 1 arquivo" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "Enviando {count} arquivos" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "Envio cancelado." -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Upload em andamento. Sair da página agora resultará no cancelamento do envio." -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "URL não pode ficar em branco" -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nome de pasta inválido. O uso de 'Shared' é reservado para o Owncloud" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "Nome" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "Tamanho" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "Modificado" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "1 pasta" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "{count} pastas" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "1 arquivo" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "{count} arquivos" @@ -244,7 +245,7 @@ msgstr "max. possível:" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "Necessário para multiplos arquivos e diretório de downloads." +msgstr "Necessário para download de múltiplos arquivos e diretórios." #: templates/admin.php:17 msgid "Enable ZIP-download" @@ -288,7 +289,7 @@ msgstr "Cancelar upload" #: templates/index.php:53 msgid "You don’t have write permissions here." -msgstr "" +msgstr "Você não possui permissão de escrita aqui." #: templates/index.php:60 msgid "Nothing in here. Upload something!" @@ -322,4 +323,4 @@ msgstr "Scanning atual" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "Aprimorando cache do sistema de arquivos..." +msgstr "Atualizando cache do sistema de arquivos..." diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index 7422335149aaeb7930d6d63a5f1f224b1d41b622..830dad23e37724842494f6b19cfdb3c3bffb7b85 100644 --- a/l10n/pt_BR/files_external.po +++ b/l10n/pt_BR/files_external.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# <dudanogueira@gmail.com>, 2013. # <philippi.sedir@gmail.com>, 2012. # Rodrigo Tavares <rodrigo.st23@hotmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-27 23:20+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 12:40+0000\n" +"Last-Translator: dudanogueira <dudanogueira@gmail.com>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,14 +44,14 @@ msgstr "Erro ao configurar armazenamento do Google Drive" msgid "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "<b>Aviso:</b> \"smbclient\" não está instalado. Não será possível montar compartilhamentos de CIFS/SMB. Por favor, peça ao seu administrador do sistema para instalá-lo." +msgstr "<b>Aviso:</b> \"smbclient\" não está instalado. Impossível montar compartilhamentos de CIFS/SMB. Por favor, peça ao seu administrador do sistema para instalá-lo." #: lib/config.php:424 msgid "" "<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "<b>Aviso:</b> O suporte para FTP do PHP não está ativado ou instalado. Não será possível montar compartilhamentos FTP. Por favor, peça ao seu administrador do sistema para instalá-lo." +msgstr "<b>Aviso:</b> O suporte para FTP do PHP não está ativado ou instalado. Impossível montar compartilhamentos FTP. Por favor, peça ao seu administrador do sistema para instalá-lo." #: templates/settings.php:3 msgid "External Storage" @@ -62,7 +63,7 @@ msgstr "Nome da pasta" #: templates/settings.php:10 msgid "External storage" -msgstr "" +msgstr "Armazenamento Externo" #: templates/settings.php:11 msgid "Configuration" @@ -78,7 +79,7 @@ msgstr "Aplicável" #: templates/settings.php:33 msgid "Add storage" -msgstr "" +msgstr "Adicionar Armazenamento" #: templates/settings.php:90 msgid "None set" diff --git a/l10n/pt_BR/files_trashbin.po b/l10n/pt_BR/files_trashbin.po index 332e051fae8085d23e4cc550ede23695c6a50fd0..71df0cbd868f07632326f63f3167618780395c22 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -40,27 +40,27 @@ msgstr "excluir arquivo permanentemente" msgid "Delete permanently" msgstr "Excluir permanentemente" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "Nome" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "Excluído" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "1 pasta" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "{count} pastas" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "1 arquivo" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "{count} arquivos" @@ -75,3 +75,7 @@ msgstr "Restaurar" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "Excluir" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/pt_BR/files_versions.po b/l10n/pt_BR/files_versions.po index 92f28767350db7de9c7e172be266e00840c87441..88db88761f5a99a605c17f06139669fa61b5ce8f 100644 --- a/l10n/pt_BR/files_versions.po +++ b/l10n/pt_BR/files_versions.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# <dudanogueira@gmail.com>, 2013. # <philippi.sedir@gmail.com>, 2012. # Rodrigo Tavares <rodrigo.st23@hotmail.com>, 2013. # <tbsoares@gmail.com>, 2012. @@ -10,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 12:10+0000\n" +"Last-Translator: dudanogueira <dudanogueira@gmail.com>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,7 +24,7 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "Não foi possível reverter: %s" +msgstr "Impossível reverter: %s" #: history.php:40 msgid "success" @@ -43,17 +44,17 @@ msgstr "falha" msgid "File %s could not be reverted to version %s" msgstr "Arquivo %s não pôde ser revertido à versão %s" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "Nenhuma versão antiga disponível" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "Nenhum caminho especificado" #: js/versions.js:6 msgid "Versions" -msgstr "" +msgstr "Versões" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index 67b5131b423b20b0dae33bb07a2b6b9cb64a8010..7558c7b05ac8e7907be8e9c02d76f66c062fd290 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -3,6 +3,8 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# <dudanogueira@gmail.com>, 2013. +# Marcos Rodrigo Ladeia <marcosrodrigo.ladeia@gmail.com>, 2013. # <philippi.sedir@gmail.com>, 2012. # Rodrigo Tavares <rodrigo.st23@hotmail.com>, 2013. # Tulio Simoes Martins Padilha <tuliouel@gmail.com>, 2013. @@ -10,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 12:31+0000\n" +"Last-Translator: dudanogueira <dudanogueira@gmail.com>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -38,7 +40,7 @@ msgstr "A configuração é válida, mas o Bind falhou. Confira as configuraçõ msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "A configuração é inválida. Leia o \"log\" do ownCloud para mais detalhes." +msgstr "A configuração é inválida. Leia o log do ownCloud para mais detalhes." #: js/settings.js:66 msgid "Deletion failed" @@ -54,11 +56,11 @@ msgstr "Manter ajustes?" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "Não foi possível adicionar a configuração do servidor" +msgstr "Impossível adicionar a configuração do servidor" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "Teste de conexão bem sucedido" +msgstr "Teste de conexão bem sucedida" #: js/settings.js:126 msgid "Connection test failed" @@ -89,248 +91,248 @@ msgstr "<b>Aviso:</b> O módulo PHP LDAP não está instalado, o backend não fu msgid "Server configuration" msgstr "Configuração de servidor" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" -msgstr "Adicionar configuração de servidor" +msgstr "Adicionar Configuração de Servidor" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" -msgstr "Host" +msgstr "Servidor" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Você pode omitir o protocolo, exceto quando requerer SSL. Então inicie com ldaps://" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "DN Base" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "Uma base DN por linha" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Você pode especificar DN Base para usuários e grupos na guia Avançada" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "DN Usuário" -#: templates/settings.php:32 +#: templates/settings.php:45 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 "O DN do cliente usuário com qual a ligação deverá ser feita, ex. uid=agent,dc=example,dc=com. Para acesso anônimo, deixe DN e Senha vazios." -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "Senha" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "Para acesso anônimo, deixe DN e Senha vazios." -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "Filtro de Login de Usuário" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "Define o filtro pra aplicar ao efetuar uma tentativa de login. %%uuid substitui o nome de usuário na ação de login." -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "use %%uid placeholder, ex. \"uid=%%uid\"" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "Filtro de Lista de Usuário" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." -msgstr "Define filtro a aplicar ao obter usuários." +msgstr "Define filtro a ser aplicado ao obter usuários." -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "sem nenhum espaço reservado, ex. \"objectClass=person\"." -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "Filtro de Grupo" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "Define o filtro a aplicar ao obter grupos." -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "sem nenhum espaço reservado, ex. \"objectClass=posixGroup\"" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" -msgstr "Configurações de conexão" +msgstr "Configurações de Conexão" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "Configuração ativa" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." -msgstr "Quando assinalada, esta configuração será pulada." +msgstr "Quando não marcada, esta configuração será ignorada." -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "Porta" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" -msgstr "" +msgstr "Servidor de Backup (Réplica)" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "" +msgstr "Defina um servidor de backup opcional. Ele deverá ser uma réplica do servidor LDAP/AD principal." -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" -msgstr "" +msgstr "Porta do Backup (Réplica)" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "Desativar Servidor Principal" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Quando ativado, ownCloud somente conectar-se-á ao servidor réplica." +msgstr "Quando ativado, ownCloud somente se conectará ao servidor de réplica." -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "Usar TLS" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "Não use adicionalmente para conexões LDAPS, pois falhará." -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "Servidor LDAP sensível à caixa alta (Windows)" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "Desligar validação de certificado SSL." -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "Se a conexão só funciona com essa opção, importe o certificado SSL do servidor LDAP no seu servidor ownCloud." -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "Não recomendado, use somente para testes." -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" -msgstr "" +msgstr "Cache Time-To-Live" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "em segundos. Uma mudança esvaziará o cache." -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "Configurações de Diretório" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "Campo Nome de Exibição de Usuário" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "O atributo LDAP para usar para gerar nome ownCloud do usuário." -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "Árvore de Usuário Base" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "Um usuário-base DN por linha" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" -msgstr "Atributos de busca de usuário" +msgstr "Atributos de Busca de Usuário" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "Opcional; um atributo por linha" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "Campo Nome de Exibição de Grupo" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "O atributo LDAP para usar para gerar nome ownCloud do grupo." -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "Árvore de Grupo Base" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "Um grupo-base DN por linha" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" -msgstr "Atributos de busca de grupo" +msgstr "Atributos de Busca de Grupo" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "Associação Grupo-Membro" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "Atributos Especiais" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" -msgstr "" +msgstr "Campo de Cota" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" -msgstr "" +msgstr "Cota Padrão" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "em bytes" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" -msgstr "" +msgstr "Campo de Email" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" -msgstr "" +msgstr "Regra para Nome da Pasta Pessoal do Usuário" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Deixe vazio para nome de usuário (padrão). Caso contrário, especifique um atributo LDAP/AD." -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" -msgstr "" +msgstr "Teste de Configuração" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "Ajuda" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index c940768d139263a2ccdce00e687b38f7bdc48505..55c2ec26ca9ca29752df7a0836a02815846fd928 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-03-06 00:07+0100\n" +"PO-Revision-Date: 2013-03-05 11:39+0000\n" +"Last-Translator: Helder Meneses <helder.meneses@gmail.com>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -286,7 +286,7 @@ msgstr "Cancelar envio" #: templates/index.php:53 msgid "You don’t have write permissions here." -msgstr "" +msgstr "Não tem permissões de escrita aqui." #: templates/index.php:60 msgid "Nothing in here. Upload something!" diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index 78a9338563717cbf028d1babe4ab3b314dcd1511..6a1dd0910b8f4376184585b5d8d88816edeb3793 100644 --- a/l10n/pt_PT/files_external.po +++ b/l10n/pt_PT/files_external.po @@ -5,13 +5,14 @@ # Translators: # <daniel@mouxy.net>, 2012. # Duarte Velez Grilo <duartegrilo@gmail.com>, 2012. +# Helder Meneses <helder.meneses@gmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-27 23:20+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-03-06 00:07+0100\n" +"PO-Revision-Date: 2013-03-05 11:40+0000\n" +"Last-Translator: Helder Meneses <helder.meneses@gmail.com>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,7 +44,7 @@ msgstr "Erro ao configurar o armazenamento do Google Drive" msgid "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "<b>Aviso:</b> O cliente \"smbclient\" não está instalado. Não é possível montar as partilhas CIFS/SMB . Peça ao seu administrador para instalar." +msgstr "<b>Atenção:</b> O cliente \"smbclient\" não está instalado. Não é possível montar as partilhas CIFS/SMB . Peça ao seu administrador para instalar." #: lib/config.php:424 msgid "" @@ -62,7 +63,7 @@ msgstr "Nome da pasta" #: templates/settings.php:10 msgid "External storage" -msgstr "" +msgstr "Armazenamento Externo" #: templates/settings.php:11 msgid "Configuration" @@ -78,11 +79,11 @@ msgstr "Aplicável" #: templates/settings.php:33 msgid "Add storage" -msgstr "" +msgstr "Adicionar armazenamento" #: templates/settings.php:90 msgid "None set" -msgstr "Nenhum configurado" +msgstr "Não definido" #: templates/settings.php:91 msgid "All Users" @@ -99,7 +100,7 @@ msgstr "Utilizadores" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Apagar" +msgstr "Eliminar" #: templates/settings.php:129 msgid "Enable User External Storage" diff --git a/l10n/pt_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index a07384333bf76a4f82bd1e1fe4213675bb1df030..abd247504d069915fb5f1086149eb8b574ba015c 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -40,27 +40,27 @@ msgstr "Eliminar permanentemente o(s) ficheiro(s)" msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "Nome" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "Apagado" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "1 pasta" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "{count} pastas" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "1 ficheiro" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "{count} ficheiros" @@ -75,3 +75,7 @@ msgstr "Restaurar" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "Apagar" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/pt_PT/files_versions.po b/l10n/pt_PT/files_versions.po index 48ad1466458cbc62e64ca4f4c6756bbdc5a6acde..54018e45527e41bd0480898f883867d1cabf566b 100644 --- a/l10n/pt_PT/files_versions.po +++ b/l10n/pt_PT/files_versions.po @@ -5,13 +5,14 @@ # Translators: # Daniel Pinto <daniel@mouxy.net>, 2013. # Duarte Velez Grilo <duartegrilo@gmail.com>, 2012. +# Helder Meneses <helder.meneses@gmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-03-06 00:07+0100\n" +"PO-Revision-Date: 2013-03-05 11:40+0000\n" +"Last-Translator: Helder Meneses <helder.meneses@gmail.com>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -42,17 +43,17 @@ msgstr "Falha" msgid "File %s could not be reverted to version %s" msgstr "Não foi possível reverter o ficheiro %s para a versão %s" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "Não existem versões mais antigas" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "Nenhum caminho especificado" #: js/versions.js:6 msgid "Versions" -msgstr "" +msgstr "Versões" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index 38ec95480be7d22071a793303cd9e00ae6479b66..e251c49b92848feda8f99050afca7dadfe8996ee 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -6,13 +6,14 @@ # <daniel@mouxy.net>, 2012-2013. # Daniel Pinto <daniel@mouxy.net>, 2013. # Duarte Velez Grilo <duartegrilo@gmail.com>, 2012. +# Helder Meneses <helder.meneses@gmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-03-06 00:07+0100\n" +"PO-Revision-Date: 2013-03-05 11:40+0000\n" +"Last-Translator: Helder Meneses <helder.meneses@gmail.com>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -177,7 +178,7 @@ msgstr "O comando gerador de erro foi: \"%s\", nome: %s, password: %s" #: setup.php:631 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "" +msgstr "Nome de utilizador/password do MySQL é inválido: %s" #: setup.php:849 msgid "" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index ed47e12c9c5c5b10431b6c7f72a27469ea7a75be..84f9f0950299d2949b25277788bcff6ab8041199 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -8,16 +8,16 @@ # <duartegrilo@gmail.com>, 2013. # Duarte Velez Grilo <duartegrilo@gmail.com>, 2012-2013. # <geral@ricardolameiro.pt>, 2012. -# Helder Meneses <helder.meneses@gmail.com>, 2012. +# Helder Meneses <helder.meneses@gmail.com>, 2012-2013. # Miguel Sousa <migueljorgesousa@sapo.pt>, 2013. # <rjgpp.1994@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-03-06 00:07+0100\n" +"PO-Revision-Date: 2013-03-05 11:39+0000\n" +"Last-Translator: Helder Meneses <helder.meneses@gmail.com>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -221,7 +221,7 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "" +msgstr "Este servidor de ownCloud não consegue definir a codificação de caracteres para %s. Isto significa que pode haver problemas com alguns caracteres nos nomes dos ficheiros. É fortemente recomendado que instale o pacote recomendado para ser possível ver caracteres codificados em %s." #: templates/admin.php:75 msgid "Internet connection not working" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index d42fa5bc3da3ffacd6224c9ead86345d50c2b361..594e6693abe1fce7faa9ada99a9bfcc0efd88e69 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-03-06 00:07+0100\n" +"PO-Revision-Date: 2013-03-05 11:40+0000\n" +"Last-Translator: Helder Meneses <helder.meneses@gmail.com>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -241,7 +241,7 @@ msgstr "Não recomendado, utilizado apenas para testes!" #: templates/settings.php:65 msgid "Cache Time-To-Live" -msgstr "" +msgstr "Cache do tempo de vida dos objetos no servidor" #: templates/settings.php:65 msgid "in seconds. A change empties the cache." @@ -305,11 +305,11 @@ msgstr "Atributos especiais" #: templates/settings.php:79 msgid "Quota Field" -msgstr "" +msgstr "Quota" #: templates/settings.php:80 msgid "Quota Default" -msgstr "" +msgstr "Quota padrão" #: templates/settings.php:80 msgid "in bytes" @@ -317,11 +317,11 @@ msgstr "em bytes" #: templates/settings.php:81 msgid "Email Field" -msgstr "" +msgstr "Campo de email" #: templates/settings.php:82 msgid "User Home Folder Naming Rule" -msgstr "" +msgstr "Regra da pasta inicial do utilizador" #: templates/settings.php:82 msgid "" @@ -331,7 +331,7 @@ msgstr "Deixe vazio para nome de utilizador (padrão). De outro modo, especifiqu #: templates/settings.php:86 msgid "Test Configuration" -msgstr "" +msgstr "Testar a configuração" #: templates/settings.php:86 msgid "Help" diff --git a/l10n/ro/files_trashbin.po b/l10n/ro/files_trashbin.po index a58055214727b7d6613af37584e8cffb27e5dbf3..facd2efe40d35614fa981e099d5e4a94f5a5990a 100644 --- a/l10n/ro/files_trashbin.po +++ b/l10n/ro/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -39,27 +39,27 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "Nume" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "1 folder" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "{count} foldare" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "1 fisier" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "{count} fisiere" @@ -74,3 +74,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "Șterge" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index fff8f9c064fc319b6fb3d32cb19cd8e86527d65f..b30bcd85ec26b7c10447e39f8eaa78f7f809cd19 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -40,27 +40,27 @@ msgstr "удалить файл навсегда" msgid "Delete permanently" msgstr "Удалено навсегда" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "Имя" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "Удалён" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "1 папка" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "{count} папок" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "1 файл" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "{count} файлов" @@ -75,3 +75,7 @@ msgstr "Восстановить" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "Удалить" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/ru_RU/files_trashbin.po b/l10n/ru_RU/files_trashbin.po index a2501fc63a0691e64af3b0c234ded06663740d6e..5d352379365593b7c8f05cff1f2c15a2a4aa8468 100644 --- a/l10n/ru_RU/files_trashbin.po +++ b/l10n/ru_RU/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -40,27 +40,27 @@ msgstr "удалить файл навсегда" msgid "Delete permanently" msgstr "Удалить навсегда" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "Имя" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "Удалён" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "1 папка" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "{количество} папок" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "1 файл" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "{количество} файлов" @@ -75,3 +75,7 @@ msgstr "Восстановить" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "Удалить" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/si_LK/files_trashbin.po b/l10n/si_LK/files_trashbin.po index 4013fa0197fdff5e24680388a1e2fa656f68eccf..fd1a2c1ae8c51c9544c189a5f07325e930ef0c63 100644 --- a/l10n/si_LK/files_trashbin.po +++ b/l10n/si_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -39,27 +39,27 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "නම" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "1 ෆොල්ඩරයක්" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "1 ගොනුවක්" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "" @@ -74,3 +74,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "මකා දමන්න" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/sk/files_trashbin.po b/l10n/sk/files_trashbin.po index 99f8cea940a201e06a8ccdc501ff7c291b3c2127..39049d7953472c5ff5c098aafb92dce40ad51cb8 100644 --- a/l10n/sk/files_trashbin.po +++ b/l10n/sk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-21 00:14+0100\n" -"PO-Revision-Date: 2013-02-20 23:14+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -39,27 +39,27 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "" @@ -74,3 +74,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/sk_SK/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index eac6d4eb70734f2a20ae2dfb6c99c8d156750382..9e51dd8cd252d50f658f93c3fd2631a39fc4e86a 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -41,27 +41,27 @@ msgstr "trvalo zmazať súbor" msgid "Delete permanently" msgstr "Zmazať trvalo" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "Meno" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "Zmazané" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "1 priečinok" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "{count} priečinkov" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "1 súbor" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "{count} súborov" @@ -76,3 +76,7 @@ msgstr "Obnoviť" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "Zmazať" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/sl/files_trashbin.po b/l10n/sl/files_trashbin.po index d5385c3971707bf3a305ad45b6c881f684d9ca0e..6731c6eb2b99aa6a02573f2a650a904cae533490 100644 --- a/l10n/sl/files_trashbin.po +++ b/l10n/sl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -39,27 +39,27 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "Ime" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "1 mapa" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "{count} map" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "1 datoteka" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "{count} datotek" @@ -74,3 +74,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "Izbriši" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/sr/files_trashbin.po b/l10n/sr/files_trashbin.po index 17776189344708b9cc689ecb831b41ac975b25b8..b02e31e10988f7bb047c967682224b3cf8990cd1 100644 --- a/l10n/sr/files_trashbin.po +++ b/l10n/sr/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -40,27 +40,27 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "Име" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "Обрисано" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "1 фасцикла" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "{count} фасцикле/и" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "1 датотека" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "{count} датотеке/а" @@ -75,3 +75,7 @@ msgstr "Врати" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "Обриши" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/sr@latin/files_trashbin.po b/l10n/sr@latin/files_trashbin.po index 46d256675abaf2ec5d9d09f70cd9f746a7c71404..65e0a7afc15ddc1804a0c7c52fe6481c0bb01db7 100644 --- a/l10n/sr@latin/files_trashbin.po +++ b/l10n/sr@latin/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -39,27 +39,27 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "Ime" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "" @@ -74,3 +74,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "Obriši" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 4e04044cf46f6ca2bb22e34cc19d980451bce023..c965ecb646ec8d48e5f168e9b1d1833bcbd7acd7 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-03-07 00:16+0100\n" +"PO-Revision-Date: 2013-03-06 01:40+0000\n" +"Last-Translator: Lokal_Profil <lokal_profil@hotmail.com>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -285,7 +285,7 @@ msgstr "Avbryt uppladdning" #: templates/index.php:53 msgid "You don’t have write permissions here." -msgstr "" +msgstr "Du saknar skrivbehörighet här." #: templates/index.php:60 msgid "Nothing in here. Upload something!" diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index 9c36675eaddfa777e6961909433c30bc9e3c848f..edcc1e79da000cf811cabf45ac77e46238857c59 100644 --- a/l10n/sv/files_external.po +++ b/l10n/sv/files_external.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# André <lokal_profil@hotmail.com>, 2013. # Magnus Höglund <magnus@linux.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-27 23:20+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-03-07 00:16+0100\n" +"PO-Revision-Date: 2013-03-06 01:40+0000\n" +"Last-Translator: Lokal_Profil <lokal_profil@hotmail.com>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -61,7 +62,7 @@ msgstr "Mappnamn" #: templates/settings.php:10 msgid "External storage" -msgstr "" +msgstr "Extern lagring" #: templates/settings.php:11 msgid "Configuration" @@ -77,7 +78,7 @@ msgstr "Tillämplig" #: templates/settings.php:33 msgid "Add storage" -msgstr "" +msgstr "Lägg till lagring" #: templates/settings.php:90 msgid "None set" diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index 3c94578cfe9d3bef0736c088dc29da13ab2bee61..48a48d9ad757d32d6e880f20c133c66e19f1f94e 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -41,27 +41,27 @@ msgstr "radera filen permanent" msgid "Delete permanently" msgstr "Radera permanent" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "Namn" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "Raderad" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "1 mapp" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "{count} mappar" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "1 fil" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "{count} filer" @@ -76,3 +76,7 @@ msgstr "Återskapa" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "Radera" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 946b6e1173590f2f6c8865977fd0915c1131ba91..bf1d01a7e9595e65ef4b756e165f2d8c78e2cb7e 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-03-07 00:16+0100\n" +"PO-Revision-Date: 2013-03-06 01:50+0000\n" +"Last-Translator: Lokal_Profil <lokal_profil@hotmail.com>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -156,19 +156,19 @@ msgstr "Radera" #: js/users.js:191 msgid "add group" -msgstr "" +msgstr "lägg till grupp" #: js/users.js:352 msgid "A valid username must be provided" -msgstr "" +msgstr "Ett giltigt användarnamn måste anges" #: js/users.js:353 js/users.js:359 js/users.js:374 msgid "Error creating user" -msgstr "" +msgstr "Fel vid skapande av användare" #: js/users.js:358 msgid "A valid password must be provided" -msgstr "" +msgstr "Ett giltigt lösenord måste anges" #: personal.php:29 personal.php:30 msgid "__language_name__" @@ -204,7 +204,7 @@ msgstr "Var god kontrollera <a href='%s'>installationsguiden</a>." #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "" +msgstr "Modulen \"fileinfo\" saknas" #: templates/admin.php:47 msgid "" @@ -260,7 +260,7 @@ msgstr "" #: templates/admin.php:128 msgid "Sharing" -msgstr "" +msgstr "Dela" #: templates/admin.php:134 msgid "Enable Share API" @@ -272,7 +272,7 @@ msgstr "" #: templates/admin.php:142 msgid "Allow links" -msgstr "" +msgstr "Tillåt länkar" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" @@ -280,23 +280,23 @@ msgstr "" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "" +msgstr "Tillåt vidaredelning" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "Tillåt användare att dela vidare filer som delats med dem" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Tillåt delning med alla" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Tillåt bara delning med användare i egna grupper" #: templates/admin.php:168 msgid "Security" -msgstr "" +msgstr "Säkerhet" #: templates/admin.php:181 msgid "Enforce HTTPS" @@ -315,7 +315,7 @@ msgstr "" #: templates/admin.php:195 msgid "Log" -msgstr "" +msgstr "Logg" #: templates/admin.php:196 msgid "Log level" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index e7d82eb4806596030b5e1706639fce745b07f57a..2a936630928473f176b5e46c861a927dc9153001 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-03-07 00:16+0100\n" +"PO-Revision-Date: 2013-03-06 01:40+0000\n" +"Last-Translator: Lokal_Profil <lokal_profil@hotmail.com>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -89,248 +89,248 @@ msgstr "<b>Varning:</b> PHP LDAP - modulen är inte installerad, serversidan kom msgid "Server configuration" msgstr "Serverinställning" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "Lägg till serverinställning" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "Server" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Du behöver inte ange protokoll förutom om du använder SSL. Starta då med ldaps://" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "Start DN" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "Ett Start DN per rad" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Du kan ange start DN för användare och grupper under fliken Avancerat" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "Användare DN" -#: templates/settings.php:32 +#: templates/settings.php:45 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 "DN för användaren som skall användas, t.ex. uid=agent, dc=example, dc=com. För anonym åtkomst, lämna DN och lösenord tomt." -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "Lösenord" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "För anonym åtkomst, lämna DN och lösenord tomt." -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "Filter logga in användare" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "Definierar filter att tillämpa vid inloggningsförsök. %% uid ersätter användarnamn i loginåtgärden." -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "använd platshållare %%uid, t ex \"uid=%%uid\"" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "Filter lista användare" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "Definierar filter att tillämpa vid listning av användare." -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "utan platshållare, t.ex. \"objectClass=person\"." -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "Gruppfilter" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "Definierar filter att tillämpa vid listning av grupper." -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "utan platshållare, t.ex. \"objectClass=posixGroup\"." -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "Uppkopplingsinställningar" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "Konfiguration aktiv" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "Ifall denna är avbockad så kommer konfigurationen att skippas." -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "Port" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "Säkerhetskopierings-värd (Replika)" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "Ange en valfri värd för säkerhetskopiering. Den måste vara en replika av den huvudsakliga LDAP/AD-servern" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "Säkerhetskopierins-port (Replika)" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "Inaktivera huvudserver" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "När denna är påkopplad kommer ownCloud att koppla upp till replika-servern, endast." -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "Använd TLS" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "Använd inte för LDAPS-anslutningar, det kommer inte att fungera." -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "LDAP-servern är okänslig för gemener och versaler (Windows)" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "Stäng av verifiering av SSL-certifikat." -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "Om anslutningen bara fungerar med det här alternativet, importera LDAP-serverns SSL-certifikat i din ownCloud-server." -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "Rekommenderas inte, använd bara för test. " -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "i sekunder. En förändring tömmer cache." -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "Mappinställningar" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "Attribut för användarnamn" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "Attribut som används för att generera användarnamn i ownCloud." -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "Bas för användare i katalogtjänst" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "En Användare start DN per rad" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "Användarsökningsattribut" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "Valfritt; ett attribut per rad" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "Attribut för gruppnamn" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "Attribut som används för att generera gruppnamn i ownCloud." -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "Bas för grupper i katalogtjänst" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "En Grupp start DN per rad" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "Gruppsökningsattribut" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "Attribut för gruppmedlemmar" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "Specialattribut" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" -msgstr "" +msgstr "Kvotfält" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "i bytes" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" -msgstr "" +msgstr "E-postfält" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Lämnas tomt för användarnamn (standard). Ange annars ett LDAP/AD-attribut." -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "Hjälp" diff --git a/l10n/sw_KE/files_trashbin.po b/l10n/sw_KE/files_trashbin.po index b7f72239297981327c8634d22b6f0764ba1f06c9..441869baaba1c193a658da094ba3e3661dfd9ca5 100644 --- a/l10n/sw_KE/files_trashbin.po +++ b/l10n/sw_KE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-21 00:14+0100\n" -"PO-Revision-Date: 2013-02-20 23:14+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -39,27 +39,27 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "" @@ -74,3 +74,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/ta_LK/files_trashbin.po b/l10n/ta_LK/files_trashbin.po index 7b089df60010f282dac5249940a0fe8c51f9211b..ee8095bcdc257b3e187b1a8f39402ecf6ba92f86 100644 --- a/l10n/ta_LK/files_trashbin.po +++ b/l10n/ta_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -39,27 +39,27 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "பெயர்" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "1 கோப்புறை" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "{எண்ணிக்கை} கோப்புறைகள்" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "1 கோப்பு" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "{எண்ணிக்கை} கோப்புகள்" @@ -74,3 +74,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "நீக்குக" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 219bf35914a04e3968da9fc9b068fb802c3b3e92..160af149eda0830e6d8960f2b7fecae64c0d7831 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 72f58c06838663229b8504246822a5d2622770ce..111131195de71bc6ddf3a3fdf009bfdb35944efa 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -90,8 +90,8 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 +#: js/files.js:440 msgid "Pending" msgstr "" @@ -145,74 +145,74 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:262 +#: js/files.js:263 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:262 +#: js/files.js:263 msgid "Upload Error" msgstr "" -#: js/files.js:273 +#: js/files.js:274 msgid "Close" msgstr "" -#: js/files.js:312 +#: js/files.js:313 msgid "1 file uploading" msgstr "" -#: js/files.js:315 js/files.js:370 js/files.js:385 +#: js/files.js:316 js/files.js:371 js/files.js:386 msgid "{count} files uploading" msgstr "" -#: js/files.js:388 js/files.js:423 +#: js/files.js:389 js/files.js:424 msgid "Upload cancelled." msgstr "" -#: js/files.js:497 +#: js/files.js:498 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:570 +#: js/files.js:571 msgid "URL cannot be empty." msgstr "" -#: js/files.js:575 +#: js/files.js:576 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:954 templates/index.php:68 msgid "Name" msgstr "" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:955 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:956 templates/index.php:81 msgid "Modified" msgstr "" -#: js/files.js:974 +#: js/files.js:975 msgid "1 folder" msgstr "" -#: js/files.js:976 +#: js/files.js:977 msgid "{count} folders" msgstr "" -#: js/files.js:984 +#: js/files.js:985 msgid "1 file" msgstr "" -#: js/files.js:986 +#: js/files.js:987 msgid "{count} files" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index b57b08dcda209e3bcbdea1f95e116876ea9dc0f1..346bfbdf1840f08e9863c8a4db9b172743b1d543 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 74f193704fcd5a2b3d63e3adbb5dcd6840e8d652..2d2aed314af0bb86c58c991ef9f0b6a3182a79b1 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 5c2416d85b0c6e6c724c817bceef8c51fe66338d..43243d0e614cef8af96b3ebe9883801c3e7a72f0 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index bfccd2296468144534038220cca3660082d07e83..497a5c3ab6e14a81686c1a6d445241978834dbe6 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -74,3 +74,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 5c289ea6655c8e755379fd076cfd59218c4f365c..51022726f2bc5cc36c25b4d8b2f15e19165a7941 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 6d35680ccd7e6641a0eb232ee0b7cafa8353fa99..7cee4b36ccc5f7eb3c1f64d3386c731f9635adf9 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -41,19 +41,19 @@ msgstr "" msgid "Admin" msgstr "" -#: files.php:202 +#: files.php:209 msgid "ZIP download is turned off." msgstr "" -#: files.php:203 +#: files.php:210 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:204 files.php:231 +#: files.php:211 files.php:238 msgid "Back to Files" msgstr "" -#: files.php:228 +#: files.php:235 msgid "Selected files too large to generate zip file." msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 588e6c0b61255e88a7f2b690cd250edc672cf047..31cd164617479941d878d8923d5ed01dbdba5adc 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 1163dc598407b1617b09faccb87298203513b283..ba91ba629c39f543612e83993d57858c0e6f3e1a 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -86,246 +86,246 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. uid=agent," "dc=example,dc=com. For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 1973963fc42bcf46fb2d48da041304f88a33ab73..8f6a357f841b48a5ee6268d1d10138f520c7c73a 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/th_TH/files_trashbin.po b/l10n/th_TH/files_trashbin.po index 17daf5430d128de5053a82b3e6bbdf98a16f63cb..29f0f76aecaf434a2c52e59ca1f686d5def39783 100644 --- a/l10n/th_TH/files_trashbin.po +++ b/l10n/th_TH/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -40,27 +40,27 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "ชื่อ" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "ลบแล้ว" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "1 โฟลเดอร์" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "{count} โฟลเดอร์" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "1 ไฟล์" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "{count} ไฟล์" @@ -75,3 +75,7 @@ msgstr "คืนค่า" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "ลบ" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/tr/files_trashbin.po b/l10n/tr/files_trashbin.po index dbf5551a0ca593e0e62bfed4c264673aab9c4f0c..02db6edc713e3b21e85f43b0dac809abb9198d9b 100644 --- a/l10n/tr/files_trashbin.po +++ b/l10n/tr/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -40,27 +40,27 @@ msgstr "Dosyayı kalıcı olarak sil" msgid "Delete permanently" msgstr "Kalıcı olarak sil" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "İsim" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "Silindi" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "1 dizin" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "{count} dizin" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "1 dosya" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "{count} dosya" @@ -75,3 +75,7 @@ msgstr "Geri yükle" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "Sil" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 9190522a245978ab6aa2334310548967e6e896ee..58aae0590c5f06920f533d03dfb9db76dbe4ad1e 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-03-06 00:07+0100\n" +"PO-Revision-Date: 2013-03-05 12:31+0000\n" +"Last-Translator: volodya327 <volodya327@gmail.com>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -282,7 +282,7 @@ msgstr "Перервати завантаження" #: templates/index.php:53 msgid "You don’t have write permissions here." -msgstr "" +msgstr "У вас тут немає прав на запис." #: templates/index.php:60 msgid "Nothing in here. Upload something!" diff --git a/l10n/uk/files_external.po b/l10n/uk/files_external.po index fa01cae3e0f007b5788625df391067f7fa668ee7..1936a470772cf0c8c4cc4eacdfc0b087e3efc86c 100644 --- a/l10n/uk/files_external.po +++ b/l10n/uk/files_external.po @@ -5,13 +5,14 @@ # Translators: # <skoptev@ukr.net>, 2012. # <victor.dubiniuk@gmail.com>, 2012. +# пан Володимир <volodya327@gmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-27 23:20+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-03-06 00:07+0100\n" +"PO-Revision-Date: 2013-03-05 12:31+0000\n" +"Last-Translator: volodya327 <volodya327@gmail.com>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -62,7 +63,7 @@ msgstr "Ім'я теки" #: templates/settings.php:10 msgid "External storage" -msgstr "" +msgstr "Зовнішнє сховище" #: templates/settings.php:11 msgid "Configuration" @@ -78,7 +79,7 @@ msgstr "Придатний" #: templates/settings.php:33 msgid "Add storage" -msgstr "" +msgstr "Додати сховище" #: templates/settings.php:90 msgid "None set" diff --git a/l10n/uk/files_trashbin.po b/l10n/uk/files_trashbin.po index 8baab90eba95a5752ad783ae6ad5ce7b65c7e87c..c722965153b80291a37ad705d89a4cc260e35e40 100644 --- a/l10n/uk/files_trashbin.po +++ b/l10n/uk/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -40,27 +40,27 @@ msgstr "видалити файл назавжди" msgid "Delete permanently" msgstr "Видалити назавжди" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "Ім'я" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "Видалено" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "1 папка" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "{count} папок" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "1 файл" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "{count} файлів" @@ -75,3 +75,7 @@ msgstr "Відновити" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "Видалити" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/uk/files_versions.po b/l10n/uk/files_versions.po index df8def6b6843f3a798d154ec463f3186008e5adf..57d0fd1f10c97020c8b1d9f546844e76b7a676da 100644 --- a/l10n/uk/files_versions.po +++ b/l10n/uk/files_versions.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-03-06 00:07+0100\n" +"PO-Revision-Date: 2013-03-05 12:40+0000\n" +"Last-Translator: volodya327 <volodya327@gmail.com>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -42,17 +42,17 @@ msgstr "неуспішно" msgid "File %s could not be reverted to version %s" msgstr "Файл %s не може бути відновлений до версії %s" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "Старі версії недоступні" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "Шлях не вказаний" #: js/versions.js:6 msgid "Versions" -msgstr "" +msgstr "Версії" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index 13539fc50aad54e801738ab2bd1949e5bcfd4878..3c4943397c87baa0087da141a09285922dd81d15 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-03-06 00:07+0100\n" +"PO-Revision-Date: 2013-03-05 12:21+0000\n" +"Last-Translator: volodya327 <volodya327@gmail.com>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -179,7 +179,7 @@ msgstr "Команда, що викликала проблему: \"%s\", ім' #: setup.php:631 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "" +msgstr "MS SQL ім'я користувача та/або пароль не дійсні: %s" #: setup.php:849 msgid "" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index b5d7a8ee06eccec1510fee1a2884c1e7d92ed1a9..dd232bdd1ec726562f16e59c0830106cb3908adf 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-03-06 00:07+0100\n" +"PO-Revision-Date: 2013-03-05 12:20+0000\n" +"Last-Translator: volodya327 <volodya327@gmail.com>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -217,7 +217,7 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "" +msgstr "Цей сервер ownCloud не може встановити мову системи %s. Це означає, що можуть бути проблеми з деякими символами в іменах файлів. Ми наполегливо рекомендуємо встановити необхідні пакети у вашій системі для підтримки %s." #: templates/admin.php:75 msgid "Internet connection not working" diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index 676a44847ab14c0620513eccac55184a5f0083c9..c520e5395365f0aac21f4911400a12fc333bf21a 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-03-06 00:07+0100\n" +"PO-Revision-Date: 2013-03-05 12:31+0000\n" +"Last-Translator: volodya327 <volodya327@gmail.com>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -239,7 +239,7 @@ msgstr "Не рекомендується, використовуйте лише #: templates/settings.php:65 msgid "Cache Time-To-Live" -msgstr "" +msgstr "Час актуальності Кеша" #: templates/settings.php:65 msgid "in seconds. A change empties the cache." @@ -303,11 +303,11 @@ msgstr "Спеціальні Атрибути" #: templates/settings.php:79 msgid "Quota Field" -msgstr "" +msgstr "Поле Квоти" #: templates/settings.php:80 msgid "Quota Default" -msgstr "" +msgstr "Квота за замовчанням" #: templates/settings.php:80 msgid "in bytes" @@ -315,11 +315,11 @@ msgstr "в байтах" #: templates/settings.php:81 msgid "Email Field" -msgstr "" +msgstr "Поле Ел. пошти" #: templates/settings.php:82 msgid "User Home Folder Naming Rule" -msgstr "" +msgstr "Правило іменування домашньої теки користувача" #: templates/settings.php:82 msgid "" @@ -329,7 +329,7 @@ msgstr "Залиште порожнім для імені користувача #: templates/settings.php:86 msgid "Test Configuration" -msgstr "" +msgstr "Тестове налаштування" #: templates/settings.php:86 msgid "Help" diff --git a/l10n/ur_PK/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index 4e66d16ae31188be0dfe7439d93a05107954f109..89afda771afe20f8c9a9af8703a9d9f1d6c1a341 100644 --- a/l10n/ur_PK/files_trashbin.po +++ b/l10n/ur_PK/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-26 00:04+0100\n" -"PO-Revision-Date: 2013-01-31 16:03+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -39,27 +39,27 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "" @@ -74,3 +74,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/vi/files_trashbin.po b/l10n/vi/files_trashbin.po index 1bd8d833be1f90d426531dc0f63425e0a6e16706..5087b9c429781374baedded5117dd7630876f4c1 100644 --- a/l10n/vi/files_trashbin.po +++ b/l10n/vi/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -40,27 +40,27 @@ msgstr "xóa file vĩnh viễn" msgid "Delete permanently" msgstr "Xóa vĩnh vễn" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "Tên" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "Đã xóa" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "1 thư mục" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "{count} thư mục" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "1 tập tin" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "{count} tập tin" @@ -75,3 +75,7 @@ msgstr "Khôi phục" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "Xóa" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/zh_CN.GB2312/files_trashbin.po b/l10n/zh_CN.GB2312/files_trashbin.po index 23c17f7e30d21b9d171059b1800251eb86234eb0..c433a8e19b7cce7f69924a8bf0b3acf9d99a7ead 100644 --- a/l10n/zh_CN.GB2312/files_trashbin.po +++ b/l10n/zh_CN.GB2312/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -39,27 +39,27 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "名称" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "1 个文件夹" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "{count} 个文件夹" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "1 个文件" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "{count} 个文件" @@ -74,3 +74,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "删除" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/zh_CN/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index 944ac8ff4af004fd449d49dcb29747f6a01cb831..91cae3fa60fff3f9a7c4651d38367c262ee54354 100644 --- a/l10n/zh_CN/files_trashbin.po +++ b/l10n/zh_CN/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -39,27 +39,27 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "名称" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "1个文件夹" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "{count} 个文件夹" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "1 个文件" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "{count} 个文件" @@ -74,3 +74,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "删除" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index 3619584ba4deed48888c2818e167662ef890c07f..efeae3b8e6c9f6c80934f00528dbe7c182c55b59 100644 --- a/l10n/zh_HK/files_trashbin.po +++ b/l10n/zh_HK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-21 00:14+0100\n" -"PO-Revision-Date: 2013-02-20 23:14+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -39,27 +39,27 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "" @@ -74,3 +74,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index 9ddcf5237e0c85fc05fdd3c1fee50a14b94c7918..286b95c98d16068f985f83904d1112953aa7fa11 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-22 00:06+0100\n" -"PO-Revision-Date: 2013-02-20 23:32+0000\n" +"POT-Creation-Date: 2013-03-08 00:25+0100\n" +"PO-Revision-Date: 2013-03-07 23:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -39,27 +39,27 @@ msgstr "" msgid "Delete permanently" msgstr "永久刪除" -#: js/trash.js:151 templates/index.php:17 +#: js/trash.js:174 templates/index.php:17 msgid "Name" msgstr "名稱" -#: js/trash.js:152 templates/index.php:27 +#: js/trash.js:175 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:161 +#: js/trash.js:184 msgid "1 folder" msgstr "1 個資料夾" -#: js/trash.js:163 +#: js/trash.js:186 msgid "{count} folders" msgstr "{count} 個資料夾" -#: js/trash.js:171 +#: js/trash.js:194 msgid "1 file" msgstr "1 個檔案" -#: js/trash.js:173 +#: js/trash.js:196 msgid "{count} files" msgstr "{count} 個檔案" @@ -74,3 +74,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" msgstr "刪除" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/lib/base.php b/lib/base.php index bffae36261ea7e50cc55e9332def392c3081d36f..59b861ffce110e727f66590e0b81a00778036c71 100644 --- a/lib/base.php +++ b/lib/base.php @@ -277,6 +277,10 @@ class OC { OC_Log::write('core', 'starting upgrade from ' . $installedVersion . ' to ' . $currentVersion, OC_Log::DEBUG); + $minimizerCSS = new OC_Minimizer_CSS(); + $minimizerCSS->clearCache(); + $minimizerJS = new OC_Minimizer_JS(); + $minimizerJS->clearCache(); OC_Util::addscript('update'); $tmpl = new OC_Template('', 'update', 'guest'); $tmpl->assign('version', OC_Util::getVersionString()); diff --git a/lib/connector/sabre/directory.php b/lib/connector/sabre/directory.php index 953692f80a999829ea678f07c0beef1be5240f22..6ccb54b79abe564ba18d3694c8b87b04de4b1d1c 100644 --- a/lib/connector/sabre/directory.php +++ b/lib/connector/sabre/directory.php @@ -107,7 +107,9 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa public function createDirectory($name) { $newPath = $this->path . '/' . $name; - \OC\Files\Filesystem::mkdir($newPath); + if(!\OC\Files\Filesystem::mkdir($newPath)) { + throw new Sabre_DAV_Exception_Forbidden('Could not create directory '.$newPath); + } } diff --git a/lib/files.php b/lib/files.php index b594b78c4b768d7225368859535a76eb07b62ddd..71bb21851b6f57b89c586600eb83a002e16834f0 100644 --- a/lib/files.php +++ b/lib/files.php @@ -49,8 +49,9 @@ class OC_Files { isset($_SERVER['MOD_X_ACCEL_REDIRECT_ENABLED'])) { $xsendfile = true; } - if(strpos($files, ';')) { - $files=explode(';', $files); + + if (count($files) == 1) { + $files = $files[0]; } if (is_array($files)) { @@ -77,7 +78,13 @@ class OC_Files { } } $zip->close(); - $name = basename($dir) . '.zip'; + $basename = basename($dir); + if ($basename) { + $name = $basename . '.zip'; + } else { + $name = 'owncloud.zip'; + } + set_time_limit($executionTime); } elseif (\OC\Files\Filesystem::is_dir($dir . '/' . $files)) { self::validateZipDownload($dir, $files); @@ -212,12 +219,18 @@ class OC_Files { $zipLimit = OC_Config::getValue('maxZipInputSize', OC_Helper::computerFileSize('800 MB')); if ($zipLimit > 0) { $totalsize = 0; - if (is_array($files)) { - foreach ($files as $file) { - $totalsize += \OC\Files\Filesystem::filesize($dir . '/' . $file); + if(!is_array($files)) { + $files = array($files); + } + foreach ($files as $file) { + $path = $dir . '/' . $file; + if(\OC\Files\Filesystem::is_dir($path)) { + foreach (\OC\Files\Filesystem::getDirectoryContent($path) as $i) { + $totalsize += $i['size']; + } + } else { + $totalsize += \OC\Files\Filesystem::filesize($path); } - } else { - $totalsize += \OC\Files\Filesystem::filesize($dir . '/' . $files); } if ($totalsize > $zipLimit) { $l = OC_L10N::get('lib'); diff --git a/lib/files/cache/upgrade.php b/lib/files/cache/upgrade.php index 1fe4c5846867b20b5f1bb15803a0000038a6b0eb..811d82d7437e570883f20328e84c55264619d998 100644 --- a/lib/files/cache/upgrade.php +++ b/lib/files/cache/upgrade.php @@ -64,7 +64,7 @@ class Upgrade { * @param array $data the data for the new cache */ function insert($data) { - if (!$this->inCache($data['storage'], $data['path_hash'])) { + if (!$this->inCache($data['storage'], $data['path_hash'], $data['id'])) { $insertQuery = \OC_DB::prepare('INSERT INTO `*PREFIX*filecache` ( `fileid`, `storage`, `path`, `path_hash`, `parent`, `name`, `mimetype`, `mimepart`, `size`, `mtime`, `encrypted` ) VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)'); @@ -78,11 +78,12 @@ class Upgrade { /** * @param string $storage * @param string $pathHash + * @param string $id * @return bool */ - function inCache($storage, $pathHash) { - $query = \OC_DB::prepare('SELECT `fileid` FROM `*PREFIX*filecache` WHERE `storage` = ? AND `path_hash` = ?'); - $result = $query->execute(array($storage, $pathHash)); + function inCache($storage, $pathHash, $id) { + $query = \OC_DB::prepare('SELECT `fileid` FROM `*PREFIX*filecache` WHERE (`storage` = ? AND `path_hash` = ?) OR `fileid` = ?'); + $result = $query->execute(array($storage, $pathHash, $id)); return (bool)$result->fetchRow(); } diff --git a/lib/files/mount.php b/lib/files/mount.php index 6e99d8eabb49f000305b0a77386963c991bcb9c4..1c9382d78e7d5347b04893217a24c1a4fc4f173b 100644 --- a/lib/files/mount.php +++ b/lib/files/mount.php @@ -176,10 +176,12 @@ class Mount { } /** + * Find mounts by storage id + * * @param string $id - * @return \OC\Files\Storage\Storage[] + * @return Mount[] */ - public static function findById($id) { + public static function findByStorageId($id) { if (strlen($id) > 64) { $id = md5($id); } @@ -191,4 +193,24 @@ class Mount { } return $result; } + + /** + * Find mounts by numeric storage id + * + * @param string $id + * @return Mount + */ + public static function findByNumericId($id) { + $query = \OC_DB::prepare('SELECT `id` FROM `*PREFIX*storages` WHERE `numeric_id` = ?'); + $result = $query->execute(array($id))->fetchOne(); + if ($result) { + $id = $result; + foreach (self::$mounts as $mount) { + if ($mount->getStorageId() === $id) { + return $mount; + } + } + } + return false; + } } diff --git a/lib/files/view.php b/lib/files/view.php index 3e2cb080e1dbd745bd5e666078ba5fca7841981c..19f33ad64a2f3102700146aa2ac3e5866aa10061 100644 --- a/lib/files/view.php +++ b/lib/files/view.php @@ -245,7 +245,14 @@ class View { if (!is_null($mtime) and !is_numeric($mtime)) { $mtime = strtotime($mtime); } - return $this->basicOperation('touch', $path, array('write'), $mtime); + + $hooks = array('touch'); + + if (!$this->file_exists($path)) { + $hooks[] = 'write'; + } + + return $this->basicOperation('touch', $path, $hooks, $mtime); } public function file_get_contents($path) { @@ -596,6 +603,7 @@ class View { if ($path == null) { return false; } + $run = $this->runHooks($hooks, $path); list($storage, $internalPath) = Filesystem::resolvePath($absolutePath . $postFix); if ($run and $storage) { @@ -960,7 +968,7 @@ class View { */ public function getPath($id) { list($storage, $internalPath) = Cache\Cache::getById($id); - $mounts = Mount::findById($storage); + $mounts = Mount::findByStorageId($storage); foreach ($mounts as $mount) { /** * @var \OC\Files\Mount $mount diff --git a/lib/group.php b/lib/group.php index 88f0a2a032ccb60f98aa0980275459db538c1b03..d1a830730b755a18398e0c052281bad2482730b6 100644 --- a/lib/group.php +++ b/lib/group.php @@ -294,7 +294,13 @@ class OC_Group { public static function displayNamesInGroup($gid, $search = '', $limit = -1, $offset = 0) { $displayNames=array(); foreach(self::$_usedBackends as $backend) { - $displayNames = array_merge($backend->displayNamesInGroup($gid, $search, $limit, $offset), $displayNames); + if($backend->implementsActions(OC_GROUP_BACKEND_GET_DISPLAYNAME)) { + $displayNames = array_merge($backend->displayNamesInGroup($gid, $search, $limit, $offset), $displayNames); + } else { + $users = $backend->usersInGroup($gid, $search, $limit, $offset); + $names = array_combine($users, $users); + $displayNames = array_merge($names, $displayNames); + } } return $displayNames; } diff --git a/lib/group/backend.php b/lib/group/backend.php index e7b7b21d95774721809b2899e769165d83aaae67..2e17b5d0b7f9f805b7e5d47572e21d558286f7a0 100644 --- a/lib/group/backend.php +++ b/lib/group/backend.php @@ -33,6 +33,7 @@ define('OC_GROUP_BACKEND_CREATE_GROUP', 0x00000001); define('OC_GROUP_BACKEND_DELETE_GROUP', 0x00000010); define('OC_GROUP_BACKEND_ADD_TO_GROUP', 0x00000100); define('OC_GROUP_BACKEND_REMOVE_FROM_GOUP', 0x00001000); +define('OC_GROUP_BACKEND_GET_DISPLAYNAME', 0x00010000); /** * Abstract base class for user management @@ -43,6 +44,7 @@ abstract class OC_Group_Backend implements OC_Group_Interface { OC_GROUP_BACKEND_DELETE_GROUP => 'deleteGroup', OC_GROUP_BACKEND_ADD_TO_GROUP => 'addToGroup', OC_GROUP_BACKEND_REMOVE_FROM_GOUP => 'removeFromGroup', + OC_GROUP_BACKEND_GET_DISPLAYNAME => 'displayNamesInGroup', ); /** @@ -142,14 +144,14 @@ abstract class OC_Group_Backend implements OC_Group_Interface { * @param int $offset * @return array with display names (value) and user ids (key) */ - public function DisplayNamesInGroup($gid, $search = '', $limit = -1, $offset = 0) { - $displayNames = ''; + public function displayNamesInGroup($gid, $search = '', $limit = -1, $offset = 0) { + $displayNames = array(); $users = $this->usersInGroup($gid, $search, $limit, $offset); - foreach ( $users as $user ) { - $DisplayNames[$user] = $user; + foreach ($users as $user) { + $displayNames[$user] = $user; } - return $DisplayNames; + return $displayNames; } } diff --git a/lib/group/database.php b/lib/group/database.php index 40e9b0d4147e48bbbadc86936cf2e5b739312ddf..d0974685ff623bad945e29003fc827c075dbb4df 100644 --- a/lib/group/database.php +++ b/lib/group/database.php @@ -219,8 +219,8 @@ class OC_Group_Database extends OC_Group_Backend { * @param int $offset * @return array with display names (value) and user ids (key) */ - public function DisplayNamesInGroup($gid, $search = '', $limit = -1, $offset = 0) { - $displayNames = ''; + public function displayNamesInGroup($gid, $search = '', $limit = -1, $offset = 0) { + $displayNames = array(); $stmt = OC_DB::prepare('SELECT `*PREFIX*users`.`uid`, `*PREFIX*users`.`displayname`' .' FROM `*PREFIX*users`' diff --git a/lib/l10n/da.php b/lib/l10n/da.php index e61fba30ff3808e12ff4fea8fbef5da7a33cf4a8..38ccbbe8e2164513f8e94516a256013f8943cd40 100644 --- a/lib/l10n/da.php +++ b/lib/l10n/da.php @@ -34,6 +34,7 @@ "MySQL user '%s'@'%%' already exists" => "MySQL brugeren '%s'@'%%' eksisterer allerede.", "Drop this user from MySQL." => "Slet denne bruger fra MySQL", "Offending command was: \"%s\", name: %s, password: %s" => "Fejlende kommando var: \"%s\", navn: %s, password: %s", +"MS SQL username and/or password not valid: %s" => "MS SQL brugernavn og/eller adgangskode ikke er gyldigt: %s", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Din webserver er endnu ikke sat op til at tillade fil synkronisering fordi WebDAV grænsefladen virker ødelagt.", "Please double check the <a href='%s'>installation guides</a>." => "Dobbelttjek venligst <a href='%s'>installations vejledningerne</a>.", "seconds ago" => "sekunder siden", diff --git a/lib/l10n/de_DE.php b/lib/l10n/de_DE.php index bbff4948096ab4946d389a4677826b4019ad9f82..9978cdf8b317b5820bb2e9ee78324d0f566117c0 100644 --- a/lib/l10n/de_DE.php +++ b/lib/l10n/de_DE.php @@ -34,7 +34,7 @@ "MySQL user '%s'@'%%' already exists" => "MySQL Benutzer '%s'@'%%' existiert bereits", "Drop this user from MySQL." => "Lösche diesen Benutzer aus MySQL.", "Offending command was: \"%s\", name: %s, password: %s" => "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s", -"MS SQL username and/or password not valid: %s" => "MS SQL Benutzername und/oder Passwort nicht valide: %s", +"MS SQL username and/or password not valid: %s" => "MS SQL Benutzername und/oder Passwort ungültig: %s", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ihr Web-Server ist noch nicht für Datei-Synchronisation bereit, weil die WebDAV-Schnittstelle vermutlich defekt ist.", "Please double check the <a href='%s'>installation guides</a>." => "Bitte prüfen Sie die <a href='%s'>Instalationsanleitungen</a>.", "seconds ago" => "Gerade eben", diff --git a/lib/l10n/nl.php b/lib/l10n/nl.php index 4a357889fdcfd210c23922a435447a9657fe9c28..e26a663e9ccf523b3e68da055b93900e29f6363f 100644 --- a/lib/l10n/nl.php +++ b/lib/l10n/nl.php @@ -34,6 +34,7 @@ "MySQL user '%s'@'%%' already exists" => "MySQL gebruiker '%s'@'%%' bestaat al", "Drop this user from MySQL." => "Verwijder deze gebruiker uit MySQL.", "Offending command was: \"%s\", name: %s, password: %s" => "Onjuiste commando was: \"%s\", naam: %s, wachtwoord: %s", +"MS SQL username and/or password not valid: %s" => "MS SQL gebruikersnaam en/of wachtwoord niet geldig: %s", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Uw webserver is nog niet goed ingesteld voor bestandssynchronisatie omdat de WebDAV interface verbroken lijkt.", "Please double check the <a href='%s'>installation guides</a>." => "Conntroleer de <a href='%s'>installatie handleiding</a> goed.", "seconds ago" => "seconden geleden", diff --git a/lib/l10n/pt_PT.php b/lib/l10n/pt_PT.php index 9bdcfcc9ceda1cd9e20bac07555613b8bbe11efe..2c813f5b07c9fc76fe8d7cafd550190f2b89e209 100644 --- a/lib/l10n/pt_PT.php +++ b/lib/l10n/pt_PT.php @@ -34,6 +34,7 @@ "MySQL user '%s'@'%%' already exists" => "O utilizador '%s'@'%%' do MySQL já existe", "Drop this user from MySQL." => "Eliminar este utilizador do MySQL", "Offending command was: \"%s\", name: %s, password: %s" => "O comando gerador de erro foi: \"%s\", nome: %s, password: %s", +"MS SQL username and/or password not valid: %s" => "Nome de utilizador/password do MySQL é inválido: %s", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "O seu servidor web não está configurado correctamente para autorizar sincronização de ficheiros, pois o interface WebDAV parece estar com problemas.", "Please double check the <a href='%s'>installation guides</a>." => "Por favor verifique <a href='%s'>installation guides</a>.", "seconds ago" => "há alguns segundos", diff --git a/lib/l10n/uk.php b/lib/l10n/uk.php index 415c0a80c277c36d30495dd9b20813c6710d3348..68f7151d15e7ffb1c3c6bcb16301ff2b4369094d 100644 --- a/lib/l10n/uk.php +++ b/lib/l10n/uk.php @@ -34,6 +34,7 @@ "MySQL user '%s'@'%%' already exists" => "Користувач MySQL '%s'@'%%' вже існує", "Drop this user from MySQL." => "Видалити цього користувача з MySQL.", "Offending command was: \"%s\", name: %s, password: %s" => "Команда, що викликала проблему: \"%s\", ім'я: %s, пароль: %s", +"MS SQL username and/or password not valid: %s" => "MS SQL ім'я користувача та/або пароль не дійсні: %s", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ваш Web-сервер ще не налаштований належним чином для того, щоб дозволити синхронізацію файлів, через те що інтерфейс WebDAV, здається, зламаний.", "Please double check the <a href='%s'>installation guides</a>." => "Будь ласка, перевірте <a href='%s'>інструкції по встановленню</a>.", "seconds ago" => "секунди тому", diff --git a/lib/mail.php b/lib/mail.php index 22194045a7643c2f3448fae871960b93ef84d9c7..61634632efce4c3bb2330b51fe422fc5c5085878 100644 --- a/lib/mail.php +++ b/lib/mail.php @@ -119,4 +119,12 @@ class OC_Mail { return($txt); } + + /** + * @param string $emailAddress a given email address to be validated + * @return bool + */ + public static function ValidateAddress($emailAddress) { + return PHPMailer::ValidateAddress($emailAddress); + } } diff --git a/lib/public/share.php b/lib/public/share.php index 8146a23f360fc3c9f8bcf13c4e05008734c1a4d5..59f41a9bfd6f59a0dbfacd9444b263a42c7d9ad0 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -786,7 +786,7 @@ class Share { } else { $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `item_target`, `*PREFIX*share`.`parent`, `share_type`, `share_with`, `uid_owner`, - `file_source`, `path`, `file_target`, `permissions`, `stime`, `expiration`, `token`'; + `file_source`, `path`, `file_target`, `permissions`, `stime`, `expiration`, `token`, `storage`'; } } else { $select = '*'; diff --git a/lib/public/util.php b/lib/public/util.php index 5d814114a248ec05a11ada5c11e6be2b40545592..db07cbcfff3911a1e93852cfcaba484c6b455076 100644 --- a/lib/public/util.php +++ b/lib/public/util.php @@ -219,11 +219,11 @@ class Util { $host_name = self::getServerHostName(); $defaultEmailAddress = $user_part.'@'.$host_name; - if (\PHPMailer::ValidateAddress($defaultEmailAddress)) { + if (\OC_Mail::ValidateAddress($defaultEmailAddress)) { return $defaultEmailAddress; } - // incase we cannot build a valid email address from the hostname let's fallback to 'localhost.localdomain' + // in case we cannot build a valid email address from the hostname let's fallback to 'localhost.localdomain' return $user_part.'@localhost.localdomain'; } diff --git a/lib/template.php b/lib/template.php index b2d1f0c0292fcb456d7f3b5f72c7a30c94906754..434c1e9e9901b7dc729773956e6f7bc7a7c8e46b 100644 --- a/lib/template.php +++ b/lib/template.php @@ -200,7 +200,6 @@ class OC_Template{ .'img-src *; ' .'font-src \'self\' data:'); header('Content-Security-Policy:'.$policy); // Standard - header('X-WebKit-CSP:'.$policy); // Older webkit browsers $this->findTemplate($name); } @@ -520,12 +519,13 @@ class OC_Template{ /** * @brief Print a fatal error page and terminates the script * @param string $error The error message to show - * @param string $hint An option hint message + * @param string $hint An optional hint message + * Warning: All data passed to $hint needs to get sanitized using OC_Util::sanitizeHTML */ public static function printErrorPage( $error_msg, $hint = '' ) { $content = new OC_Template( '', 'error', 'error' ); $errors = array(array('error' => $error_msg, 'hint' => $hint)); - $content->assign( 'errors', $errors, false ); + $content->assign( 'errors', $errors ); $content->printPage(); die(); } diff --git a/lib/util.php b/lib/util.php index de1f870fd7eaded8c7a03209999b43f2e19099d3..47c02074a8ca268492a90d6b80a97eeaf3e05a0f 100755 --- a/lib/util.php +++ b/lib/util.php @@ -75,7 +75,7 @@ class OC_Util { public static function getVersion() { // hint: We only can count up. Reset minor/patchlevel when // updating major/minor version number. - return array(4, 95, 10); + return array(4, 97, 10); } /** @@ -83,7 +83,7 @@ class OC_Util { * @return string */ public static function getVersionString() { - return '5.0 RC 1'; + return '5.0 RC 3'; } /** @@ -172,7 +172,7 @@ class OC_Util { if(!(is_callable('sqlite_open') or class_exists('SQLite3')) and !is_callable('mysql_connect') and !is_callable('pg_connect')) { - $errors[]=array('error'=>'No database drivers (sqlite, mysql, or postgresql) installed.<br/>', + $errors[]=array('error'=>'No database drivers (sqlite, mysql, or postgresql) installed.', 'hint'=>'');//TODO: sane hint $web_server_restart= true; } @@ -218,74 +218,74 @@ class OC_Util { } // check if all required php modules are present if(!class_exists('ZipArchive')) { - $errors[]=array('error'=>'PHP module zip not installed.<br/>', + $errors[]=array('error'=>'PHP module zip not installed.', 'hint'=>'Please ask your server administrator to install the module.'); $web_server_restart= false; } if(!class_exists('DOMDocument')) { - $errors[] = array('error' => 'PHP module dom not installed.<br/>', + $errors[] = array('error' => 'PHP module dom not installed.', 'hint' => 'Please ask your server administrator to install the module.'); $web_server_restart = false; } if(!function_exists('xml_parser_create')) { - $errors[] = array('error' => 'PHP module libxml not installed.<br/>', + $errors[] = array('error' => 'PHP module libxml not installed.', 'hint' => 'Please ask your server administrator to install the module.'); $web_server_restart = false; } if(!function_exists('mb_detect_encoding')) { - $errors[]=array('error'=>'PHP module mb multibyte not installed.<br/>', + $errors[]=array('error'=>'PHP module mb multibyte not installed.', 'hint'=>'Please ask your server administrator to install the module.'); $web_server_restart= false; } if(!function_exists('ctype_digit')) { - $errors[]=array('error'=>'PHP module ctype is not installed.<br/>', + $errors[]=array('error'=>'PHP module ctype is not installed.', 'hint'=>'Please ask your server administrator to install the module.'); $web_server_restart= false; } if(!function_exists('json_encode')) { - $errors[]=array('error'=>'PHP module JSON is not installed.<br/>', + $errors[]=array('error'=>'PHP module JSON is not installed.', 'hint'=>'Please ask your server administrator to install the module.'); $web_server_restart= false; } if(!function_exists('imagepng')) { - $errors[]=array('error'=>'PHP module GD is not installed.<br/>', + $errors[]=array('error'=>'PHP module GD is not installed.', 'hint'=>'Please ask your server administrator to install the module.'); $web_server_restart= false; } if(!function_exists('gzencode')) { - $errors[]=array('error'=>'PHP module zlib is not installed.<br/>', + $errors[]=array('error'=>'PHP module zlib is not installed.', 'hint'=>'Please ask your server administrator to install the module.'); $web_server_restart= false; } if(!function_exists('iconv')) { - $errors[]=array('error'=>'PHP module iconv is not installed.<br/>', + $errors[]=array('error'=>'PHP module iconv is not installed.', 'hint'=>'Please ask your server administrator to install the module.'); $web_server_restart= false; } if(!function_exists('simplexml_load_string')) { - $errors[]=array('error'=>'PHP module SimpleXML is not installed.<br/>', + $errors[]=array('error'=>'PHP module SimpleXML is not installed.', 'hint'=>'Please ask your server administrator to install the module.'); $web_server_restart= false; } if(floatval(phpversion())<5.3) { - $errors[]=array('error'=>'PHP 5.3 is required.<br/>', + $errors[]=array('error'=>'PHP 5.3 is required.', 'hint'=>'Please ask your server administrator to update PHP to version 5.3 or higher.' .' PHP 5.2 is no longer supported by ownCloud and the PHP community.'); $web_server_restart= false; } if(!defined('PDO::ATTR_DRIVER_NAME')) { - $errors[]=array('error'=>'PHP PDO module is not installed.<br/>', + $errors[]=array('error'=>'PHP PDO module is not installed.', 'hint'=>'Please ask your server administrator to install the module.'); $web_server_restart= false; } if(ini_get('safe_mode')) { - $errors[]=array('error'=>'PHP Safe Mode is enabled. ownCloud requires that it is disabled to work properly.<br/>', + $errors[]=array('error'=>'PHP Safe Mode is enabled. ownCloud requires that it is disabled to work properly.', 'hint'=>'PHP Safe Mode is a deprecated and mostly useless setting that should be disabled. Please ask your server administrator to disable it in php.ini or in your webserver config.'); $web_server_restart= false; } if($web_server_restart) { - $errors[]=array('error'=>'PHP modules have been installed, but they are still listed as missing?<br/>', + $errors[]=array('error'=>'PHP modules have been installed, but they are still listed as missing?', 'hint'=>'Please ask your server administrator to restart the web server.'); } diff --git a/lib/vcategories.php b/lib/vcategories.php index f94a0a55d3b904ad96c9b9ceeb31737002e8bb33..2f990c5d2d2047a687eae18b6ebabdd5b4d6b5d8 100644 --- a/lib/vcategories.php +++ b/lib/vcategories.php @@ -348,12 +348,11 @@ class OC_VCategories { self::$relations[] = array('objid' => $id, 'category' => $name); } } - if(count($newones) > 0) { - $this->categories = array_merge($this->categories, $newones); - if($sync === true) { - $this->save(); - } + $this->categories = array_merge($this->categories, $newones); + if($sync === true) { + $this->save(); } + return true; } diff --git a/settings/l10n/da.php b/settings/l10n/da.php index 5a330d371a832350b42ba75a0dcc5cbdbd6fc510..da17fc132d9c5c0bfdf1d90aee90f62958736605 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -26,14 +26,45 @@ "Saving..." => "Gemmer...", "deleted" => "Slettet", "undo" => "fortryd", +"Unable to remove user" => "Kan ikke fjerne bruger", "Groups" => "Grupper", "Group Admin" => "Gruppe Administrator", "Delete" => "Slet", +"add group" => "Tilføj gruppe", +"A valid username must be provided" => "Et gyldigt brugernavn skal angives", +"Error creating user" => "Fejl ved oprettelse af bruger", +"A valid password must be provided" => "En gyldig adgangskode skal angives", "__language_name__" => "Dansk", "Security Warning" => "Sikkerhedsadvarsel", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Din data mappe og dine filer er muligvis tilgængelige fra internettet. .htaccess filen som ownCloud leverer virker ikke. Vi anbefaler på det kraftigste at du konfigurerer din webserver på en måske så data mappen ikke længere er tilgængelig eller at du flytter data mappen uden for webserverens dokument rod. ", +"Setup Warning" => "Opsætnings Advarsel", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Din webserver er endnu ikke sat op til at tillade fil synkronisering fordi WebDAV grænsefladen virker ødelagt.", "Please double check the <a href='%s'>installation guides</a>." => "Dobbelttjek venligst <a href='%s'>installations vejledningerne</a>.", +"Module 'fileinfo' missing" => "Module 'fileinfo' mangler", +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP modulet 'fileinfo' mangler. Vi anbefaler stærkt at aktivere dette modul til at få de bedste resultater med mime-type detektion.", +"Locale not working" => "Landestandard fungerer ikke", +"This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Denne ownCloud server kan ikke indstille systemets landestandard for %s. Det betyder, at der kan være problemer med visse tegn i filnavne. Vi anbefaler kraftigt, at installere de nødvendige pakker på dit system til at understøtte %s.", +"Internet connection not working" => "Internetforbindelse fungerer ikke", +"This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "Denne ownCloud-server har ikke en fungerende forbindelse til internettet. Det betyder, at visse funktioner som montering af eksterne drev, oplysninger om opdatering eller installation af eksterne applikationer ikke fungerer. Det vil sandsynligvis heller ikke fungere at tilgå filer fra eksterne drev eller informationsemails. Vi opfordrer til at etablere forbindelse til internettet for denne server, såfremt du ønsker alle ownClouds funktioner.", +"Cron" => "Cron", +"Execute one task with each page loaded" => "Udføre en opgave med hver side indlæst", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php er registreret hos en webcron service. Kald cron.php side i owncloud rod en gang i minuttet over HTTP.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Brug system cron service. Kald cron.php filen i owncloud mappe via et system cronjob en gang i minuttet.", +"Sharing" => "Deling", +"Enable Share API" => "Aktiver Share API", +"Allow apps to use the Share API" => "Tillad apps til at bruge Share API", +"Allow links" => "Tillad links", +"Allow users to share items to the public with links" => "Tillad brugere at dele elementer til offentligheden med links", +"Allow resharing" => "Tillad videredeling", +"Allow users to share items shared with them again" => "Tillad brugere at dele elementer delt med dem igen", +"Allow users to share with anyone" => "Tillad brugere at dele med alle", +"Allow users to only share with users in their groups" => "Tillad brugere at kun dele med brugerne i deres grupper", +"Security" => "Sikkerhed", +"Enforce HTTPS" => "Gennemtving HTTPS", +"Enforces the clients to connect to ownCloud via an encrypted connection." => "Håndhæver klienter at oprette forbindelse til ownCloud via en krypteret forbindelse.", +"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "Opret forbindelse til denne ownCloud enhed via HTTPS for at aktivere eller deaktivere SSL håndhævelse.", +"Log" => "Log", +"Log level" => "Log niveau", "More" => "Mere", "Version" => "Version", "Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Udviklet af <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownClouds community</a>, og <a href=\"https://github.com/owncloud\" target=\"_blank\">kildekoden</a> er underlagt licensen <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index d8d6ba58b4afa04fd8ca53729dff964a4d442b96..3192a4a78683dbea1e8952950045f18e7a904b71 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -43,7 +43,7 @@ "Module 'fileinfo' missing" => "Das Modul 'fileinfo' fehlt", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen Ihnen dieses Modul zu aktivieren um die besten Resultate bei der Bestimmung der Dateitypen zu erzielen.", "Locale not working" => "Lokalisierung funktioniert nicht", -"This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Dieser ownCloud Server kann die Ländereinstellung nicht auf %s ändern. Dies bedeutet dass es Probleme mit bestimmten Zeichen in Dateinamen geben könnte. Wir empfehlen die für %s benötigten Pakete auf ihrem System zu installieren.", +"This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Dieser ownCloud Server kann die Ländereinstellung nicht auf %s ändern. Dies bedeutet, dass es Probleme mit bestimmten Zeichen in Dateinamen geben könnte. Wir empfehlen, die für %s benötigten Pakete auf ihrem System zu installieren.", "Internet connection not working" => "Keine Netzwerkverbindung", "This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "Dieser ownCloud Server hat keine funktionierende Internetverbindung. Dies bedeutet das einige Funktionen wie das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungsmails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Internetverbindung für diesen Server zu aktivieren wenn Sie alle Funktionen von ownCloud nutzen wollen.", "Cron" => "Cron", diff --git a/settings/l10n/fa.php b/settings/l10n/fa.php index d75efa85eba565993e9e528a356a7634f79f48c2..688374e8e3bb47fe5aeb09db8c81b1a99075b786 100644 --- a/settings/l10n/fa.php +++ b/settings/l10n/fa.php @@ -22,8 +22,15 @@ "undo" => "بازگشت", "Groups" => "گروه ها", "Delete" => "پاک کردن", +"add group" => "افزودن گروه", +"Error creating user" => "خطا در ایجاد کاربر", "__language_name__" => "__language_name__", "Security Warning" => "اخطار امنیتی", +"Setup Warning" => "هشدار راه اندازی", +"Internet connection not working" => "اتصال اینترنت کار نمی کند", +"Sharing" => "اشتراک گذاری", +"Allow users to share items to the public with links" => "اجازه دادن به کاربران برای اشتراک گذاری آیتم ها با عموم از طریق پیوند ها", +"Security" => "امنیت", "More" => "بیشتر", "Version" => "نسخه", "Add your App" => "برنامه خود را بیافزایید", @@ -33,7 +40,9 @@ "Update" => "به روز رسانی", "User Documentation" => "مستندات کاربر", "Administrator Documentation" => "مستندات مدیر", +"Online Documentation" => "مستندات آنلاین", "Forum" => "انجمن", +"Bugtracker" => "ردیاب باگ ", "Commercial Support" => "پشتیبانی تجاری", "Show First Run Wizard again" => "راهبری کمکی اجرای اول را دوباره نمایش بده", "Password" => "گذرواژه", diff --git a/settings/l10n/nb_NO.php b/settings/l10n/nb_NO.php index 708e78bf4b8585412ff90f8aa67197fab54d689b..4b3ff85445ab3dafbd9713e92e9e3e82eae4d840 100644 --- a/settings/l10n/nb_NO.php +++ b/settings/l10n/nb_NO.php @@ -34,6 +34,7 @@ "Administrator Documentation" => "Administratordokumentasjon", "Commercial Support" => "Kommersiell støtte", "You have used <strong>%s</strong> of the available <strong>%s</strong>" => "Du har brukt <strong>%s</strong> av tilgjengelig <strong>%s</strong>", +"Get the apps to sync your files" => "Få dine apps til å synkronisere dine filer", "Password" => "Passord", "Your password was changed" => "Passord har blitt endret", "Unable to change your password" => "Kunne ikke endre passordet ditt", diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index 249bf63cd38ece081c799a139b4b0185d47f1021..1ce0ef88291c4d8dcd37c4e0ba4c546ef8cf5e93 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -43,6 +43,7 @@ "Module 'fileinfo' missing" => "Module 'fileinfo' ontbreekt", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "De PHP module 'fileinfo' ontbreekt. We adviseren met klem om deze module te activeren om de beste resultaten te bereiken voor mime-type detectie.", "Locale not working" => "Taalbestand werkt niet", +"This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Deze ownCloud server kan de systeemtaal niet instellen op %s. Hierdoor kunnen er mogelijk problemen optreden met bepaalde karakters in bestandsnamen. Het wordt sterk aangeraden om de vereiste pakketen op uw systeem te installeren zodat %s ondersteund wordt.", "Internet connection not working" => "Internet verbinding werkt niet", "This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "Deze ownCloud server heeft geen actieve internet verbinding. dat betekent dat sommige functies, zoals aankoppelen van externe opslag, notificaties over updates of installatie van apps van 3e partijen niet werken. Ook het benaderen van bestanden vanaf een remote locatie en het versturen van notificatie emails kan mislukken. We adviseren om de internet verbinding voor deze server in te schakelen als u alle functies van ownCloud wilt gebruiken.", "Cron" => "Cron", diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index e685da4498ff764280651393fa4934349279b5f2..71ad6347e8e06e9c8065d22b4966a879a8bdabac 100644 --- a/settings/l10n/pt_PT.php +++ b/settings/l10n/pt_PT.php @@ -43,6 +43,7 @@ "Module 'fileinfo' missing" => "Falta o módulo 'fileinfo'", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "O Módulo PHP 'fileinfo' não se encontra instalado/activado. É fortemente recomendado que active este módulo para obter os melhores resultado com a detecção dos tipos de mime.", "Locale not working" => "Internacionalização não está a funcionar", +"This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Este servidor de ownCloud não consegue definir a codificação de caracteres para %s. Isto significa que pode haver problemas com alguns caracteres nos nomes dos ficheiros. É fortemente recomendado que instale o pacote recomendado para ser possível ver caracteres codificados em %s.", "Internet connection not working" => "A ligação à internet não está a funcionar", "This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "Este servidor ownCloud não tem uma ligação de internet funcional. Isto significa que algumas funcionalidades como o acesso a locais externos (dropbox, gdrive, etc), notificações sobre actualizções, ou a instalação de aplicações não irá funcionar. Sugerimos que active uma ligação à internet se pretende obter todas as funcionalidades do ownCloud.", "Cron" => "Cron", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index 0e1723a9373e7fa407bdfe3afb1957cc4f77b9c5..393ca8135c227531084ad3985a7a8fdca8496fa8 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -29,11 +29,24 @@ "Groups" => "Grupper", "Group Admin" => "Gruppadministratör", "Delete" => "Radera", +"add group" => "lägg till grupp", +"A valid username must be provided" => "Ett giltigt användarnamn måste anges", +"Error creating user" => "Fel vid skapande av användare", +"A valid password must be provided" => "Ett giltigt lösenord måste anges", "__language_name__" => "__language_name__", "Security Warning" => "Säkerhetsvarning", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Din datakatalog och dina filer är förmodligen tillgängliga från Internet. Den .htaccess-fil som ownCloud tillhandahåller fungerar inte. Vi rekommenderar starkt att du konfigurerar webbservern så att datakatalogen inte längre är tillgänglig eller att du flyttar datakatalogen utanför webbserverns dokument-root.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Din webbserver är inte korrekt konfigurerad för att tillåta filsynkronisering eftersom WebDAV inte verkar fungera.", "Please double check the <a href='%s'>installation guides</a>." => "Var god kontrollera <a href='%s'>installationsguiden</a>.", +"Module 'fileinfo' missing" => "Modulen \"fileinfo\" saknas", +"Sharing" => "Dela", +"Allow links" => "Tillåt länkar", +"Allow resharing" => "Tillåt vidaredelning", +"Allow users to share items shared with them again" => "Tillåt användare att dela vidare filer som delats med dem", +"Allow users to share with anyone" => "Tillåt delning med alla", +"Allow users to only share with users in their groups" => "Tillåt bara delning med användare i egna grupper", +"Security" => "Säkerhet", +"Log" => "Logg", "More" => "Mer", "Version" => "Version", "Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Utvecklad av <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud kommunity</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">källkoden</a> är licenserad under <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", diff --git a/settings/l10n/uk.php b/settings/l10n/uk.php index e37a919b314d77b17c9b365e8b56158ff007868c..2e182b66292c79753353e2492d723755330ab585 100644 --- a/settings/l10n/uk.php +++ b/settings/l10n/uk.php @@ -43,6 +43,7 @@ "Module 'fileinfo' missing" => "Модуль 'fileinfo' відсутній", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP модуль 'fileinfo' відсутній. Ми наполегливо рекомендуємо увімкнути цей модуль, щоб отримати кращі результати при виявленні MIME-типів.", "Locale not working" => "Локалізація не працює", +"This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Цей сервер ownCloud не може встановити мову системи %s. Це означає, що можуть бути проблеми з деякими символами в іменах файлів. Ми наполегливо рекомендуємо встановити необхідні пакети у вашій системі для підтримки %s.", "Internet connection not working" => "Інтернет-з'єднання не працює", "This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "Цей сервер ownCloud не має під'єднання до Інтернету. Це означає, що деякі функції, такі як монтування зовнішніх накопичувачів, повідомлення про оновлення або встановлення допоміжних програм не працюють. Доступ до файлів віддалено та відправка повідомлень електронною поштою також може не працювати. Ми пропонуємо увімкнути під'єднання до Інтернету для даного сервера, якщо ви хочете мати всі можливості ownCloud.", "Cron" => "Cron", diff --git a/tests/lib/files/mount.php b/tests/lib/files/mount.php index 4e6aaf0679b5b130f6344bc48aca219b533c7c1a..a3dc06cc66887b7a8cd7f3d111b1f3b45337432d 100644 --- a/tests/lib/files/mount.php +++ b/tests/lib/files/mount.php @@ -39,10 +39,10 @@ class Mount extends \PHPUnit_Framework_TestCase { $this->assertEquals(2, count(\OC\Files\Mount::findIn('/'))); $id = $mount->getStorageId(); - $this->assertEquals(array($mount), \OC\Files\Mount::findById($id)); + $this->assertEquals(array($mount), \OC\Files\Mount::findByStorageId($id)); $mount2 = new \OC\Files\Mount($storage, '/foo/bar'); - $this->assertEquals(array($mount, $mount2), \OC\Files\Mount::findById($id)); + $this->assertEquals(array($mount, $mount2), \OC\Files\Mount::findByStorageId($id)); } public function testLong() { @@ -51,8 +51,8 @@ class Mount extends \PHPUnit_Framework_TestCase { $id = $mount->getStorageId(); $storageId = $storage->getId(); - $this->assertEquals(array($mount), \OC\Files\Mount::findById($id)); - $this->assertEquals(array($mount), \OC\Files\Mount::findById($storageId)); - $this->assertEquals(array($mount), \OC\Files\Mount::findById(md5($storageId))); + $this->assertEquals(array($mount), \OC\Files\Mount::findByStorageId($id)); + $this->assertEquals(array($mount), \OC\Files\Mount::findByStorageId($storageId)); + $this->assertEquals(array($mount), \OC\Files\Mount::findByStorageId(md5($storageId))); } } diff --git a/tests/lib/util.php b/tests/lib/util.php index ebff3c7381a2fb7f679140e392599b6f396de6d5..b904c35980775f65822e676a761160cd81649737 100644 --- a/tests/lib/util.php +++ b/tests/lib/util.php @@ -42,4 +42,9 @@ class Test_Util extends PHPUnit_Framework_TestCase { $result = strlen(OC_Util::generate_random_bytes(59)); $this->assertEquals(59, $result); } + + function testGetDefaultEmailAddress() { + $email = \OCP\Util::getDefaultEmailAddress("no-reply"); + $this->assertEquals('no-reply@localhost.localdomain', $email); + } } \ No newline at end of file