diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/css/share.css | 14 | ||||
-rw-r--r-- | core/js/share.js | 125 | ||||
-rw-r--r-- | core/l10n/bg_BG.php | 12 | ||||
-rw-r--r-- | core/l10n/cs_CZ.php | 11 | ||||
-rw-r--r-- | core/l10n/da.php | 1 | ||||
-rw-r--r-- | core/l10n/de.php | 13 | ||||
-rw-r--r-- | core/l10n/de_DE.php | 1 | ||||
-rw-r--r-- | core/l10n/el.php | 14 | ||||
-rw-r--r-- | core/l10n/en_GB.php | 1 | ||||
-rw-r--r-- | core/l10n/es.php | 1 | ||||
-rw-r--r-- | core/l10n/fi_FI.php | 1 | ||||
-rw-r--r-- | core/l10n/fr.php | 95 | ||||
-rw-r--r-- | core/l10n/it.php | 5 | ||||
-rw-r--r-- | core/l10n/ja.php | 19 | ||||
-rw-r--r-- | core/l10n/nb_NO.php | 21 | ||||
-rw-r--r-- | core/l10n/nl.php | 1 | ||||
-rw-r--r-- | core/l10n/pt_BR.php | 1 | ||||
-rw-r--r-- | core/l10n/ru.php | 19 | ||||
-rw-r--r-- | core/l10n/tr.php | 13 | ||||
-rw-r--r-- | core/templates/layout.user.php | 8 |
20 files changed, 296 insertions, 80 deletions
diff --git a/core/css/share.css b/core/css/share.css index aeabbbc5912..de909219b76 100644 --- a/core/css/share.css +++ b/core/css/share.css @@ -16,6 +16,20 @@ padding:16px; } +#dropdown.shareDropDown .unshare.icon-loading-small { + margin-top: 1px; +} + +#dropdown.shareDropDown .shareWithLoading, +#dropdown.shareDropDown .linkShare .icon-loading-small { + display: inline-block !important; + padding-left: 10px; +} + +#dropdown.shareDropDown .icon-loading-small.hidden { + display: none !important; +} + #shareWithList { list-style-type:none; padding:8px; diff --git a/core/js/share.js b/core/js/share.js index 67ddd9c4870..5632ecba971 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -304,7 +304,7 @@ OC.Share={ ); } - $.post(OC.filePath('core', 'ajax', 'share.php'), + return $.post(OC.filePath('core', 'ajax', 'share.php'), { action: 'share', itemType: itemType, @@ -351,7 +351,7 @@ OC.Share={ showDropDown:function(itemType, itemSource, appendTo, link, possiblePermissions, filename) { var data = OC.Share.loadItem(itemType, itemSource); var dropDownEl; - var html = '<div id="dropdown" class="drop" data-item-type="'+itemType+'" data-item-source="'+itemSource+'">'; + var html = '<div id="dropdown" class="drop shareDropDown" data-item-type="'+itemType+'" data-item-source="'+itemSource+'">'; if (data !== false && data.reshare !== false && data.reshare.uid_owner !== undefined) { if (data.reshare.share_type == OC.Share.SHARE_TYPE_GROUP) { html += '<span class="reshare">'+t('core', 'Shared with you and the group {group} by {owner}', {group: escapeHTML(data.reshare.share_with), owner: escapeHTML(data.reshare.displayname_owner)})+'</span>'; @@ -381,11 +381,13 @@ OC.Share={ }); html += '<input id="shareWith" type="text" placeholder="'+t('core', 'Share with user or group …')+'" />'; + html += '<span class="shareWithLoading icon-loading-small hidden"></span>'; html += '<ul id="shareWithList">'; html += '</ul>'; var linksAllowed = $('#allowShareWithLink').val() === 'yes'; if (link && linksAllowed) { - html += '<div id="link">'; + html += '<div id="link" class="linkShare">'; + html += '<span class="icon-loading-small hidden"></span>'; html += '<input type="checkbox" name="linkCheckbox" id="linkCheckbox" value="1" /><label for="linkCheckbox">'+t('core', 'Share link')+'</label>'; html += '<br />'; @@ -398,10 +400,12 @@ OC.Share={ html += '<input type="checkbox" name="showPassword" id="showPassword" value="1" style="display:none;" /><label for="showPassword" style="display:none;">'+t('core', 'Password protect')+'</label>'; html += '<div id="linkPass">'; html += '<input id="linkPassText" type="password" placeholder="'+t('core', 'Choose a password for the public link')+'" />'; + html += '<span class="icon-loading-small hidden"></span>'; html += '</div>'; if (itemType === 'folder' && (possiblePermissions & OC.PERMISSION_CREATE) && publicUploadEnabled === 'yes') { html += '<div id="allowPublicUploadWrapper" style="display:none;">'; + html += '<span class="icon-loading-small hidden"></span>'; html += '<input type="checkbox" value="1" name="allowPublicUpload" id="sharingDialogAllowPublicUpload"' + ((allowPublicUploadStatus) ? 'checked="checked"' : '') + ' />'; html += '<label for="sharingDialogAllowPublicUpload">' + t('core', 'Allow Public Upload') + '</label>'; html += '</div>'; @@ -441,23 +445,27 @@ OC.Share={ }); } $('#shareWith').autocomplete({minLength: 1, source: function(search, response) { - $.get(OC.filePath('core', 'ajax', 'share.php'), { fetch: 'getShareWith', search: search.term, itemShares: OC.Share.itemShares }, function(result) { - if (result.status == 'success' && result.data.length > 0) { - $( "#shareWith" ).autocomplete( "option", "autoFocus", true ); - response(result.data); - } else { - response(); - } - }); + var $loading = $('#dropdown .shareWithLoading'); + $loading.removeClass('hidden'); + $.get(OC.filePath('core', 'ajax', 'share.php'), { fetch: 'getShareWith', search: search.term, itemShares: OC.Share.itemShares }, function(result) { + $loading.addClass('hidden'); + if (result.status == 'success' && result.data.length > 0) { + $( "#shareWith" ).autocomplete( "option", "autoFocus", true ); + response(result.data); + } else { + response(); + } + }); }, focus: function(event, focused) { event.preventDefault(); }, select: function(event, selected) { event.stopPropagation(); - var itemType = $('#dropdown').data('item-type'); - var itemSource = $('#dropdown').data('item-source'); - var itemSourceName = $('#dropdown').data('item-source-name'); + var $dropDown = $('#dropdown'); + var itemType = $dropDown.data('item-type'); + var itemSource = $dropDown.data('item-source'); + var itemSourceName = $dropDown.data('item-source-name'); var expirationDate = ''; if ( $('#expirationCheckbox').is(':checked') === true ) { expirationDate = $( "#expirationDate" ).val(); @@ -481,7 +489,16 @@ OC.Share={ permissions = permissions | OC.PERMISSION_SHARE; } + + var $input = $(this); + var $loading = $dropDown.find('.shareWithLoading'); + $loading.removeClass('hidden'); + $input.val(t('core', 'Adding user...')); + $input.prop('disabled', true); + OC.Share.share(itemType, itemSource, shareType, shareWith, permissions, itemSourceName, expirationDate, function() { + $input.prop('disabled', false); + $loading.addClass('hidden'); OC.Share.addShareWith(shareType, shareWith, selected.item.label, permissions, possiblePermissions); $('#shareWith').val(''); $('#dropdown').trigger(new $.Event('sharesChanged', {shares: OC.Share.currentShares})); @@ -610,21 +627,21 @@ OC.Share={ html += '<label><input type="checkbox" name="mailNotification" class="mailNotification" ' + checked + ' />'+t('core', 'notify by email')+'</label> '; } if (oc_appconfig.core.resharingAllowed && (possiblePermissions & OC.PERMISSION_SHARE)) { - html += '<label><input type="checkbox" name="share" class="permissions" '+shareChecked+' data-permissions="'+OC.PERMISSION_SHARE+'" />'+t('core', 'can share')+'</label>'; + html += '<input id="canShare-'+escapeHTML(shareWith)+'" type="checkbox" name="share" class="permissions" '+shareChecked+' data-permissions="'+OC.PERMISSION_SHARE+'" /><label for="canShare-'+escapeHTML(shareWith)+'">'+t('core', 'can share')+'</label>'; } if (possiblePermissions & OC.PERMISSION_CREATE || possiblePermissions & OC.PERMISSION_UPDATE || possiblePermissions & OC.PERMISSION_DELETE) { - html += '<label><input type="checkbox" name="edit" class="permissions" '+editChecked+' />'+t('core', 'can edit')+'</label> '; + html += '<input id="canEdit-'+escapeHTML(shareWith)+'" type="checkbox" name="edit" class="permissions" '+editChecked+' /><label for="canEdit-'+escapeHTML(shareWith)+'">'+t('core', 'can edit')+'</label>'; } showCrudsButton = '<a href="#" class="showCruds"><img class="svg" alt="'+t('core', 'access control')+'" title="'+t('core', 'access control')+'" src="'+OC.imagePath('core', 'actions/triangle-s')+'"/></a>'; html += '<div class="cruds" style="display:none;">'; if (possiblePermissions & OC.PERMISSION_CREATE) { - html += '<label><input type="checkbox" name="create" class="permissions" '+createChecked+' data-permissions="'+OC.PERMISSION_CREATE+'" />'+t('core', 'create')+'</label>'; + html += '<input id="canCreate-'+escapeHTML(shareWith)+'" type="checkbox" name="create" class="permissions" '+createChecked+' data-permissions="'+OC.PERMISSION_CREATE+'"/><label for="canCreate-'+escapeHTML(shareWith)+'">'+t('core', 'create')+'</label>'; } if (possiblePermissions & OC.PERMISSION_UPDATE) { - html += '<label><input type="checkbox" name="update" class="permissions" '+updateChecked+' data-permissions="'+OC.PERMISSION_UPDATE+'" />'+t('core', 'update')+'</label>'; + html += '<input id="canUpdate-'+escapeHTML(shareWith)+'" type="checkbox" name="update" class="permissions" '+updateChecked+' data-permissions="'+OC.PERMISSION_UPDATE+'"/><label for="canUpdate-'+escapeHTML(shareWith)+'">'+t('core', 'update')+'</label>'; } if (possiblePermissions & OC.PERMISSION_DELETE) { - html += '<label><input type="checkbox" name="delete" class="permissions" '+deleteChecked+' data-permissions="'+OC.PERMISSION_DELETE+'" />'+t('core', 'delete')+'</label>'; + html += '<input id="canDelete-'+escapeHTML(shareWith)+'" type="checkbox" name="delete" class="permissions" '+deleteChecked+' data-permissions="'+OC.PERMISSION_DELETE+'"/><label for="canDelete-'+escapeHTML(shareWith)+'">'+t('core', 'delete')+'</label>'; } html += '</div>'; html += '</li>'; @@ -810,6 +827,18 @@ $(document).ready(function() { var itemSource = $('#dropdown').data('item-source'); var shareType = $li.data('share-type'); var shareWith = $li.attr('data-share-with'); + var $button = $(this); + + if (!$button.is('a')) { + $button = $button.closest('a'); + } + + if ($button.hasClass('icon-loading-small')) { + // deletion in progress + return false; + } + $button.empty().addClass('icon-loading-small'); + OC.Share.unshare(itemType, itemSource, shareType, shareWith, function() { $li.remove(); var index = OC.Share.itemShares[shareType].indexOf(shareWith); @@ -822,6 +851,7 @@ $(document).ready(function() { $('#expiration').hide('blind'); } }); + return false; }); @@ -863,9 +893,17 @@ $(document).ready(function() { }); $(document).on('change', '#dropdown #linkCheckbox', function() { - var itemType = $('#dropdown').data('item-type'); - var itemSource = $('#dropdown').data('item-source'); - var itemSourceName = $('#dropdown').data('item-source-name'); + var $dropDown = $('#dropdown'); + var itemType = $dropDown.data('item-type'); + var itemSource = $dropDown.data('item-source'); + var itemSourceName = $dropDown.data('item-source-name'); + var $loading = $dropDown.find('#link .icon-loading-small'); + var $button = $(this); + + if (!$loading.hasClass('hidden')) { + // already in progress + return false; + } if (this.checked) { var expireDateString = ''; @@ -880,7 +918,14 @@ $(document).ready(function() { } // Create a link if (oc_appconfig.core.enforcePasswordForPublicLink === false) { + $loading.removeClass('hidden'); + $button.addClass('hidden'); + $button.prop('disabled', true); + OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, '', OC.PERMISSION_READ, itemSourceName, expireDateString, function(data) { + $loading.addClass('hidden'); + $button.removeClass('hidden'); + $button.prop('disabled', false); OC.Share.showLink(data.token, null, itemSource); $('#dropdown').trigger(new $.Event('sharesChanged', {shares: OC.Share.currentShares})); OC.Share.updateIcon(itemType, itemSource); @@ -897,7 +942,13 @@ $(document).ready(function() { OC.Share.hideLink(); $('#expiration').hide('blind'); if ($('#linkText').val() !== '') { + $loading.removeClass('hidden'); + $button.addClass('hidden'); + $button.prop('disabled', true); OC.Share.unshare(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, '', function() { + $loading.addClass('hidden'); + $button.removeClass('hidden'); + $button.prop('disabled', false); OC.Share.itemShares[OC.Share.SHARE_TYPE_LINK] = false; $('#dropdown').trigger(new $.Event('sharesChanged', {shares: OC.Share.currentShares})); OC.Share.updateIcon(itemType, itemSource); @@ -918,15 +969,23 @@ $(document).ready(function() { $(document).on('click', '#sharingDialogAllowPublicUpload', function() { // Gather data + var $dropDown = $('#dropdown'); var allowPublicUpload = $(this).is(':checked'); - var itemType = $('#dropdown').data('item-type'); - var itemSource = $('#dropdown').data('item-source'); - var itemSourceName = $('#dropdown').data('item-source-name'); + var itemType = $dropDown.data('item-type'); + var itemSource = $dropDown.data('item-source'); + var itemSourceName = $dropDown.data('item-source-name'); var expirationDate = ''; if ($('#expirationCheckbox').is(':checked') === true) { expirationDate = $( "#expirationDate" ).val(); } var permissions = 0; + var $button = $(this); + var $loading = $dropDown.find('#allowPublicUploadWrapper .icon-loading-small'); + + if (!$loading.hasClass('hidden')) { + // already in progress + return false; + } // Calculate permissions if (allowPublicUpload) { @@ -936,7 +995,13 @@ $(document).ready(function() { } // Update the share information + $button.addClass('hidden'); + $button.prop('disabled', true); + $loading.removeClass('hidden'); OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, '', permissions, itemSourceName, expirationDate, function(data) { + $loading.addClass('hidden'); + $button.removeClass('hidden'); + $button.prop('disabled', false); }); }); @@ -948,6 +1013,7 @@ $(document).ready(function() { var itemSourceName = $('#dropdown').data('item-source-name'); var allowPublicUpload = $('#sharingDialogAllowPublicUpload').is(':checked'); var permissions = 0; + var $loading = $('#showPassword .icon-loading-small'); // Calculate permissions if (allowPublicUpload) { @@ -956,8 +1022,10 @@ $(document).ready(function() { permissions = OC.PERMISSION_READ; } - - OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, '', permissions, itemSourceName); + $loading.removeClass('hidden'); + OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, '', permissions, itemSourceName).then(function() { + $loading.addClass('hidden'); + }); } else { $('#linkPassText').focus(); } @@ -973,6 +1041,7 @@ $(document).ready(function() { var itemSource = dropDown.data('item-source'); var itemSourceName = $('#dropdown').data('item-source-name'); var permissions = 0; + var $loading = dropDown.find('#linkPass .icon-loading-small'); // Calculate permissions if (allowPublicUpload) { @@ -981,7 +1050,9 @@ $(document).ready(function() { permissions = OC.PERMISSION_READ; } + $loading.removeClass('hidden'); OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, $('#linkPassText').val(), permissions, itemSourceName, function(data) { + $loading.addClass('hidden'); linkPassText.val(''); linkPassText.attr('placeholder', t('core', 'Password protected')); diff --git a/core/l10n/bg_BG.php b/core/l10n/bg_BG.php index 41a6e464365..2e0cb374cff 100644 --- a/core/l10n/bg_BG.php +++ b/core/l10n/bg_BG.php @@ -68,6 +68,7 @@ $TRANSLATIONS = array( "Strong password" => "Сигурна парола", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Твоят web сървър все още не е правилно настроен да позволява синхронизация на файлове, защото WebDAV интерфейсът изглежда не работи.", "This 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." => "Сървърът няма работеща интернет връзка. Това означава, че някои функции като прикачването на външни дискови устройства, уведомления за обновяване или инсталиране на външни приложения няма да работят. Достъпът на файлове отвън или изпращане на имейли за уведомление вероятно също няма да работят. Препоръчваме да включиш интернет връзката за този сървър ако искаш да използваш всички тези функции.", +"Error occurred while checking server setup" => "Настъпи грешка при проверката на настройките на сървъра.", "Shared" => "Споделено", "Shared with {recipients}" => "Споделено с {recipients}.", "Share" => "Споделяне", @@ -148,6 +149,17 @@ $TRANSLATIONS = array( "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Здрасти,\n\nсамо да те уведомя, че %s сподели %s с теб.\nРазгледай го: %s\n\n", "The share will expire on %s." => "Споделянето ще изтече на %s.", "Cheers!" => "Поздрави!", +"The server encountered an internal error and was unable to complete your request." => "Сървърът се натъкна на вътрешна грешка и неуспя да завърши заявката.", +"Please contact the server administrator if this error reappears multiple times, please include the technical details below in your report." => "Моля, свържи се със сървърния администратор ако тази грешка се появи отново, моля, включи техническите данни показани в доклада по-долу.", +"More details can be found in the server log." => "Допълнителна информация може да бъде открита в сървърните доклади.", +"Technical details" => "Техническа информация", +"Remote Address: %s" => "Remote Address: %s", +"Request ID: %s" => "Request ID: %s", +"Code: %s" => "Code: %s", +"Message: %s" => "Message: %s", +"File: %s" => "File: %s", +"Line: %s" => "Line: %s", +"Trace" => "Trace", "Security Warning" => "Предупреждение за Сигурноста", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Твоята PHP версия е податлива на NULL Byte атака (CVE-2006-7243).", "Please update your PHP installation to use %s securely." => "Моля, обнови своята PHP инсталация, за да използваш %s сигурно.", diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index 31e321d9921..90a217d3bda 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -68,6 +68,7 @@ $TRANSLATIONS = array( "Strong password" => "Silné heslo", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Váš webový server není správně nastaven pro umožnění synchronizace, rozhraní WebDAV se zdá být rozbité.", "This 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." => "Server nemá funkční připojení k internetu. Některé moduly jako např. externí úložiště, oznámení o dostupných aktualizacích nebo instalace aplikací třetích stran nebudou fungovat. Přístup k souborům z jiných míst a odesílání oznamovacích e-mailů také nemusí fungovat. Pokud si přejete využívat všech vlastností ownCloud, doporučujeme povolit připojení k internetu tomuto serveru.", +"Error occurred while checking server setup" => "Při ověřování nastavení serveru došlo k chybě", "Shared" => "Sdílené", "Shared with {recipients}" => "Sdíleno s {recipients}", "Share" => "Sdílet", @@ -148,6 +149,16 @@ $TRANSLATIONS = array( "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hej ty tam,\n\njen ti chci dát vědět, že %s sdílel %s s tebou.\nZobraz si to: %s\n\n", "The share will expire on %s." => "Sdílení vyprší %s.", "Cheers!" => "Ať slouží!", +"Please contact the server administrator if this error reappears multiple times, please include the technical details below in your report." => "Kontaktujte prosím administrátora serveru, pokud se bude tato chyba opakovat. Připojte do svého hlášení níže zobrazené technické detaily.", +"More details can be found in the server log." => "Více podrobností k nalezení v serverovém logu.", +"Technical details" => "Technické detaily", +"Remote Address: %s" => "Vzdálená adresa: %s", +"Request ID: %s" => "ID požadavku: %s", +"Code: %s" => "Kód: %s", +"Message: %s" => "Zpráva: %s", +"File: %s" => "Soubor: %s", +"Line: %s" => "Řádka: %s", +"Trace" => "Trasa", "Security Warning" => "Bezpečnostní upozornění", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Verze vašeho PHP je napadnutelná pomocí techniky \"NULL Byte\" (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "Aktualizujte prosím vaši instanci PHP pro bezpečné používání %s.", diff --git a/core/l10n/da.php b/core/l10n/da.php index bf855d1f085..eab26ee2ce7 100644 --- a/core/l10n/da.php +++ b/core/l10n/da.php @@ -88,6 +88,7 @@ $TRANSLATIONS = array( "Send" => "Send", "Set expiration date" => "Vælg udløbsdato", "Expiration date" => "Udløbsdato", +"Adding user..." => "Tilføjer bruger...", "group" => "gruppe", "Resharing is not allowed" => "Videredeling ikke tilladt", "Shared in {item} with {user}" => "Delt i {item} med {user}", diff --git a/core/l10n/de.php b/core/l10n/de.php index ca3742c7549..67d110c7ea1 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -68,6 +68,7 @@ $TRANSLATIONS = array( "Strong password" => "Starkes Passwort", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Dein Web-Server ist noch nicht für Datei-Synchronisation bereit, weil die WebDAV-Schnittstelle vermutlich defekt ist.", "This 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." => "Dieser Server hat keine funktionierende Internetverbindung. Dies bedeutet, dass einige Funktionen wie z.B. 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 nutzen wollen.", +"Error occurred while checking server setup" => "Fehler beim Überprüfen der Servereinrichtung", "Shared" => "Geteilt", "Shared with {recipients}" => "Geteilt mit {recipients}", "Share" => "Teilen", @@ -87,6 +88,7 @@ $TRANSLATIONS = array( "Send" => "Senden", "Set expiration date" => "Setze ein Ablaufdatum", "Expiration date" => "Ablaufdatum", +"Adding user..." => "Füge Nutzer hinzu...", "group" => "Gruppe", "Resharing is not allowed" => "Weiterverteilen ist nicht erlaubt", "Shared in {item} with {user}" => "Für {user} in {item} freigegeben", @@ -148,6 +150,17 @@ $TRANSLATIONS = array( "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hallo,\n\nich wollte Dich nur wissen lassen, dass %s %s mit Dir teilt.\nSchaue es Dir an: %s\n\n", "The share will expire on %s." => "Die Freigabe wird am %s ablaufen.", "Cheers!" => "Hallo!", +"The server encountered an internal error and was unable to complete your request." => "Der Server hat einen internen Fehler und konnte Ihre Anfrage nicht vervollständigen.", +"Please contact the server administrator if this error reappears multiple times, please include the technical details below in your report." => "Bitte wende Dich sich an den Serveradministrator, wenn dieser Fehler mehrfach auftritt, gebe bitte die, unten stehenden, technischen Details in Ihrem Bericht mit an.", +"More details can be found in the server log." => "Weitere Details können im Serverprotokoll gefunden werden.", +"Technical details" => "Technische Details", +"Remote Address: %s" => "Entfernte Adresse: %s", +"Request ID: %s" => "Anforderungskennung: %s", +"Code: %s" => "Code: %s", +"Message: %s" => "Nachricht: %s", +"File: %s" => "Datei: %s", +"Line: %s" => "Zeile: %s", +"Trace" => "Spur", "Security Warning" => "Sicherheitswarnung", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Deine PHP Version ist durch die NULL Byte Attacke (CVE-2006-7243) angreifbar", "Please update your PHP installation to use %s securely." => "Bitte aktualisiere Deine PHP-Installation um %s sicher nutzen zu können.", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index c63b320ae7d..8d242a1047c 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -88,6 +88,7 @@ $TRANSLATIONS = array( "Send" => "Senden", "Set expiration date" => "Ein Ablaufdatum setzen", "Expiration date" => "Ablaufdatum", +"Adding user..." => "Füge Nutzer hinzu...", "group" => "Gruppe", "Resharing is not allowed" => "Das Weiterverteilen ist nicht erlaubt", "Shared in {item} with {user}" => "Freigegeben in {item} von {user}", diff --git a/core/l10n/el.php b/core/l10n/el.php index 9f1e71d0dbc..462dd3bb829 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -68,6 +68,7 @@ $TRANSLATIONS = array( "Strong password" => "Δυνατό συνθηματικό", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ο διακομιστής σας δεν έχει ρυθμιστεί κατάλληλα ώστε να επιτρέπει τον συγχρονισμό αρχείων γιατί η διεπαφή WebDAV πιθανόν να είναι κατεστραμμένη.", "This 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." => "Αυτός ο διακομιστής δεν έχει ενεργή σύνδεση στο διαδίκτυο. Αυτό σημαίνει ότι κάποιες υπηρεσίες όπως η σύνδεση με εξωτερικούς αποθηκευτικούς χώρους, ειδοποιήσεις περί ενημερώσεων ή η εγκατάσταση 3ων εφαρμογών δεν θα είναι διαθέσιμες. Η πρόσβαση απομακρυσμένων αρχείων και η αποστολή ειδοποιήσεων μέσω ηλεκτρονικού ταχυδρομείου μπορεί επίσης να μην είναι διαθέσιμες. Προτείνουμε να ενεργοποιήσετε την πρόσβαση στο διαδίκτυο για αυτόν το διακομιστή εάν θέλετε να χρησιμοποιήσετε όλες τις υπηρεσίες.", +"Error occurred while checking server setup" => "Παρουσιάστηκε σφάλμα κατά τον έλεγχο της εγκατάστασης με το διακομιστή", "Shared" => "Κοινόχρηστα", "Shared with {recipients}" => "Διαμοιράστηκε με {recipients}", "Share" => "Διαμοιρασμός", @@ -87,6 +88,7 @@ $TRANSLATIONS = array( "Send" => "Αποστολή", "Set expiration date" => "Ορισμός ημ. λήξης", "Expiration date" => "Ημερομηνία λήξης", +"Adding user..." => "Προσθήκη χρήστη ...", "group" => "ομάδα", "Resharing is not allowed" => "Ξαναμοιρασμός δεν επιτρέπεται", "Shared in {item} with {user}" => "Διαμοιρασμός του {item} με τον {user}", @@ -142,9 +144,21 @@ $TRANSLATIONS = array( "Error favoriting" => "Σφάλμα προσθήκης στα αγαπημένα", "Error unfavoriting" => "Σφάλμα αφαίρεσης από τα αγαπημένα", "Access forbidden" => "Δεν επιτρέπεται η πρόσβαση", +"File not found" => "Το αρχείο δεν βρέθηκε", +"The specified document has not been found on the server." => "Το συγκεκριμένο έγγραφο δεν έχει βρεθεί στο διακομιστή.", +"You can click here to return to %s." => "Μπορείτε να κάνετε κλικ εδώ για να επιστρέψετε στο %s.", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Γειά χαρά,\n\nαπλά σας ενημερώνω πως ο %s μοιράστηκε το %s με εσάς.\nΔείτε το: %s\n\n", "The share will expire on %s." => "Ο διαμοιρασμός θα λήξει σε %s.", "Cheers!" => "Χαιρετισμούς!", +"The server encountered an internal error and was unable to complete your request." => "Ο διακομιστής αντιμετώπισε ένα εσωτερικό σφάλμα και δεν μπόρεσε να ολοκληρώσει το αίτημά σας.", +"Please contact the server administrator if this error reappears multiple times, please include the technical details below in your report." => "Παρακαλώ επικοινωνήστε με το διαχειριστή του διακομιστή, εάν αυτό το σφάλμα επανεμφανίζεται πολλές φορές, παρακαλούμε να συμπεριλάβετε τις τεχνικές λεπτομέρειες παρακάτω στην αναφορά σας.", +"More details can be found in the server log." => "Περισσότερες λεπτομέρειες μπορείτε να βρείτε στο αρχείο καταγραφής του διακομιστή.", +"Technical details" => "Τεχνικές λεπτομέρειες", +"Remote Address: %s" => "Απομακρυσμένη Διεύθυνση: %s", +"Code: %s" => "Κωδικός: %s", +"Message: %s" => "Μήνυμα: %s", +"File: %s" => "Αρχείο: %s", +"Line: %s" => "Γραμμή: %s", "Security Warning" => "Προειδοποίηση Ασφαλείας", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Η PHP ειναι ευαλωτη στην NULL Byte επιθεση (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "Παρακαλώ ενημερώστε την εγκατάσταση της PHP ώστε να χρησιμοποιήσετε το %s με ασφάλεια.", diff --git a/core/l10n/en_GB.php b/core/l10n/en_GB.php index 7c32d382150..06d1e37ca77 100644 --- a/core/l10n/en_GB.php +++ b/core/l10n/en_GB.php @@ -88,6 +88,7 @@ $TRANSLATIONS = array( "Send" => "Send", "Set expiration date" => "Set expiration date", "Expiration date" => "Expiration date", +"Adding user..." => "Adding user...", "group" => "group", "Resharing is not allowed" => "Resharing is not allowed", "Shared in {item} with {user}" => "Shared in {item} with {user}", diff --git a/core/l10n/es.php b/core/l10n/es.php index b95230e98d4..7c720aa563e 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -88,6 +88,7 @@ $TRANSLATIONS = array( "Send" => "Enviar", "Set expiration date" => "Establecer fecha de caducidad", "Expiration date" => "Fecha de caducidad", +"Adding user..." => "Añadiendo usuario...", "group" => "grupo", "Resharing is not allowed" => "No se permite compartir de nuevo", "Shared in {item} with {user}" => "Compartido en {item} con {user}", diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php index 40cff052bfd..1b97801264a 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -87,6 +87,7 @@ $TRANSLATIONS = array( "Send" => "Lähetä", "Set expiration date" => "Aseta päättymispäivä", "Expiration date" => "Päättymispäivä", +"Adding user..." => "Lisätään käyttäjä...", "group" => "ryhmä", "Resharing is not allowed" => "Jakaminen uudelleen ei ole salittu", "Shared in {item} with {user}" => "{item} on jaettu {user} kanssa", diff --git a/core/l10n/fr.php b/core/l10n/fr.php index 347118c3585..c378183ad1d 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -1,18 +1,18 @@ <?php $TRANSLATIONS = array( -"Couldn't send mail to following users: %s " => "Impossible d'envoyer un mail aux utilisateurs suivant : %s", -"Turned on maintenance mode" => "Basculé en mode maintenance", -"Turned off maintenance mode" => "Basculé en mode production (non maintenance)", +"Couldn't send mail to following users: %s " => "Impossible d'envoyer un courriel aux utilisateurs suivants : %s", +"Turned on maintenance mode" => "Mode de maintenance activé", +"Turned off maintenance mode" => "Mode de maintenance désactivé", "Updated database" => "Base de données mise à jour", "Checked database schema update" => "Mise à jour du schéma de la base de données vérifiée", "Checked database schema update for apps" => "La mise à jour du schéma de la base de données pour les applications a été vérifiée", -"Updated \"%s\" to %s" => "Mise à jour de \"%s\" à %s", -"Disabled incompatible apps: %s" => "Applications incompatibles désactivées: %s", +"Updated \"%s\" to %s" => "Mise à jour de « %s » vers %s", +"Disabled incompatible apps: %s" => "Applications incompatibles désactivées : %s", "No image or file provided" => "Aucune image ou fichier fourni", "Unknown filetype" => "Type de fichier inconnu", -"Invalid image" => "Image invalide", +"Invalid image" => "Image non valable", "No temporary profile picture available, try again" => "Aucune image temporaire disponible pour le profil. Essayez à nouveau.", -"No crop data provided" => "Aucune donnée de culture fournie", +"No crop data provided" => "Aucune donnée de rognage fournie", "Sunday" => "Dimanche", "Monday" => "Lundi", "Tuesday" => "Mardi", @@ -37,9 +37,9 @@ $TRANSLATIONS = array( "Folder" => "Dossier", "Image" => "Image", "Audio" => "Audio", -"Saving..." => "Enregistrement...", -"Couldn't send reset email. Please contact your administrator." => "Impossible d'envoyer l’émail de réinitialisation. Veuillez contacter votre administrateur.", -"The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator." => "Le lien permettant de réinitialiser votre mot de passe vous a été transmis à votre adresse email.<br>Si vous ne le recevez pas dans un délai raisonnable, vérifier votre boîte de pourriels.<br>Au besoin, contactez votre administrateur local.", +"Saving..." => "Enregistrement…", +"Couldn't send reset email. Please contact your administrator." => "Impossible d'envoyer le courriel de réinitialisation. Veuillez contacter votre administrateur.", +"The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator." => "Le lien permettant de réinitialiser votre mot de passe vous a été transmis à votre adresse de courriel.<br>Si vous ne le recevez pas dans un délai raisonnable, vérifiez votre dossier de pourriels (spams).<br>Si besoin, contactez votre administrateur local.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.<br />If you are not sure what to do, please contact your administrator before you continue. <br />Do you really want to continue?" => "Vos fichiers sont chiffrés. Si vous n'avez pas activé la clef de récupération, il n'y aura plus aucun moyen de récupérer vos données une fois le mot de passe réinitialisé. Si vous n'êtes pas sûr de ce que vous faites, veuillez contacter votre administrateur avant de continuer. Voulez-vous vraiment continuer ?", "I know what I'm doing" => "Je sais ce que je fais", "Reset password" => "Réinitialiser le mot de passe", @@ -66,8 +66,8 @@ $TRANSLATIONS = array( "So-so password" => "Mot de passe de sécurité tout juste acceptable", "Good password" => "Mot de passe de sécurité suffisante", "Strong password" => "Mot de passe de forte sécurité", -"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Votre serveur web, n'est pas correctement configuré pour permettre la synchronisation des fichiers, car l'interface WebDav ne fonctionne pas comme il faut.", -"This 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." => "Ce serveur ne peut se connecter à internet. Cela signifie que certaines fonctionnalités, telles que le montage de supports de stockage distants, les notifications de mises à jour ou l'installation d'applications tierces ne fonctionneront pas. L'accès aux fichiers à distance, ainsi que les notifications par mails ne seront pas fonctionnels également. Il est recommandé d'activer la connexion internet pour ce serveur si vous souhaitez disposer de l'ensemble des fonctionnalités offertes.", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Votre serveur web, n'est pas correctement configuré pour permettre la synchronisation des fichiers, car l'interface WebDav ne semble pas fonctionner.", +"This 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." => "Ce serveur ne peut se connecter à internet. Cela signifie que certaines fonctionnalités, telles que le montage de supports de stockage distants, les notifications de mises à jour ou l'installation d'applications tierces ne fonctionneront pas. L'accès aux fichiers à distance, ainsi que les notifications par courriel ne fonctionneront pas non plus. Il est recommandé d'activer la connexion internet pour ce serveur si vous souhaitez disposer de l'ensemble des fonctionnalités offertes.", "Error occurred while checking server setup" => "Une erreur s'est produite lors de la vérification de la configuration du serveur", "Shared" => "Partagé", "Shared with {recipients}" => "Partagé avec {recipients}", @@ -83,8 +83,8 @@ $TRANSLATIONS = array( "The public link will expire no later than {days} days after it is created" => "Ce lien public expirera au plus tard, dans {days} jours après sa création.", "Password protect" => "Protéger par un mot de passe", "Choose a password for the public link" => "Choisissez un mot de passe pour le lien public.", -"Allow Public Upload" => "Autoriser l'upload par les utilisateurs non enregistrés", -"Email link to person" => "Envoyez le lien par email", +"Allow Public Upload" => "Autoriser le téléversement par les utilisateurs non enregistrés", +"Email link to person" => "Envoyez le lien par courriel", "Send" => "Envoyer", "Set expiration date" => "Spécifier la date d'expiration", "Expiration date" => "Date d'expiration", @@ -92,9 +92,9 @@ $TRANSLATIONS = array( "Resharing is not allowed" => "Le repartage n'est pas autorisé", "Shared in {item} with {user}" => "Partagé dans {item} avec {user}", "Unshare" => "Ne plus partager", -"notify by email" => "Notifier par email", +"notify by email" => "Notifier par courriel", "can share" => "peut partager", -"can edit" => "édition autorisée", +"can edit" => "modification autorisée", "access control" => "contrôle des accès", "create" => "créer", "update" => "mettre à jour", @@ -102,67 +102,68 @@ $TRANSLATIONS = array( "Password protected" => "Protégé par un mot de passe", "Error unsetting expiration date" => "Une erreur est survenue pendant la suppression de la date d'expiration", "Error setting expiration date" => "Erreur lors de la spécification de la date d'expiration", -"Sending ..." => "En cours d'envoi ...", -"Email sent" => "Email envoyé", +"Sending ..." => "Envoi…", +"Email sent" => "Courriel envoyé", "Warning" => "Attention", "The object type is not specified." => "Le type d'objet n'est pas spécifié.", "Enter new" => "Saisir un nouveau", "Delete" => "Supprimer", "Add" => "Ajouter", -"Edit tags" => "Modifier les balises", +"Edit tags" => "Modifier les marqueurs", "Error loading dialog template: {error}" => "Erreur de chargement du modèle de dialogue : {error}", -"No tags selected for deletion." => "Aucune balise sélectionnée pour la suppression.", +"No tags selected for deletion." => "Aucun marqueur sélectionné pour la suppression.", "Updating {productName} to version {version}, this may take a while." => "Mise à jour en cours de {productName} vers la version {version}, cela peut prendre un certain temps.", "Please reload the page." => "Veuillez recharger la page.", "The update was unsuccessful." => "La mise à jour a échoué.", "The update was successful. Redirecting you to ownCloud now." => "La mise à jour a réussi. Vous êtes redirigé maintenant vers ownCloud.", -"Couldn't reset password because the token is invalid" => "Impossible de réinitialiser le mot de passe car le jeton est invalide.", -"Couldn't send reset email. Please make sure your username is correct." => "Impossible d'envoyer l’émail de réinitialisation. Veuillez vérifier que votre nom d'utilisateur est correct.", -"Couldn't send reset email because there is no email address for this username. Please contact your administrator." => "Impossible d'envoyer l'email de réinitialisation car il n'y a aucune adresse email pour cet utilisateur. Veuillez contacter votre administrateur.", +"Couldn't reset password because the token is invalid" => "Impossible de réinitialiser le mot de passe car le jeton est n'est pas valable.", +"Couldn't send reset email. Please make sure your username is correct." => "Impossible d'envoyer le courriel de réinitialisation. Veuillez vérifier que votre nom d'utilisateur est correct.", +"Couldn't send reset email because there is no email address for this username. Please contact your administrator." => "Impossible d'envoyer le courriel de réinitialisation car il n'y a aucune adresse de courriel pour cet utilisateur. Veuillez contacter votre administrateur.", "%s password reset" => "Réinitialisation de votre mot de passe %s", "Use the following link to reset your password: {link}" => "Utilisez le lien suivant pour réinitialiser votre mot de passe : {link}", -"You will receive a link to reset your password via Email." => "Vous allez recevoir un e-mail contenant un lien pour réinitialiser votre mot de passe.", +"You will receive a link to reset your password via Email." => "Vous allez recevoir un courriel contenant un lien pour réinitialiser votre mot de passe.", "Username" => "Nom d'utilisateur", -"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "Vos fichiers sont chiffrés. Si vous n'avez pas activé la clef de récupération, il n'y aura plus aucun moyen de récupérer vos données une fois le mot de passe réinitialisé. Si vous n'êtes pas sûr de ce que vous faites, veuillez contacter votre administrateur avant de continuer. Voulez-vous vraiment continuer ?", +"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "Vos fichiers sont chiffrés. Si vous n'avez pas activé la clef de récupération, il n'y aura plus aucun moyen de récupérer vos données une fois le mot de passe réinitialisé. Si vous n'êtes pas sûr de ce que vous faites, veuillez contacter votre administrateur avant de poursuivre. Voulez-vous vraiment continuer ?", "Yes, I really want to reset my password now" => "Oui, je veux vraiment réinitialiser mon mot de passe maintenant", "Reset" => "Réinitialiser", "New password" => "Nouveau mot de passe", "New Password" => "Nouveau mot de passe", -"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OS X n'est pas supporté et %s ne fonctionnera pas correctement sur cette plateforme. Son utilisation est à vos risques et périls !", -"For the best results, please consider using a GNU/Linux server instead." => "Pour des résultats meilleurs encore, pensez à utiliser un serveur GNU/Linux à la place.", +"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OS X n'est pas pris en charge et %s ne fonctionnera pas correctement sur cette plate-forme. Son utilisation est à vos risques et périls !", +"For the best results, please consider using a GNU/Linux server instead." => "Pour de meilleurs résultats, vous devriez utiliser un serveur GNU/Linux.", "Personal" => "Personnel", "Users" => "Utilisateurs", "Apps" => "Applications", "Admin" => "Administration", "Help" => "Aide", -"Error loading tags" => "Erreur de chargement des balises.", -"Tag already exists" => "La balise existe déjà.", -"Error deleting tag(s)" => "Erreur de suppression de(s) balise(s)", -"Error tagging" => "Erreur lors de la mise en place de la balise", -"Error untagging" => "Erreur lors de la suppression de la balise", +"Error loading tags" => "Erreur de chargement des marqueurs.", +"Tag already exists" => "Le marqueur existe déjà.", +"Error deleting tag(s)" => "Erreur de suppression de(s) marqueur(s)", +"Error tagging" => "Erreur lors de la mise en place du marqueur", +"Error untagging" => "Erreur lors de la suppression du marqueur", "Error favoriting" => "Erreur lors de la mise en favori", "Error unfavoriting" => "Erreur lors de la suppression des favoris", "Access forbidden" => "Accès interdit", "File not found" => "Fichier non trouvé", -"The specified document has not been found on the server." => "Le document spécifié n'a pu être trouvé sur le serveur.", +"The specified document has not been found on the server." => "Impossible de trouver le document spécifié sur le serveur.", "You can click here to return to %s." => "Vous pouvez cliquer ici pour retourner à %s.", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Bonjour,\n\nNous vous informons que %s a partagé %s avec vous.\nConsultez-le : %s\n", "The share will expire on %s." => "Le partage expirera le %s.", "Cheers!" => "À bientôt !", -"The server encountered an internal error and was unable to complete your request." => "Le serveur a rencontré une erreur interne et est incapable d'effectuer votre demande.", -"Please contact the server administrator if this error reappears multiple times, please include the technical details below in your report." => "Veuillez contacter l'administrateur du serveur si cette erreur réapparaît plusieurs fois, veuillez joindre les détails techniques à votre rapport.", -"More details can be found in the server log." => "Plus de détails peuvent être trouvés dans le journal du serveur.", -"Technical details" => "Détails techniques", +"The server encountered an internal error and was unable to complete your request." => "Le serveur a rencontré une erreur interne et est incapable d'exécuter votre requête.", +"Please contact the server administrator if this error reappears multiple times, please include the technical details below in your report." => "Veuillez contacter l'administrateur du serveur. Si cette erreur apparaît plusieurs fois, veuillez joindre les détails techniques à votre rapport.", +"More details can be found in the server log." => "Le fichier journal du serveur peut fournir plus de renseignements.", +"Technical details" => "Renseignements techniques", "Remote Address: %s" => "Adresse distante : %s", "Request ID: %s" => "ID de la demande : %s", "Code: %s" => "Code : %s", "Message: %s" => "Message : %s", "File: %s" => "Fichier : %s", "Line: %s" => "Ligne : %s", +"Trace" => "Trace", "Security Warning" => "Avertissement de sécurité", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Votre version de PHP est vulnérable à l'attaque par caractère NULL (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "Veuillez mettre à jour votre installation PHP pour utiliser %s de façon sécurisée.", -"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Votre répertoire data est certainement accessible depuis l'internet car le fichier .htaccess ne semble pas fonctionner", +"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Votre répertoire de données est certainement accessible depuis l'internet car le fichier .htaccess ne semble pas fonctionner", "For information how to properly configure your server, please see the <a href=\"%s\" target=\"_blank\">documentation</a>." => "Pour les informations de configuration de votre serveur, veuillez lire la <a href=\"%s\" target=\"_blank\">documentation</a>.", "Create an <strong>admin account</strong>" => "Créer un <strong>compte administrateur</strong>", "Password" => "Mot de passe", @@ -173,11 +174,11 @@ $TRANSLATIONS = array( "Database user" => "Utilisateur pour la base de données", "Database password" => "Mot de passe de la base de données", "Database name" => "Nom de la base de données", -"Database tablespace" => "Tablespaces de la base de données", +"Database tablespace" => "Unités logiques de stockage de la base de données", "Database host" => "Serveur de la base de données", -"SQLite will be used as database. For larger installations we recommend to change this." => "SQLite va être utilisée comme base de donnée. Pour des installations plus volumineuse, nous vous conseillons de changer ce réglage.", +"SQLite will be used as database. For larger installations we recommend to change this." => "SQLite va être utilisée comme base de donnée. Pour des installations plus volumineuses, nous vous conseillons de changer ce réglage.", "Finish setup" => "Terminer l'installation", -"Finishing …" => "En cours de finalisation...", +"Finishing …" => "Finalisation…", "This application requires JavaScript for correct operation. Please <a href=\"http://enable-javascript.com/\" target=\"_blank\">enable JavaScript</a> and reload the page." => "Cette application nécessite JavaScript pour fonctionner correctement. Veuillez <a href=\"http://enable-javascript.com/\" target=\"_blank\">activer JavaScript</a> puis charger à nouveau cette page.", "%s is available. Get more information on how to update." => "%s est disponible. Obtenez plus d'informations sur la façon de mettre à jour.", "Log out" => "Se déconnecter", @@ -186,22 +187,22 @@ $TRANSLATIONS = array( "Forgot your password? Reset it!" => "Mot de passe perdu ? Réinitialisez-le !", "remember" => "se souvenir de moi", "Log in" => "Connexion", -"Alternative Logins" => "Logins alternatifs", -"Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" => "Bonjour,<br><br>Juste pour vous informer que %s a partagé <strong>%s</strong> avec vous.<br><a href=\"%s\">Consultez-le !</a><br><br>", +"Alternative Logins" => "Identifiants alternatifs", +"Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" => "Bonjour,<br><br>Nous vous informons que %s a partagé <strong>%s</strong> avec vous.<br><a href=\"%s\">Consultez-le !</a><br><br>", "This ownCloud instance is currently in single user mode." => "Cette instance de ownCloud est actuellement en mode utilisateur unique.", -"This means only administrators can use the instance." => "Cela signifie que uniquement les administrateurs peuvent utiliser l'instance.", +"This means only administrators can use the instance." => "Cela signifie qu'uniquement les administrateurs peuvent utiliser l'instance.", "Contact your system administrator if this message persists or appeared unexpectedly." => "Veuillez contacter votre administrateur système si ce message persiste ou apparaît de façon inattendue.", "Thank you for your patience." => "Merci de votre patience.", "You are accessing the server from an untrusted domain." => "Vous accédez au serveur à partir d'un domaine non-approuvé.", -"Please contact your administrator. If you are an administrator of this instance, configure the \"trusted_domain\" setting in config/config.php. An example configuration is provided in config/config.sample.php." => "Veuillez contacter votre administrateur. Si vous être l'administrateur de cette instance, il faut configurer la variable \"trusted_domain\" dans le fichier config/config.php. Un exemple de configuration est fournit dans le fichier config/config.sample.php.", -"Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain." => "En fonction de votre configuration, en tant qu'administrateur vous pouvez également utiliser le bouton ci-dessous pour faire confiance à ce domaine.", +"Please contact your administrator. If you are an administrator of this instance, configure the \"trusted_domain\" setting in config/config.php. An example configuration is provided in config/config.sample.php." => "Veuillez contacter votre administrateur. Si vous être l'administrateur de cette instance, il faut configurer la variable « trusted_domain » dans le fichier config/config.php. Un exemple de configuration est fourni dans le fichier config/config.sample.php.", +"Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain." => "En fonction de votre configuration, en tant qu'administrateur vous pouvez également utiliser le bouton ci-dessous pour approuver ce domaine.", "Add \"%s\" as trusted domain" => "Ajouter \"%s\" comme domaine de confiance", "%s will be updated to version %s." => "%s sera mis à jour vers la version %s.", "The following apps will be disabled:" => "Les applications suivantes seront désactivées :", "The theme %s has been disabled." => "Le thème %s a été désactivé.", "Please make sure that the database, the config folder and the data folder have been backed up before proceeding." => "Veuillez vous assurer qu'une copie de sauvegarde de la base de données, du dossier de configuration et du dossier de données a été réalisée avant le commencement de la procédure.", "Start update" => "Démarrer la mise à jour.", -"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" => "Afin d'éviter les délais d'interruption avec les installations de plus grande ampleur, vous pouvez plutôt exécuter la commande suivante depuis le répertoire d'installation :", +"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" => "Afin d'éviter les délais d'interruption avec les installations de plus grande ampleur, vous devriez plutôt exécuter la commande suivante depuis le répertoire d'installation :", "This %s instance is currently being updated, which may take a while." => "Cette instance de %s est en cours de mise à jour, cela peut prendre du temps.", "This page will refresh itself when the %s instance is available again." => "Cette page se rafraîchira d'elle-même lorsque l'instance %s sera à nouveau disponible." ); diff --git a/core/l10n/it.php b/core/l10n/it.php index d4ebef8f98b..67114a321bb 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -66,8 +66,8 @@ $TRANSLATIONS = array( "So-so password" => "Password così-così", "Good password" => "Password buona", "Strong password" => "Password forte", -"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Il tuo server web non è configurato correttamente per consentire la sincronizzazione dei file poiché l'interfaccia WebDAV sembra essere danneggiata.", -"This 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." => "Questo server ownCloud non ha una connessione a Internet funzionante. Ciò significa che alcune delle funzionalità come il montaggio di archivi esterni, le notifiche degli aggiornamenti o l'installazione di applicazioni di terze parti non funzioneranno. L'accesso remoto ai file e l'invio di email di notifica potrebbero non funzionare. Ti suggeriamo di abilitare la connessione a Internet del server se desideri disporre di tutte le funzionalità.", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Il tuo server web non è configurato correttamente per consentire la sincronizzazione dei file poiché l'interfaccia WebDAV sembra no funzionare correttamente.", +"This 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." => "Questo server non ha una connessione a Internet funzionante. Ciò significa che alcune delle funzionalità come il montaggio di archivi esterni, le notifiche degli aggiornamenti o l'installazione di applicazioni di terze parti non funzioneranno. L'accesso remoto ai file e l'invio di email di notifica potrebbero non funzionare. Ti suggeriamo di abilitare la connessione a Internet del server se desideri disporre di tutte le funzionalità.", "Error occurred while checking server setup" => "Si è verificato un errore durante il controllo della configurazione del server", "Shared" => "Condivisi", "Shared with {recipients}" => "Condiviso con {recipients}", @@ -88,6 +88,7 @@ $TRANSLATIONS = array( "Send" => "Invia", "Set expiration date" => "Imposta data di scadenza", "Expiration date" => "Data di scadenza", +"Adding user..." => "Aggiunta utente in corso...", "group" => "gruppo", "Resharing is not allowed" => "La ri-condivisione non è consentita", "Shared in {item} with {user}" => "Condiviso in {item} con {user}", diff --git a/core/l10n/ja.php b/core/l10n/ja.php index 2891835fe42..ac700a97d4a 100644 --- a/core/l10n/ja.php +++ b/core/l10n/ja.php @@ -68,6 +68,7 @@ $TRANSLATIONS = array( "Strong password" => "強いパスワード", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "WebDAVインターフェースに問題があると思われるため、WEBサーバーはまだファイルの同期を許可するよう適切に設定されていません。", "This 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." => "このサーバーはインターネットに接続していません。この場合、外部ストレージのマウント、更新の通知やサードパーティアプリといったいくつかの機能が使えません。また、リモート接続でのファイルアクセス、通知メールの送信と言った機能も利用できないかもしれません。全ての機能を利用したいのであれば、このサーバーからインターネットに接続できるようにすることをお勧めします。", +"Error occurred while checking server setup" => "サーバー設定のチェック中にエラーが発生しました", "Shared" => "共有中", "Shared with {recipients}" => "{recipients} と共有", "Share" => "共有", @@ -142,9 +143,23 @@ $TRANSLATIONS = array( "Error favoriting" => "お気に入りに追加エラー", "Error unfavoriting" => "お気に入りから削除エラー", "Access forbidden" => "アクセスが禁止されています", +"File not found" => "ファイルが見つかりません", +"The specified document has not been found on the server." => "サーバーに指定されたファイルが見つかりませんでした。", +"You can click here to return to %s." => "ここをクリックすると、 %s に戻れます。", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "こんにちは、\n\n%s があなたと %s を共有したことをお知らせします。\nそれを表示: %s\n", "The share will expire on %s." => "共有は %s で有効期限が切れます。", "Cheers!" => "それでは!", +"The server encountered an internal error and was unable to complete your request." => "サーバー内でエラーが発生したため、リクエストを完了できませんでした。", +"Please contact the server administrator if this error reappears multiple times, please include the technical details below in your report." => "このエラーが繰り返し表示されるようであれば、以下の技術情報を添付してサーバー管理者に報告してください。", +"More details can be found in the server log." => "詳しい情報は、サーバーのログを確認してください。", +"Technical details" => "技術詳細", +"Remote Address: %s" => "リモートアドレス: %s", +"Request ID: %s" => "リクエスト ID: %s", +"Code: %s" => "コード: %s", +"Message: %s" => "メッセージ: %s", +"File: %s" => "ファイル: %s", +"Line: %s" => "行: %s", +"Trace" => "トレース", "Security Warning" => "セキュリティ警告", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "あなたのPHPのバージョンには、Null Byte攻撃(CVE-2006-7243)という脆弱性が含まれています。", "Please update your PHP installation to use %s securely." => "%s を安全に利用するため、インストールされているPHPをアップデートしてください。", @@ -187,6 +202,8 @@ $TRANSLATIONS = array( "The theme %s has been disabled." => "テーマ %s が無効になっています。", "Please make sure that the database, the config folder and the data folder have been backed up before proceeding." => "データベースを確認してください。実行前にconfigフォルダーとdataフォルダーをバックアップします。", "Start update" => "アップデートを開始", -"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" => "大規模なサイトの場合、ブラウザーがタイムアウトする可能性がある為、インストールディレクトリで次のコマンドを実行しても構いません。" +"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" => "大規模なサイトの場合、ブラウザーがタイムアウトする可能性がある為、インストールディレクトリで次のコマンドを実行しても構いません。", +"This %s instance is currently being updated, which may take a while." => "このサーバー %s は現在更新中です。しばらくお待ちください。", +"This page will refresh itself when the %s instance is available again." => "この画面は、サーバー %s の再起動後に自動的に更新されます。" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/nb_NO.php b/core/l10n/nb_NO.php index 106fbd65094..e51697320e5 100644 --- a/core/l10n/nb_NO.php +++ b/core/l10n/nb_NO.php @@ -68,6 +68,7 @@ $TRANSLATIONS = array( "Strong password" => "Sterkt passord", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Din nettservev er ikke konfigurert korrekt for filsynkronisering. WebDAV ser ut til å ikke funkere.", "This 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." => "Denne serveren har ikke en fungerende Internett-tilkobling. Dette betyr at noen av funksjonene, f.eks. å koble opp ekstern lagring, påminnelser om oppdatering eller installering av 3-parts apper ikke fungerer. Fjerntilgang til filer og utsending av påminnelser i e-post virker kanskje ikke heller. Vi anbefaler at Internett-forbindelsen for denne serveren aktiveres hvis du vil ha full funksjonalitet.", +"Error occurred while checking server setup" => "Feil oppstod ved sjekking av server-oppsett", "Shared" => "Delt", "Shared with {recipients}" => "Delt med {recipients}", "Share" => "Del", @@ -87,6 +88,7 @@ $TRANSLATIONS = array( "Send" => "Send", "Set expiration date" => "Sett utløpsdato", "Expiration date" => "Utløpsdato", +"Adding user..." => "Legger til bruker...", "group" => "gruppe", "Resharing is not allowed" => "Videre deling er ikke tillatt", "Shared in {item} with {user}" => "Delt i {item} med {user}", @@ -142,9 +144,23 @@ $TRANSLATIONS = array( "Error favoriting" => "Feil ved favorittmerking", "Error unfavoriting" => "Feil ved fjerning av favorittmerking", "Access forbidden" => "Tilgang nektet", +"File not found" => "Finner ikke filen", +"The specified document has not been found on the server." => "Det angitte dokumentet ble ikke funnet på serveren.", +"You can click here to return to %s." => "Du kan klikke her for å gå tilbake til %s.", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hei,\n\nDette er en beskjed om at %s delte %s med deg.\nVis den: %s\n\n", "The share will expire on %s." => "Delingen vil opphøre %s.", "Cheers!" => "Ha det!", +"The server encountered an internal error and was unable to complete your request." => "Serveren støtte på en intern feil og kunne ikke fullføre forespørselen din.", +"Please contact the server administrator if this error reappears multiple times, please include the technical details below in your report." => "Kontakt server-administratoren hvis denne feilen oppstår flere ganger. Vennligst ta med de tekniske detaljene nedenfor i rapporten din.", +"More details can be found in the server log." => "Flere detaljer finnes i server-loggen.", +"Technical details" => "Tekniske detaljer", +"Remote Address: %s" => "Ekstern adresse: %s", +"Request ID: %s" => "Forespørsels-ID: %s", +"Code: %s" => "Kode: %s", +"Message: %s" => "Melding: %s", +"File: %s" => "Fil: %s", +"Line: %s" => "Linje: %s", +"Trace" => "Trace", "Security Warning" => "Sikkerhetsadvarsel", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "PHP-versjonen din er sårbar for NULL Byte attack (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "Vennligst oppdater PHP-installasjonen din for å bruke %s på en sikker måte.", @@ -164,6 +180,7 @@ $TRANSLATIONS = array( "SQLite will be used as database. For larger installations we recommend to change this." => "SQLite vil bli brukt som database. For større installasjoner anbefaler vi å endre dette.", "Finish setup" => "Fullfør oppsetting", "Finishing …" => "Ferdigstiller ...", +"This application requires JavaScript for correct operation. Please <a href=\"http://enable-javascript.com/\" target=\"_blank\">enable JavaScript</a> and reload the page." => "Denne applikasjonen krever JavaScript for å fungere korrekt. Vennligst <a href=\"http://enable-javascript.com/\" target=\"_blank\">aktiver JavaScript</a> og last siden på nytt.", "%s is available. Get more information on how to update." => "%s er tilgjengelig. Få mer informasjon om hvordan du kan oppdatere.", "Log out" => "Logg ut", "Server side authentication failed!" => "Autentisering feilet på serveren!", @@ -186,6 +203,8 @@ $TRANSLATIONS = array( "The theme %s has been disabled." => "Temaet %s har blitt deaktivert.", "Please make sure that the database, the config folder and the data folder have been backed up before proceeding." => "Forsikre deg om at databasen, config-mappen og datamappen er blitt sikkerhetskopiert før du fortsetter.", "Start update" => "Start oppdatering", -"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" => "For å unngå tidsavbrudd ved store installasjoner, kan du i stedet kjøre følgende kommando fra installasjonsmappen:" +"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" => "For å unngå tidsavbrudd ved store installasjoner, kan du i stedet kjøre følgende kommando fra installasjonsmappen:", +"This %s instance is currently being updated, which may take a while." => "%s-instansen er under oppdatering, noe som kan ta litt tid.", +"This page will refresh itself when the %s instance is available again." => "Denne siden vil bli lastet på nytt når %s-instansen er tilgjengelig igjen." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/nl.php b/core/l10n/nl.php index aac1542aed0..581db3a6216 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -88,6 +88,7 @@ $TRANSLATIONS = array( "Send" => "Versturen", "Set expiration date" => "Stel vervaldatum in", "Expiration date" => "Vervaldatum", +"Adding user..." => "Toevoegen gebruiker...", "group" => "groep", "Resharing is not allowed" => "Verder delen is niet toegestaan", "Shared in {item} with {user}" => "Gedeeld in {item} met {user}", diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index 8a25ec579a8..505dc24c10a 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -88,6 +88,7 @@ $TRANSLATIONS = array( "Send" => "Enviar", "Set expiration date" => "Definir data de expiração", "Expiration date" => "Data de expiração", +"Adding user..." => "Adicionando usuário...", "group" => "grupo", "Resharing is not allowed" => "Não é permitido re-compartilhar", "Shared in {item} with {user}" => "Compartilhado em {item} com {user}", diff --git a/core/l10n/ru.php b/core/l10n/ru.php index 203aef008d0..ce8ab0ea96f 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -68,6 +68,7 @@ $TRANSLATIONS = array( "Strong password" => "Устойчивый к взлому пароль", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Веб-сервер до сих пор не настроен для возможности синхронизации файлов. Похоже что проблема в неисправности интерфейса WebDAV.", "This 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." => "Этот сервер не имеет подключения к сети интернет. Это значит, что некоторые возможности, такие как подключение внешних дисков, уведомления об обновлениях или установка сторонних приложений – не работают. Удалённый доступ к файлам и отправка уведомлений по электронной почте вероятнее всего тоже не будут работать. Предлагаем включить соединение с интернетом для этого сервера, если Вы хотите иметь все возможности.", +"Error occurred while checking server setup" => "Произошла ошибка при проверке настройки сервера", "Shared" => "Общие", "Shared with {recipients}" => "Доступ открыт {recipients}", "Share" => "Открыть доступ", @@ -142,9 +143,23 @@ $TRANSLATIONS = array( "Error favoriting" => "Ошибка размещения в любимых", "Error unfavoriting" => "Ошибка удаления из любимых", "Access forbidden" => "Доступ запрещён", +"File not found" => "Файл не найден", +"The specified document has not been found on the server." => "Указанный документ не может быть найден на сервере.", +"You can click here to return to %s." => "Вы можете нажать здесь, чтобы вернуться в %s.", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Здравствуйте,\n\n%s предоставил Вам доступ к %s.\nПосмотреть: %s\n\n", "The share will expire on %s." => "Доступ будет закрыт %s", "Cheers!" => "Удачи!", +"The server encountered an internal error and was unable to complete your request." => "Сервер столкнулся с внутренней ошибкой и не смог закончить Ваш запрос.", +"Please contact the server administrator if this error reappears multiple times, please include the technical details below in your report." => "Пожалуйста, свяжитесь с администратором сервера, если эта ошибка будет снова появляться, пожалуйста, прикрепите технические детали к своему сообщению.", +"More details can be found in the server log." => "Больше деталей может быть найдено в журнале сервера.", +"Technical details" => "Технические детали", +"Remote Address: %s" => "Удаленный Адрес: %s", +"Request ID: %s" => "ID Запроса: %s", +"Code: %s" => "Код: %s", +"Message: %s" => "Сообщение: %s", +"File: %s" => "Файл: %s", +"Line: %s" => "Линия: %s", +"Trace" => "След", "Security Warning" => "Предупреждение безопасности", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Ваша версия PHP уязвима к атаке NULL Byte (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "Пожалуйста обновите Вашу PHP конфигурацию для безопасного использования %s.", @@ -187,6 +202,8 @@ $TRANSLATIONS = array( "The theme %s has been disabled." => "Тема %s была отключена.", "Please make sure that the database, the config folder and the data folder have been backed up before proceeding." => "Пожалуйста, перед тем, как продолжить, убедитесь в том, что вы сделали резервную копию базы данных, директории конфигурации и директории с данными.", "Start update" => "Запустить обновление", -"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" => "Чтобы избежать задержек при больших объёмах, вы можете выполнить следующую команду в директории установки:" +"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" => "Чтобы избежать задержек при больших объёмах, вы можете выполнить следующую команду в директории установки:", +"This %s instance is currently being updated, which may take a while." => "Этот экземпляр %s в данный момент обновляется, это может занять некоторое время.", +"This page will refresh itself when the %s instance is available again." => "Эта страница обновится, когда экземпляр %s станет снова доступным." ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/core/l10n/tr.php b/core/l10n/tr.php index 4b2fb78029c..50a7a798f13 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -68,6 +68,7 @@ $TRANSLATIONS = array( "Strong password" => "Güçlü parola", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web sunucunuz dosya eşitlemesine izin vermek üzere düzgün bir şekilde yapılandırılmamış. WebDAV arayüzü sorunlu görünüyor.", "This 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." => "Bu sunucunun çalışan bir internet bağlantısı yok. Bu, harici depolama alanı bağlama, güncelleştirme bildirimleri veya 3. parti uygulama kurma gibi bazı özellikler çalışmayacağı anlamına gelmektedir. Uzaktan dosyalara erişim ve e-posta ile bildirim gönderme de çalışmayacaktır. Eğer bu özelliklerin tamamını kullanmak istiyorsanız, sunucu için internet bağlantısını etkinleştirmenizi öneriyoruz.", +"Error occurred while checking server setup" => "Sunucu yapılandırması denetlenirken hata oluştu", "Shared" => "Paylaşılan", "Shared with {recipients}" => "{recipients} ile paylaşılmış", "Share" => "Paylaş", @@ -87,6 +88,7 @@ $TRANSLATIONS = array( "Send" => "Gönder", "Set expiration date" => "Son kullanma tarihini ayarla", "Expiration date" => "Son kullanım tarihi", +"Adding user..." => "Kullanıcı ekleniyor...", "group" => "grup", "Resharing is not allowed" => "Tekrar paylaşmaya izin verilmiyor", "Shared in {item} with {user}" => "{item} içinde {user} ile paylaşılanlar", @@ -148,6 +150,17 @@ $TRANSLATIONS = array( "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Merhaba,\n\nSadece %s sizinle %s paylaşımını yaptığını bildiriyoruz.\nBuradan bakabilirsiniz: %s\n\n", "The share will expire on %s." => "Bu paylaşım %s tarihinde sona erecek.", "Cheers!" => "Hoşça kalın!", +"The server encountered an internal error and was unable to complete your request." => "Sunucu dahili bir hatayla karşılaştı ve isteğinizi tamamlayamadı.", +"Please contact the server administrator if this error reappears multiple times, please include the technical details below in your report." => "Eğer bu hata birden çok kez oluştuysa, lütfen sunucu yöneticisine aşağıdaki teknik ayrıntılar ile birlikte iletişime geçin.", +"More details can be found in the server log." => "Daha fazla ayrıntı sunucu günlüğünde bulanabilir.", +"Technical details" => "Teknik ayrıntılar", +"Remote Address: %s" => "Uzak Adres: %s", +"Request ID: %s" => "İstek Kimliği: %s", +"Code: %s" => "Kod: %s", +"Message: %s" => "Mesaj: %s", +"File: %s" => "Dosya: %s", +"Line: %s" => "Satır: %s", +"Trace" => "İz", "Security Warning" => "Güvenlik Uyarısı", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "PHP sürümünüz NULL Byte saldırısına açık (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "%s yazılımını güvenli olarak kullanmak için, lütfen PHP kurulumunuzu güncelleyin.", diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index a7ce9a5be80..04cb6eb9def 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -53,7 +53,13 @@ </a> <a href="#" class="menutoggle"> <div class="header-appname"> - <?php p(!empty($_['application'])?$_['application']: $l->t('Apps')); ?> + <?php + if(OC_Util::getEditionString() === '') { + p(!empty($_['application'])?$_['application']: $l->t('Apps')); + } else { + p($theme->getName()); + } + ?> </div> <div class="icon-caret svg"></div> </a> |