summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/Command/Db/ConvertMysqlToMB4.php12
-rw-r--r--core/Controller/ClientFlowLoginController.php2
-rw-r--r--core/css/guest.css33
-rw-r--r--core/css/share.scss3
-rw-r--r--core/js/contactsmenu.js3
-rw-r--r--core/js/login/authpicker.js7
-rw-r--r--core/js/sharedialoglinkshareview.js106
-rw-r--r--core/js/shareitemmodel.js18
-rw-r--r--core/l10n/bg.js2
-rw-r--r--core/l10n/bg.json2
-rw-r--r--core/l10n/cs.js5
-rw-r--r--core/l10n/cs.json5
-rw-r--r--core/l10n/de.js6
-rw-r--r--core/l10n/de.json6
-rw-r--r--core/l10n/de_DE.js6
-rw-r--r--core/l10n/de_DE.json6
-rw-r--r--core/l10n/el.js6
-rw-r--r--core/l10n/el.json6
-rw-r--r--core/l10n/es.js6
-rw-r--r--core/l10n/es.json6
-rw-r--r--core/l10n/es_MX.js6
-rw-r--r--core/l10n/es_MX.json6
-rw-r--r--core/l10n/eu.js2
-rw-r--r--core/l10n/eu.json2
-rw-r--r--core/l10n/fi.js5
-rw-r--r--core/l10n/fi.json5
-rw-r--r--core/l10n/fr.js8
-rw-r--r--core/l10n/fr.json8
-rw-r--r--core/l10n/hu.js3
-rw-r--r--core/l10n/hu.json3
-rw-r--r--core/l10n/id.js2
-rw-r--r--core/l10n/id.json2
-rw-r--r--core/l10n/is.js5
-rw-r--r--core/l10n/is.json5
-rw-r--r--core/l10n/it.js3
-rw-r--r--core/l10n/it.json3
-rw-r--r--core/l10n/ja.js5
-rw-r--r--core/l10n/ja.json5
-rw-r--r--core/l10n/ko.js5
-rw-r--r--core/l10n/ko.json5
-rw-r--r--core/l10n/nb.js5
-rw-r--r--core/l10n/nb.json5
-rw-r--r--core/l10n/nl.js6
-rw-r--r--core/l10n/nl.json6
-rw-r--r--core/l10n/pl.js6
-rw-r--r--core/l10n/pl.json6
-rw-r--r--core/l10n/pt_BR.js48
-rw-r--r--core/l10n/pt_BR.json48
-rw-r--r--core/l10n/pt_PT.js5
-rw-r--r--core/l10n/pt_PT.json5
-rw-r--r--core/l10n/ro.js2
-rw-r--r--core/l10n/ro.json2
-rw-r--r--core/l10n/ru.js8
-rw-r--r--core/l10n/ru.json8
-rw-r--r--core/l10n/sk.js3
-rw-r--r--core/l10n/sk.json3
-rw-r--r--core/l10n/sl.js2
-rw-r--r--core/l10n/sl.json2
-rw-r--r--core/l10n/sq.js2
-rw-r--r--core/l10n/sq.json2
-rw-r--r--core/l10n/sv.js5
-rw-r--r--core/l10n/sv.json5
-rw-r--r--core/l10n/tr.js6
-rw-r--r--core/l10n/tr.json6
-rw-r--r--core/l10n/zh_CN.js3
-rw-r--r--core/l10n/zh_CN.json3
-rw-r--r--core/l10n/zh_TW.js2
-rw-r--r--core/l10n/zh_TW.json2
-rw-r--r--core/shipped.json1
-rw-r--r--core/templates/layout.guest.php4
70 files changed, 287 insertions, 258 deletions
diff --git a/core/Command/Db/ConvertMysqlToMB4.php b/core/Command/Db/ConvertMysqlToMB4.php
index 286274753ee..38aff8b09d8 100644
--- a/core/Command/Db/ConvertMysqlToMB4.php
+++ b/core/Command/Db/ConvertMysqlToMB4.php
@@ -22,6 +22,7 @@
namespace OC\Core\Command\Db;
use Doctrine\DBAL\Platforms\MySqlPlatform;
+use OC\DB\MySqlTools;
use OC\Migration\ConsoleOutput;
use OC\Repair\Collation;
use OCP\IConfig;
@@ -71,18 +72,17 @@ class ConvertMysqlToMB4 extends Command {
return 1;
}
- $oldValue = $this->config->getSystemValue('mysql.utf8mb4', false);
- // enable charset
- $this->config->setSystemValue('mysql.utf8mb4', true);
-
- if (!$this->connection->supports4ByteText()) {
+ $tools = new MySqlTools();
+ if (!$tools->supports4ByteCharset($this->connection)) {
$url = $this->urlGenerator->linkToDocs('admin-mysql-utf8mb4');
$output->writeln("The database is not properly setup to use the charset utf8mb4.");
$output->writeln("For more information please read the documentation at $url");
- $this->config->setSystemValue('mysql.utf8mb4', $oldValue);
return 1;
}
+ // enable charset
+ $this->config->setSystemValue('mysql.utf8mb4', true);
+
// run conversion
$coll = new Collation($this->config, $this->logger, $this->connection, false);
$coll->run(new ConsoleOutput($output));
diff --git a/core/Controller/ClientFlowLoginController.php b/core/Controller/ClientFlowLoginController.php
index ca9c092321a..8c2c121d5b2 100644
--- a/core/Controller/ClientFlowLoginController.php
+++ b/core/Controller/ClientFlowLoginController.php
@@ -232,7 +232,7 @@ class ClientFlowLoginController extends Controller {
IToken::DO_NOT_REMEMBER
);
- return new Http\RedirectResponse('nc://' . urlencode($loginName) . ':' . urlencode($token) . '@' . $this->request->getServerHost());
+ return new Http\RedirectResponse('nc://login/server:' . $this->request->getServerHost() . '&user:' . urlencode($loginName) . '&password:' . urlencode($token));
}
}
diff --git a/core/css/guest.css b/core/css/guest.css
index e6e194f6417..689eb45d65f 100644
--- a/core/css/guest.css
+++ b/core/css/guest.css
@@ -70,9 +70,16 @@ h3 {
background-size: 175px;
background-position: center;
width: 252px;
- height: 120px;
+ min-height: 120px;
+ max-height: 200px;
margin: 0 auto;
}
+
+#header .logo img {
+ opacity: 0;
+ max-width: 100%;
+ max-height: 200px;
+}
.wrapper {
min-height: 100%;
margin: 0 auto -70px;
@@ -637,3 +644,27 @@ footer,
height: 1px;
overflow: hidden;
}
+
+/* for low-res screens, use Regular font-weight instead of Light */
+@media (-webkit-max-device-pixel-ratio: 1.3), (max-resolution: 124.8dpi) {
+ @font-face {
+ font-family: 'Open Sans';
+ font-style: normal;
+ font-weight: normal;
+ src: local('Open Sans'), local('OpenSans'), url('../fonts/OpenSans-Regular.woff') format('woff');
+ }
+}
+
+@font-face {
+ font-family: 'Open Sans';
+ font-style: normal;
+ font-weight: 300;
+ src: local('Open Sans Light'), local('OpenSans-Light'), url('../fonts/OpenSans-Light.woff') format('woff');
+}
+
+@font-face {
+ font-family: 'Open Sans';
+ font-style: normal;
+ font-weight: 600;
+ src: local('Open Sans Semibold'), local('OpenSans-Semibold'), url('../fonts/OpenSans-Semibold.woff') format('woff');
+}
diff --git a/core/css/share.scss b/core/css/share.scss
index 2e1c99b6f41..35d90fb4b88 100644
--- a/core/css/share.scss
+++ b/core/css/share.scss
@@ -43,6 +43,9 @@
font-weight: 400;
white-space: nowrap;
}
+ input[type='radio'].radio + label {
+ margin-left: -1px;
+ }
input[type='checkbox'] {
margin: 0 3px 0 8px;
vertical-align: middle;
diff --git a/core/js/contactsmenu.js b/core/js/contactsmenu.js
index 9ce27509e8b..3da6ea127cd 100644
--- a/core/js/contactsmenu.js
+++ b/core/js/contactsmenu.js
@@ -50,7 +50,8 @@
+ '</div>';
var CONTACT_TEMPLATE = ''
+ '{{#if contact.avatar}}'
- + '<img src="{{contact.avatar}}" class="avatar">'
+ + '<img src="{{contact.avatar}}&size=32" class="avatar"'
+ + 'srcset="{{contact.avatar}}&size=32 1x, {{contact.avatar}}&size=64 2x, {{contact.avatar}}&size=128 4x">'
+ '{{else}}'
+ '<div class="avatar"></div>'
+ '{{/if}}'
diff --git a/core/js/login/authpicker.js b/core/js/login/authpicker.js
index 666a63da365..2d4bcc33158 100644
--- a/core/js/login/authpicker.js
+++ b/core/js/login/authpicker.js
@@ -8,8 +8,9 @@ jQuery(document).ready(function() {
$('#submit-app-token-login').click(function(e) {
e.preventDefault();
- window.location.href = 'nc://'
- + encodeURIComponent($('#user').val()) + ':' + encodeURIComponent($('#password').val())
- + '@' + encodeURIComponent($('#serverHost').val());
+ window.location.href = 'nc://login/server:'
+ + encodeURIComponent($('#serverHost').val())
+ + "&user:" + encodeURIComponent($('#user').val())
+ + "&password:" + encodeURIComponent($('#password').val());
});
});
diff --git a/core/js/sharedialoglinkshareview.js b/core/js/sharedialoglinkshareview.js
index 6b32484ab8e..54019b02c87 100644
--- a/core/js/sharedialoglinkshareview.js
+++ b/core/js/sharedialoglinkshareview.js
@@ -35,20 +35,23 @@
'{{{popoverMenu}}}' +
'{{/if}}' +
'</div>' +
- ' {{#if publicUpload}}' +
- '<div id="allowPublicUploadWrapper">' +
- ' <span class="icon-loading-small hidden"></span>' +
- ' <input type="checkbox" value="1" name="allowPublicUpload" id="sharingDialogAllowPublicUpload-{{cid}}" class="checkbox publicUploadCheckbox" {{{publicUploadChecked}}} />' +
- '<label for="sharingDialogAllowPublicUpload-{{cid}}">{{publicUploadLabel}}</label>' +
- '</div>' +
- ' {{#if hideFileList}}' +
- '<div id="hideFileListWrapper">' +
- ' <span class="icon-loading-small hidden"></span>' +
- ' <input type="checkbox" value="1" name="hideFileList" id="sharingDialogHideFileList-{{cid}}" class="checkbox hideFileListCheckbox" {{{hideFileListChecked}}} />' +
- '<label for="sharingDialogHideFileList-{{cid}}">{{hideFileListLabel}}</label>' +
- '</div>' +
- ' {{/if}}' +
- ' {{/if}}' +
+ '{{#if publicUpload}}' +
+ '<div>' +
+ '<span class="icon-loading-small hidden"></span>' +
+ '<input type="radio" name="publicUpload" value="{{publicUploadRValue}}" id="sharingDialogAllowPublicUpload-r-{{cid}}" class="radio publicUploadRadio" {{{publicUploadRChecked}}} />' +
+ '<label for="sharingDialogAllowPublicUpload-r-{{cid}}">{{publicUploadRLabel}}</label>' +
+ '</div>' +
+ '<div>' +
+ '<span class="icon-loading-small hidden"></span>' +
+ '<input type="radio" name="publicUpload" value="{{publicUploadRWValue}}" id="sharingDialogAllowPublicUpload-rw-{{cid}}" class="radio publicUploadRadio" {{{publicUploadRWChecked}}} />' +
+ '<label for="sharingDialogAllowPublicUpload-rw-{{cid}}">{{publicUploadRWLabel}}</label>' +
+ '</div>' +
+ '<div>' +
+ '<span class="icon-loading-small hidden"></span>' +
+ '<input type="radio" name="publicUpload" value="{{publicUploadWValue}}" id="sharingDialogAllowPublicUpload-w-{{cid}}" class="radio publicUploadRadio" {{{publicUploadWChecked}}} />' +
+ '<label for="sharingDialogAllowPublicUpload-w-{{cid}}">{{publicUploadWLabel}}</label>' +
+ '</div>' +
+ '{{/if}}' +
' {{#if publicEditing}}' +
'<div id="allowPublicEditingWrapper">' +
' <span class="icon-loading-small hidden"></span>' +
@@ -126,12 +129,11 @@
'keyup input.linkPassText': 'onPasswordKeyUp',
'click .linkCheckbox': 'onLinkCheckBoxChange',
'click .linkText': 'onLinkTextClick',
- 'change .publicUploadCheckbox': 'onAllowPublicUploadChange',
'change .publicEditingCheckbox': 'onAllowPublicEditingChange',
- 'change .hideFileListCheckbox': 'onHideFileListChange',
'click .showPasswordCheckbox': 'onShowPasswordClick',
'click .icon-more': 'onToggleMenu',
- 'click .pop-up': 'onPopUpClick'
+ 'click .pop-up': 'onPopUpClick',
+ 'change .publicUploadRadio': 'onPublicUploadChange'
},
initialize: function(options) {
@@ -170,9 +172,8 @@
'onPasswordKeyUp',
'onLinkTextClick',
'onShowPasswordClick',
- 'onHideFileListChange',
- 'onAllowPublicUploadChange',
- 'onAllowPublicEditingChange'
+ 'onAllowPublicEditingChange',
+ 'onPublicUploadChange'
);
var clipboard = new Clipboard('.clipboardButton');
@@ -318,20 +319,6 @@
});
},
- onAllowPublicUploadChange: function() {
- var $checkbox = this.$('.publicUploadCheckbox');
- $checkbox.siblings('.icon-loading-small').removeClass('hidden').addClass('inlineblock');
-
- var permissions = OC.PERMISSION_READ;
- if($checkbox.is(':checked')) {
- permissions = OC.PERMISSION_UPDATE | OC.PERMISSION_CREATE | OC.PERMISSION_READ | OC.PERMISSION_DELETE;
- }
-
- this.model.saveLinkShare({
- permissions: permissions
- });
- },
-
onAllowPublicEditingChange: function() {
var $checkbox = this.$('.publicEditingCheckbox');
$checkbox.siblings('.icon-loading-small').removeClass('hidden').addClass('inlineblock');
@@ -346,15 +333,9 @@
});
},
- onHideFileListChange: function () {
- var $checkbox = this.$('.hideFileListCheckbox');
- $checkbox.siblings('.icon-loading-small').removeClass('hidden').addClass('inlineblock');
-
- var permissions = OC.PERMISSION_UPDATE | OC.PERMISSION_CREATE | OC.PERMISSION_READ | OC.PERMISSION_DELETE;
- if ($checkbox.is(':checked')) {
- permissions = OC.PERMISSION_CREATE;
- }
+ onPublicUploadChange: function(e) {
+ var permissions = e.currentTarget.value;
this.model.saveLinkShare({
permissions: permissions
});
@@ -382,9 +363,20 @@
&& this.model.createPermissionPossible()
&& this.configModel.isPublicUploadEnabled();
- var publicUploadChecked = '';
- if(this.model.isPublicUploadAllowed()) {
- publicUploadChecked = 'checked="checked"';
+ var publicUploadRWChecked = '';
+ var publicUploadRChecked = '';
+ var publicUploadWChecked = '';
+
+ switch (this.model.linkSharePermissions()) {
+ case OC.PERMISSION_READ:
+ publicUploadRChecked = 'checked';
+ break;
+ case OC.PERMISSION_CREATE:
+ publicUploadWChecked = 'checked';
+ break;
+ case OC.PERMISSION_UPDATE | OC.PERMISSION_CREATE | OC.PERMISSION_READ | OC.PERMISSION_DELETE:
+ publicUploadRWChecked = 'checked';
+ break;
}
var publicEditingChecked = '';
@@ -392,14 +384,6 @@
publicEditingChecked = 'checked="checked"';
}
-
- var hideFileList = publicUploadChecked;
-
- var hideFileListChecked = '';
- if(this.model.isHideFileListSet()) {
- hideFileListChecked = 'checked="checked"';
- }
-
var isLinkShare = this.model.get('linkShare').isLinkShare;
var isPasswordSet = !!this.model.get('linkShare').password;
var showPasswordCheckBox = isLinkShare
@@ -437,7 +421,6 @@
this.$el.html(linkShareTemplate({
cid: this.cid,
shareAllowed: true,
- hideFileList: hideFileList,
isLinkShare: isLinkShare,
shareLinkURL: this.model.get('linkShare').link,
linkShareLabel: t('core', 'Share link'),
@@ -449,17 +432,22 @@
isPasswordSet: isPasswordSet,
showPasswordCheckBox: showPasswordCheckBox,
publicUpload: publicUpload && isLinkShare,
- publicUploadChecked: publicUploadChecked,
- hideFileListChecked: hideFileListChecked,
- publicUploadLabel: t('core', 'Allow upload and editing'),
publicEditing: publicEditable,
publicEditingChecked: publicEditingChecked,
publicEditingLabel: t('core', 'Allow editing'),
- hideFileListLabel: 'Secure drop (' + t('core', 'upload only') + ')',
mailPrivatePlaceholder: t('core', 'Email link to person'),
mailButtonText: t('core', 'Send'),
singleAction: OC.Share.Social.Collection.size() == 0,
- popoverMenu: popover
+ popoverMenu: popover,
+ publicUploadRWLabel: t('core', 'Allow upload and editing'),
+ publicUploadRLabel: t('core', 'Read only'),
+ publicUploadWLabel: t('core', 'Secure drop (upload only)'),
+ publicUploadRWValue: OC.PERMISSION_UPDATE | OC.PERMISSION_CREATE | OC.PERMISSION_READ | OC.PERMISSION_DELETE,
+ publicUploadRValue: OC.PERMISSION_READ,
+ publicUploadWValue: OC.PERMISSION_CREATE,
+ publicUploadRWChecked: publicUploadRWChecked,
+ publicUploadRChecked: publicUploadRChecked,
+ publicUploadWChecked: publicUploadWChecked
}));
if (OC.Share.Social.Collection.size() == 0) {
diff --git a/core/js/shareitemmodel.js b/core/js/shareitemmodel.js
index 4118a8a0188..afe86fa464b 100644
--- a/core/js/shareitemmodel.js
+++ b/core/js/shareitemmodel.js
@@ -487,6 +487,13 @@
},
/**
+ * @return {int}
+ */
+ getPermissions: function() {
+ return this.get('permissions');
+ },
+
+ /**
* @returns {boolean}
*/
sharePermissionPossible: function() {
@@ -568,6 +575,17 @@
|| this.hasDeletePermission(shareIndex);
},
+ /**
+ * @returns {int}
+ */
+ linkSharePermissions: function() {
+ if (!this.hasLinkShare()) {
+ return -1;
+ } else {
+ return this.get('linkShare').permissions;
+ }
+ },
+
_getUrl: function(base, params) {
params = _.extend({format: 'json'}, params || {});
return OC.linkToOCS('apps/files_sharing/api/v1', 2) + base + '?' + OC.buildQueryString(params);
diff --git a/core/l10n/bg.js b/core/l10n/bg.js
index b6a251a0cf7..61a4a3581a8 100644
--- a/core/l10n/bg.js
+++ b/core/l10n/bg.js
@@ -115,10 +115,10 @@ OC.L10N.register(
"Share link" : "Връзка за споделяне",
"Link" : "Връзка",
"Password protect" : "Защитено с парола",
- "Allow upload and editing" : "Позволи обновяване и редактиране",
"Allow editing" : "Позволяване на редактиране",
"Email link to person" : "Имейл връзка към човек",
"Send" : "Изпращане",
+ "Allow upload and editing" : "Позволи обновяване и редактиране",
"Shared with you and the group {group} by {owner}" : "Споделено от {owner} с вас и групата {group}",
"Shared with you by {owner}" : "Споделено с вас от {owner}",
"{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatorDisplayName}} споделен с връзка",
diff --git a/core/l10n/bg.json b/core/l10n/bg.json
index a6f7600e519..4483911793c 100644
--- a/core/l10n/bg.json
+++ b/core/l10n/bg.json
@@ -113,10 +113,10 @@
"Share link" : "Връзка за споделяне",
"Link" : "Връзка",
"Password protect" : "Защитено с парола",
- "Allow upload and editing" : "Позволи обновяване и редактиране",
"Allow editing" : "Позволяване на редактиране",
"Email link to person" : "Имейл връзка към човек",
"Send" : "Изпращане",
+ "Allow upload and editing" : "Позволи обновяване и редактиране",
"Shared with you and the group {group} by {owner}" : "Споделено от {owner} с вас и групата {group}",
"Shared with you by {owner}" : "Споделено с вас от {owner}",
"{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatorDisplayName}} споделен с връзка",
diff --git a/core/l10n/cs.js b/core/l10n/cs.js
index 30b99bf0ef2..b29e1f0dd00 100644
--- a/core/l10n/cs.js
+++ b/core/l10n/cs.js
@@ -135,11 +135,11 @@ OC.L10N.register(
"Share link" : "Sdílet odkaz",
"Link" : "Odkaz",
"Password protect" : "Chránit heslem",
- "Allow upload and editing" : "Povolit nahrávání a úpravy",
"Allow editing" : "Povolit úpravy",
- "upload only" : "Pouze nahrávat",
"Email link to person" : "Odeslat osobě odkaz emailem",
"Send" : "Odeslat",
+ "Allow upload and editing" : "Povolit nahrávání a úpravy",
+ "Secure drop (upload only)" : "Bezpečné doručení (pouze nahrání)",
"Shared with you and the group {group} by {owner}" : "S Vámi a skupinou {group} sdílí {owner}",
"Shared with you by {owner}" : "S Vámi sdílí {owner}",
"Choose a password for the mail share" : "Zvolte si heslo e-mailového sdílení",
@@ -154,7 +154,6 @@ OC.L10N.register(
"Can create" : "Může vytvářet",
"Can change" : "Může měnit",
"Can delete" : "Může mazat",
- "Secure drop (upload only)" : "Bezpečné doručení (pouze nahrání)",
"Access control" : "Řízení přístupu",
"Could not unshare" : "Nelze zrušit sdílení",
"Error while sharing" : "Chyba při sdílení",
diff --git a/core/l10n/cs.json b/core/l10n/cs.json
index fa407306369..a23b093e1a5 100644
--- a/core/l10n/cs.json
+++ b/core/l10n/cs.json
@@ -133,11 +133,11 @@
"Share link" : "Sdílet odkaz",
"Link" : "Odkaz",
"Password protect" : "Chránit heslem",
- "Allow upload and editing" : "Povolit nahrávání a úpravy",
"Allow editing" : "Povolit úpravy",
- "upload only" : "Pouze nahrávat",
"Email link to person" : "Odeslat osobě odkaz emailem",
"Send" : "Odeslat",
+ "Allow upload and editing" : "Povolit nahrávání a úpravy",
+ "Secure drop (upload only)" : "Bezpečné doručení (pouze nahrání)",
"Shared with you and the group {group} by {owner}" : "S Vámi a skupinou {group} sdílí {owner}",
"Shared with you by {owner}" : "S Vámi sdílí {owner}",
"Choose a password for the mail share" : "Zvolte si heslo e-mailového sdílení",
@@ -152,7 +152,6 @@
"Can create" : "Může vytvářet",
"Can change" : "Může měnit",
"Can delete" : "Může mazat",
- "Secure drop (upload only)" : "Bezpečné doručení (pouze nahrání)",
"Access control" : "Řízení přístupu",
"Could not unshare" : "Nelze zrušit sdílení",
"Error while sharing" : "Chyba při sdílení",
diff --git a/core/l10n/de.js b/core/l10n/de.js
index 05900d7a05d..89fae89bb8b 100644
--- a/core/l10n/de.js
+++ b/core/l10n/de.js
@@ -135,11 +135,12 @@ OC.L10N.register(
"Share link" : "Link teilen",
"Link" : "Link",
"Password protect" : "Passwortschutz",
- "Allow upload and editing" : "Hochladen und Bearbeiten erlauben",
"Allow editing" : "Bearbeitung erlauben",
- "upload only" : "Nur Hochladen",
"Email link to person" : "Link per E-Mail verschicken",
"Send" : "Senden",
+ "Allow upload and editing" : "Hochladen und Bearbeiten erlauben",
+ "Read only" : "Schreibgeschützt",
+ "Secure drop (upload only)" : "Sicheres ablegen (nur Hochladen)",
"Shared with you and the group {group} by {owner}" : "{owner} hat dies mit Dir und der Gruppe {group} geteilt",
"Shared with you by {owner}" : "{owner} hat dies mit Dir geteilt",
"Choose a password for the mail share" : "Wähle ein Passwort für das Teilen via E-Mail",
@@ -154,7 +155,6 @@ OC.L10N.register(
"Can create" : "kann erstellen",
"Can change" : "kann ändern",
"Can delete" : "kann löschen",
- "Secure drop (upload only)" : "Sicheres ablegen (nur Hochladen)",
"Access control" : "Zugriffskontrolle",
"Could not unshare" : "Freigabe konnte nicht entfernt werden",
"Error while sharing" : "Fehler beim Teilen",
diff --git a/core/l10n/de.json b/core/l10n/de.json
index dab5624e85d..2b2a62ff7bc 100644
--- a/core/l10n/de.json
+++ b/core/l10n/de.json
@@ -133,11 +133,12 @@
"Share link" : "Link teilen",
"Link" : "Link",
"Password protect" : "Passwortschutz",
- "Allow upload and editing" : "Hochladen und Bearbeiten erlauben",
"Allow editing" : "Bearbeitung erlauben",
- "upload only" : "Nur Hochladen",
"Email link to person" : "Link per E-Mail verschicken",
"Send" : "Senden",
+ "Allow upload and editing" : "Hochladen und Bearbeiten erlauben",
+ "Read only" : "Schreibgeschützt",
+ "Secure drop (upload only)" : "Sicheres ablegen (nur Hochladen)",
"Shared with you and the group {group} by {owner}" : "{owner} hat dies mit Dir und der Gruppe {group} geteilt",
"Shared with you by {owner}" : "{owner} hat dies mit Dir geteilt",
"Choose a password for the mail share" : "Wähle ein Passwort für das Teilen via E-Mail",
@@ -152,7 +153,6 @@
"Can create" : "kann erstellen",
"Can change" : "kann ändern",
"Can delete" : "kann löschen",
- "Secure drop (upload only)" : "Sicheres ablegen (nur Hochladen)",
"Access control" : "Zugriffskontrolle",
"Could not unshare" : "Freigabe konnte nicht entfernt werden",
"Error while sharing" : "Fehler beim Teilen",
diff --git a/core/l10n/de_DE.js b/core/l10n/de_DE.js
index 251ddb35d05..5a79d96372c 100644
--- a/core/l10n/de_DE.js
+++ b/core/l10n/de_DE.js
@@ -135,11 +135,12 @@ OC.L10N.register(
"Share link" : "Link teilen",
"Link" : "Link",
"Password protect" : "Passwortschutz",
- "Allow upload and editing" : "Hochladen und Bearbeiten erlauben",
"Allow editing" : "Bearbeitung erlauben",
- "upload only" : "Nur Hochladen",
"Email link to person" : "Link per E-Mail verschicken",
"Send" : "Senden",
+ "Allow upload and editing" : "Hochladen und Bearbeiten erlauben",
+ "Read only" : "Schreibgeschützt",
+ "Secure drop (upload only)" : "Sicheres ablegen (nur Hochladen)",
"Shared with you and the group {group} by {owner}" : "Von {owner} mit Ihnen und der Gruppe {group} geteilt.",
"Shared with you by {owner}" : "Von {owner} mit Ihnen geteilt.",
"Choose a password for the mail share" : "Wählen Sie ein Passwort für das Teilen via E-Mail",
@@ -154,7 +155,6 @@ OC.L10N.register(
"Can create" : "kann erstellen",
"Can change" : "kann ändern",
"Can delete" : "kann löschen",
- "Secure drop (upload only)" : "Sicheres ablegen (nur Hochladen)",
"Access control" : "Zugriffskontrolle",
"Could not unshare" : "Freigabe konnte nicht aufgehoben werden",
"Error while sharing" : "Fehler beim Teilen",
diff --git a/core/l10n/de_DE.json b/core/l10n/de_DE.json
index d9f4f9089ea..c298f9004ea 100644
--- a/core/l10n/de_DE.json
+++ b/core/l10n/de_DE.json
@@ -133,11 +133,12 @@
"Share link" : "Link teilen",
"Link" : "Link",
"Password protect" : "Passwortschutz",
- "Allow upload and editing" : "Hochladen und Bearbeiten erlauben",
"Allow editing" : "Bearbeitung erlauben",
- "upload only" : "Nur Hochladen",
"Email link to person" : "Link per E-Mail verschicken",
"Send" : "Senden",
+ "Allow upload and editing" : "Hochladen und Bearbeiten erlauben",
+ "Read only" : "Schreibgeschützt",
+ "Secure drop (upload only)" : "Sicheres ablegen (nur Hochladen)",
"Shared with you and the group {group} by {owner}" : "Von {owner} mit Ihnen und der Gruppe {group} geteilt.",
"Shared with you by {owner}" : "Von {owner} mit Ihnen geteilt.",
"Choose a password for the mail share" : "Wählen Sie ein Passwort für das Teilen via E-Mail",
@@ -152,7 +153,6 @@
"Can create" : "kann erstellen",
"Can change" : "kann ändern",
"Can delete" : "kann löschen",
- "Secure drop (upload only)" : "Sicheres ablegen (nur Hochladen)",
"Access control" : "Zugriffskontrolle",
"Could not unshare" : "Freigabe konnte nicht aufgehoben werden",
"Error while sharing" : "Fehler beim Teilen",
diff --git a/core/l10n/el.js b/core/l10n/el.js
index 90ac874177a..be436779d44 100644
--- a/core/l10n/el.js
+++ b/core/l10n/el.js
@@ -14,6 +14,7 @@ OC.L10N.register(
"No crop data provided" : "Δεν δόθηκαν δεδομένα περικοπής",
"No valid crop data provided" : "Έχουν δοθεί μη έγκυρα δεδομένα περικοπής",
"Crop is not square" : "Η περικοπή δεν εχει τετραγωνικό σχήμα",
+ "State token does not match" : "Το αναγνωριστικό κατάστασης δεν ταιριάζει",
"Couldn't reset password because the token is invalid" : "Αδυναμία επαναφοράς συνθηματικού λόγω μη έγκυρου διακριτικού",
"Couldn't reset password because the token is expired" : "Αδυναμία επαναφοράς συνθηματικού επειδή το διακριτικό έχει λήξει",
"Could not send reset email because there is no email address for this username. Please contact your administrator." : "Αδυναμία αποστολής ηλεκτρονικού μηνύματος επαναφοράς διότι δεν υπάρχει διεύθυνση ηλεκτρινικής αλληλογραφίας για αυτόν τον χρήστη. Παρακαλώ επικοινωνήστε με το διαχειριστή.",
@@ -133,11 +134,11 @@ OC.L10N.register(
"Share link" : "Διαμοιρασμός συνδέσμου",
"Link" : "Σύνδεσμος",
"Password protect" : "Προστασία συνθηματικού",
- "Allow upload and editing" : "Επιτρέπονται η μεταφόρτωση και η επεξεργασία",
"Allow editing" : "Επιτρέπεται η επεξεργασία",
- "upload only" : "μόνο μεταφόρτωση",
"Email link to person" : "Αποστολή συνδέσμου με email",
"Send" : "Αποστολή",
+ "Allow upload and editing" : "Επιτρέπονται η μεταφόρτωση και η επεξεργασία",
+ "Secure drop (upload only)" : "Ασφαλής απόθεση (μόνο μεταφόρτωση)",
"Shared with you and the group {group} by {owner}" : "Διαμοιράστηκε με σας και με την ομάδα {group} του {owner}",
"Shared with you by {owner}" : "Διαμοιράστηκε με σας από τον {owner}",
"Choose a password for the mail share" : "Επιλογή συνθηματικού για διαμοιρασμό με αλληλογραφία",
@@ -152,7 +153,6 @@ OC.L10N.register(
"Can create" : "Δυνατότητα δημιουργίας",
"Can change" : "Δυνατότητα αλλαγής",
"Can delete" : "Δυνατότητα διαγραφής",
- "Secure drop (upload only)" : "Ασφαλής απόθεση (μόνο μεταφόρτωση)",
"Access control" : "Έλεγχος πρόσβασης",
"Could not unshare" : "Δεν μπορεί να γίνει αναίρεση διαμοιρασμού",
"Error while sharing" : "Σφάλμα κατά τον διαμοιρασμό",
diff --git a/core/l10n/el.json b/core/l10n/el.json
index 838decb3afd..36f67e5726d 100644
--- a/core/l10n/el.json
+++ b/core/l10n/el.json
@@ -12,6 +12,7 @@
"No crop data provided" : "Δεν δόθηκαν δεδομένα περικοπής",
"No valid crop data provided" : "Έχουν δοθεί μη έγκυρα δεδομένα περικοπής",
"Crop is not square" : "Η περικοπή δεν εχει τετραγωνικό σχήμα",
+ "State token does not match" : "Το αναγνωριστικό κατάστασης δεν ταιριάζει",
"Couldn't reset password because the token is invalid" : "Αδυναμία επαναφοράς συνθηματικού λόγω μη έγκυρου διακριτικού",
"Couldn't reset password because the token is expired" : "Αδυναμία επαναφοράς συνθηματικού επειδή το διακριτικό έχει λήξει",
"Could not send reset email because there is no email address for this username. Please contact your administrator." : "Αδυναμία αποστολής ηλεκτρονικού μηνύματος επαναφοράς διότι δεν υπάρχει διεύθυνση ηλεκτρινικής αλληλογραφίας για αυτόν τον χρήστη. Παρακαλώ επικοινωνήστε με το διαχειριστή.",
@@ -131,11 +132,11 @@
"Share link" : "Διαμοιρασμός συνδέσμου",
"Link" : "Σύνδεσμος",
"Password protect" : "Προστασία συνθηματικού",
- "Allow upload and editing" : "Επιτρέπονται η μεταφόρτωση και η επεξεργασία",
"Allow editing" : "Επιτρέπεται η επεξεργασία",
- "upload only" : "μόνο μεταφόρτωση",
"Email link to person" : "Αποστολή συνδέσμου με email",
"Send" : "Αποστολή",
+ "Allow upload and editing" : "Επιτρέπονται η μεταφόρτωση και η επεξεργασία",
+ "Secure drop (upload only)" : "Ασφαλής απόθεση (μόνο μεταφόρτωση)",
"Shared with you and the group {group} by {owner}" : "Διαμοιράστηκε με σας και με την ομάδα {group} του {owner}",
"Shared with you by {owner}" : "Διαμοιράστηκε με σας από τον {owner}",
"Choose a password for the mail share" : "Επιλογή συνθηματικού για διαμοιρασμό με αλληλογραφία",
@@ -150,7 +151,6 @@
"Can create" : "Δυνατότητα δημιουργίας",
"Can change" : "Δυνατότητα αλλαγής",
"Can delete" : "Δυνατότητα διαγραφής",
- "Secure drop (upload only)" : "Ασφαλής απόθεση (μόνο μεταφόρτωση)",
"Access control" : "Έλεγχος πρόσβασης",
"Could not unshare" : "Δεν μπορεί να γίνει αναίρεση διαμοιρασμού",
"Error while sharing" : "Σφάλμα κατά τον διαμοιρασμό",
diff --git a/core/l10n/es.js b/core/l10n/es.js
index 09da33640d9..5d35a93474f 100644
--- a/core/l10n/es.js
+++ b/core/l10n/es.js
@@ -135,11 +135,12 @@ OC.L10N.register(
"Share link" : "Enlace compartido",
"Link" : "Enlace",
"Password protect" : "Protección con contraseña",
- "Allow upload and editing" : "Permitir la subida y la edición",
"Allow editing" : "Permitir edición",
- "upload only" : "solo subida",
"Email link to person" : "Enviar enlace por correo electrónico a una persona",
"Send" : "Enviar",
+ "Allow upload and editing" : "Permitir la subida y la edición",
+ "Read only" : "Solo lectura",
+ "Secure drop (upload only)" : "Gota segura (solo subir)",
"Shared with you and the group {group} by {owner}" : "Compartido contigo y el grupo {group} por {owner}",
"Shared with you by {owner}" : "Compartido contigo por {owner}",
"Choose a password for the mail share" : "Elija una contraseña para compartir por correo electrónico",
@@ -154,7 +155,6 @@ OC.L10N.register(
"Can create" : "Puede crear",
"Can change" : "Puede cambiar",
"Can delete" : "Puede eliminar",
- "Secure drop (upload only)" : "Gota segura (solo subir)",
"Access control" : "Control de acceso",
"Could not unshare" : "No se puede quitar el comparto",
"Error while sharing" : "Error al compartir",
diff --git a/core/l10n/es.json b/core/l10n/es.json
index 09c3d64a6da..c4f38f116fd 100644
--- a/core/l10n/es.json
+++ b/core/l10n/es.json
@@ -133,11 +133,12 @@
"Share link" : "Enlace compartido",
"Link" : "Enlace",
"Password protect" : "Protección con contraseña",
- "Allow upload and editing" : "Permitir la subida y la edición",
"Allow editing" : "Permitir edición",
- "upload only" : "solo subida",
"Email link to person" : "Enviar enlace por correo electrónico a una persona",
"Send" : "Enviar",
+ "Allow upload and editing" : "Permitir la subida y la edición",
+ "Read only" : "Solo lectura",
+ "Secure drop (upload only)" : "Gota segura (solo subir)",
"Shared with you and the group {group} by {owner}" : "Compartido contigo y el grupo {group} por {owner}",
"Shared with you by {owner}" : "Compartido contigo por {owner}",
"Choose a password for the mail share" : "Elija una contraseña para compartir por correo electrónico",
@@ -152,7 +153,6 @@
"Can create" : "Puede crear",
"Can change" : "Puede cambiar",
"Can delete" : "Puede eliminar",
- "Secure drop (upload only)" : "Gota segura (solo subir)",
"Access control" : "Control de acceso",
"Could not unshare" : "No se puede quitar el comparto",
"Error while sharing" : "Error al compartir",
diff --git a/core/l10n/es_MX.js b/core/l10n/es_MX.js
index 67638809691..60946f5a0f8 100644
--- a/core/l10n/es_MX.js
+++ b/core/l10n/es_MX.js
@@ -135,11 +135,12 @@ OC.L10N.register(
"Share link" : "Compartir liga",
"Link" : "Liga",
"Password protect" : "Proteger con contraseña",
- "Allow upload and editing" : "Permitir cargar y editar",
"Allow editing" : "Permitir editar",
- "upload only" : "sólo cargar",
"Email link to person" : "Enviar la liga por correo electrónico a una persona",
"Send" : "Enviar",
+ "Allow upload and editing" : "Permitir cargar y editar",
+ "Read only" : "Solo lectura",
+ "Secure drop (upload only)" : "Depósito seguro (sólo carga de archivos)",
"Shared with you and the group {group} by {owner}" : "Compartido con usted y el grupo {group} por {owner}",
"Shared with you by {owner}" : "Compartido con usted por {owner}",
"Choose a password for the mail share" : "Establecer una contraseña para el elemento compartido por correo",
@@ -154,7 +155,6 @@ OC.L10N.register(
"Can create" : "Puede crear",
"Can change" : "Puede cambiar",
"Can delete" : "Puede borrar",
- "Secure drop (upload only)" : "Depósito seguro (sólo carga de archivos)",
"Access control" : "Control de acceso",
"Could not unshare" : "No fue posible dejar de compartir",
"Error while sharing" : "Se presentó un error al compartir",
diff --git a/core/l10n/es_MX.json b/core/l10n/es_MX.json
index 5b28d0b38d1..c19324cea6c 100644
--- a/core/l10n/es_MX.json
+++ b/core/l10n/es_MX.json
@@ -133,11 +133,12 @@
"Share link" : "Compartir liga",
"Link" : "Liga",
"Password protect" : "Proteger con contraseña",
- "Allow upload and editing" : "Permitir cargar y editar",
"Allow editing" : "Permitir editar",
- "upload only" : "sólo cargar",
"Email link to person" : "Enviar la liga por correo electrónico a una persona",
"Send" : "Enviar",
+ "Allow upload and editing" : "Permitir cargar y editar",
+ "Read only" : "Solo lectura",
+ "Secure drop (upload only)" : "Depósito seguro (sólo carga de archivos)",
"Shared with you and the group {group} by {owner}" : "Compartido con usted y el grupo {group} por {owner}",
"Shared with you by {owner}" : "Compartido con usted por {owner}",
"Choose a password for the mail share" : "Establecer una contraseña para el elemento compartido por correo",
@@ -152,7 +153,6 @@
"Can create" : "Puede crear",
"Can change" : "Puede cambiar",
"Can delete" : "Puede borrar",
- "Secure drop (upload only)" : "Depósito seguro (sólo carga de archivos)",
"Access control" : "Control de acceso",
"Could not unshare" : "No fue posible dejar de compartir",
"Error while sharing" : "Se presentó un error al compartir",
diff --git a/core/l10n/eu.js b/core/l10n/eu.js
index 17f1ce2cb39..c19aabe6cdf 100644
--- a/core/l10n/eu.js
+++ b/core/l10n/eu.js
@@ -116,10 +116,10 @@ OC.L10N.register(
"Share link" : "Elkarbanatu lotura",
"Link" : "Esteka",
"Password protect" : "Babestu pasahitzarekin",
- "Allow upload and editing" : "Onartu igoera eta edizioa",
"Allow editing" : "Baimendu editatzea",
"Email link to person" : "Postaz bidali lotura ",
"Send" : "Bidali",
+ "Allow upload and editing" : "Onartu igoera eta edizioa",
"Shared with you and the group {group} by {owner}" : "{owner}-k zu eta {group} taldearekin elkarbanatuta",
"Shared with you by {owner}" : "{owner}-k zurekin elkarbanatuta",
"{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatorDisplayName}} link bidez partekatuta",
diff --git a/core/l10n/eu.json b/core/l10n/eu.json
index 133b4e39635..e89b1f8eb68 100644
--- a/core/l10n/eu.json
+++ b/core/l10n/eu.json
@@ -114,10 +114,10 @@
"Share link" : "Elkarbanatu lotura",
"Link" : "Esteka",
"Password protect" : "Babestu pasahitzarekin",
- "Allow upload and editing" : "Onartu igoera eta edizioa",
"Allow editing" : "Baimendu editatzea",
"Email link to person" : "Postaz bidali lotura ",
"Send" : "Bidali",
+ "Allow upload and editing" : "Onartu igoera eta edizioa",
"Shared with you and the group {group} by {owner}" : "{owner}-k zu eta {group} taldearekin elkarbanatuta",
"Shared with you by {owner}" : "{owner}-k zurekin elkarbanatuta",
"{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatorDisplayName}} link bidez partekatuta",
diff --git a/core/l10n/fi.js b/core/l10n/fi.js
index ce26d121f99..5bab688fc59 100644
--- a/core/l10n/fi.js
+++ b/core/l10n/fi.js
@@ -128,11 +128,11 @@ OC.L10N.register(
"Share link" : "Jaa linkki",
"Link" : "Linkki",
"Password protect" : "Suojaa salasanalla",
- "Allow upload and editing" : "Salli lähetys ja muokkaus",
"Allow editing" : "Salli muokkaus",
- "upload only" : "vain lähetys",
"Email link to person" : "Lähetä linkki sähköpostitse",
"Send" : "Lähetä",
+ "Allow upload and editing" : "Salli lähetys ja muokkaus",
+ "Secure drop (upload only)" : "Tiedostojen pudotus (vain lähetys)",
"Shared with you and the group {group} by {owner}" : "Jaettu sinun ja ryhmän {group} kanssa käyttäjältä {owner}",
"Shared with you by {owner}" : "Jaettu kanssasi käyttäjältä {owner}",
"Choose a password for the mail share" : "Valitse salasana sähköpostijaolle",
@@ -147,7 +147,6 @@ OC.L10N.register(
"Can create" : "Voi luoda",
"Can change" : "Voi vaihtaa",
"Can delete" : "Voi poistaa",
- "Secure drop (upload only)" : "Tiedostojen pudotus (vain lähetys)",
"Access control" : "Pääsynhallinta",
"Could not unshare" : "Jakamisen lopettaminen epäonnistui",
"Error while sharing" : "Virhe jaettaessa",
diff --git a/core/l10n/fi.json b/core/l10n/fi.json
index 631f8d7cfdd..80db8e783f7 100644
--- a/core/l10n/fi.json
+++ b/core/l10n/fi.json
@@ -126,11 +126,11 @@
"Share link" : "Jaa linkki",
"Link" : "Linkki",
"Password protect" : "Suojaa salasanalla",
- "Allow upload and editing" : "Salli lähetys ja muokkaus",
"Allow editing" : "Salli muokkaus",
- "upload only" : "vain lähetys",
"Email link to person" : "Lähetä linkki sähköpostitse",
"Send" : "Lähetä",
+ "Allow upload and editing" : "Salli lähetys ja muokkaus",
+ "Secure drop (upload only)" : "Tiedostojen pudotus (vain lähetys)",
"Shared with you and the group {group} by {owner}" : "Jaettu sinun ja ryhmän {group} kanssa käyttäjältä {owner}",
"Shared with you by {owner}" : "Jaettu kanssasi käyttäjältä {owner}",
"Choose a password for the mail share" : "Valitse salasana sähköpostijaolle",
@@ -145,7 +145,6 @@
"Can create" : "Voi luoda",
"Can change" : "Voi vaihtaa",
"Can delete" : "Voi poistaa",
- "Secure drop (upload only)" : "Tiedostojen pudotus (vain lähetys)",
"Access control" : "Pääsynhallinta",
"Could not unshare" : "Jakamisen lopettaminen epäonnistui",
"Error while sharing" : "Virhe jaettaessa",
diff --git a/core/l10n/fr.js b/core/l10n/fr.js
index 6cda757a64c..155daba2eac 100644
--- a/core/l10n/fr.js
+++ b/core/l10n/fr.js
@@ -132,11 +132,12 @@ OC.L10N.register(
"Share link" : "Partager par lien public",
"Link" : "Lien",
"Password protect" : "Protéger par un mot de passe",
- "Allow upload and editing" : "Autoriser l'envoi et l'édition",
"Allow editing" : "Permettre la modification",
- "upload only" : " Envoyer uniquement",
"Email link to person" : "Envoyer le lien par courriel",
"Send" : "Envoyer",
+ "Allow upload and editing" : "Autoriser l'envoi et l'édition",
+ "Read only" : "Lecture seule",
+ "Secure drop (upload only)" : "Dépôt sécurisé (téléversement uniquement)",
"Shared with you and the group {group} by {owner}" : "Partagé avec vous et le groupe {group} par {owner}",
"Shared with you by {owner}" : "Partagé avec vous par {owner}",
"Choose a password for the mail share" : "Choisissez un mot de passe pour le partage par email",
@@ -151,7 +152,6 @@ OC.L10N.register(
"Can create" : "Peut créer",
"Can change" : "Peut modifier",
"Can delete" : "Peut supprimer",
- "Secure drop (upload only)" : "Dépôt sécurisé (téléversement uniquement)",
"Access control" : "Contrôle d'accès",
"Could not unshare" : "Impossible d'arrêter de partager",
"Error while sharing" : "Erreur lors de la mise en partage",
@@ -265,6 +265,8 @@ OC.L10N.register(
"Stay logged in" : "Rester connecté",
"Alternative Logins" : "Identifiants alternatifs",
"You are about to grant \"%s\" access to your %s account." : "Vous êtes sur le point d'accorder à \"%s\" l'accès à votre compte \"%s\".",
+ "App token" : "Jeton d'application",
+ "Alternative login using app token" : "Authentification alternative utilisant un jeton d'application",
"Redirecting …" : "Redirection en cours...",
"New password" : "Nouveau mot de passe",
"New Password" : "Nouveau mot de passe",
diff --git a/core/l10n/fr.json b/core/l10n/fr.json
index e9cd957490b..22d4e4f705c 100644
--- a/core/l10n/fr.json
+++ b/core/l10n/fr.json
@@ -130,11 +130,12 @@
"Share link" : "Partager par lien public",
"Link" : "Lien",
"Password protect" : "Protéger par un mot de passe",
- "Allow upload and editing" : "Autoriser l'envoi et l'édition",
"Allow editing" : "Permettre la modification",
- "upload only" : " Envoyer uniquement",
"Email link to person" : "Envoyer le lien par courriel",
"Send" : "Envoyer",
+ "Allow upload and editing" : "Autoriser l'envoi et l'édition",
+ "Read only" : "Lecture seule",
+ "Secure drop (upload only)" : "Dépôt sécurisé (téléversement uniquement)",
"Shared with you and the group {group} by {owner}" : "Partagé avec vous et le groupe {group} par {owner}",
"Shared with you by {owner}" : "Partagé avec vous par {owner}",
"Choose a password for the mail share" : "Choisissez un mot de passe pour le partage par email",
@@ -149,7 +150,6 @@
"Can create" : "Peut créer",
"Can change" : "Peut modifier",
"Can delete" : "Peut supprimer",
- "Secure drop (upload only)" : "Dépôt sécurisé (téléversement uniquement)",
"Access control" : "Contrôle d'accès",
"Could not unshare" : "Impossible d'arrêter de partager",
"Error while sharing" : "Erreur lors de la mise en partage",
@@ -263,6 +263,8 @@
"Stay logged in" : "Rester connecté",
"Alternative Logins" : "Identifiants alternatifs",
"You are about to grant \"%s\" access to your %s account." : "Vous êtes sur le point d'accorder à \"%s\" l'accès à votre compte \"%s\".",
+ "App token" : "Jeton d'application",
+ "Alternative login using app token" : "Authentification alternative utilisant un jeton d'application",
"Redirecting …" : "Redirection en cours...",
"New password" : "Nouveau mot de passe",
"New Password" : "Nouveau mot de passe",
diff --git a/core/l10n/hu.js b/core/l10n/hu.js
index 2a7f9ff3c84..097834ea472 100644
--- a/core/l10n/hu.js
+++ b/core/l10n/hu.js
@@ -115,11 +115,10 @@ OC.L10N.register(
"Share link" : "Megosztás hivatkozással",
"Link" : "Hivatkozás",
"Password protect" : "Jelszóval védett",
- "Allow upload and editing" : "Feltöltés és szerkesztés engedélyezése",
"Allow editing" : "Szerkesztés engedélyezése",
- "upload only" : "csak feltöltés",
"Email link to person" : "Hivatkozás elküldése e-mail címre",
"Send" : "Küldés",
+ "Allow upload and editing" : "Feltöltés és szerkesztés engedélyezése",
"Shared with you and the group {group} by {owner}" : "{owner} megosztotta veled és ezzel a csoporttal: {group}",
"Shared with you by {owner}" : "{owner} megosztotta veled",
"{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatorDisplayName}} megosztva hivatkozással",
diff --git a/core/l10n/hu.json b/core/l10n/hu.json
index ba703d83dd0..6462720387e 100644
--- a/core/l10n/hu.json
+++ b/core/l10n/hu.json
@@ -113,11 +113,10 @@
"Share link" : "Megosztás hivatkozással",
"Link" : "Hivatkozás",
"Password protect" : "Jelszóval védett",
- "Allow upload and editing" : "Feltöltés és szerkesztés engedélyezése",
"Allow editing" : "Szerkesztés engedélyezése",
- "upload only" : "csak feltöltés",
"Email link to person" : "Hivatkozás elküldése e-mail címre",
"Send" : "Küldés",
+ "Allow upload and editing" : "Feltöltés és szerkesztés engedélyezése",
"Shared with you and the group {group} by {owner}" : "{owner} megosztotta veled és ezzel a csoporttal: {group}",
"Shared with you by {owner}" : "{owner} megosztotta veled",
"{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatorDisplayName}} megosztva hivatkozással",
diff --git a/core/l10n/id.js b/core/l10n/id.js
index c09e1399bd3..fb4852db6f9 100644
--- a/core/l10n/id.js
+++ b/core/l10n/id.js
@@ -117,10 +117,10 @@ OC.L10N.register(
"Share link" : "Bagikan tautan",
"Link" : "Tautan",
"Password protect" : "Lindungi dengan sandi",
- "Allow upload and editing" : "Izinkan pengunggahan dan penyuntingan",
"Allow editing" : "Izinkan penyuntingan",
"Email link to person" : "Emailkan tautan ini ke orang",
"Send" : "Kirim",
+ "Allow upload and editing" : "Izinkan pengunggahan dan penyuntingan",
"Shared with you and the group {group} by {owner}" : "Dibagikan dengan anda dan grup {group} oleh {owner}",
"Shared with you by {owner}" : "Dibagikan dengan anda oleh {owner}",
"{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatorDisplayName}} dibagikan lewat tautan",
diff --git a/core/l10n/id.json b/core/l10n/id.json
index 2397a7416fc..8639c6b818d 100644
--- a/core/l10n/id.json
+++ b/core/l10n/id.json
@@ -115,10 +115,10 @@
"Share link" : "Bagikan tautan",
"Link" : "Tautan",
"Password protect" : "Lindungi dengan sandi",
- "Allow upload and editing" : "Izinkan pengunggahan dan penyuntingan",
"Allow editing" : "Izinkan penyuntingan",
"Email link to person" : "Emailkan tautan ini ke orang",
"Send" : "Kirim",
+ "Allow upload and editing" : "Izinkan pengunggahan dan penyuntingan",
"Shared with you and the group {group} by {owner}" : "Dibagikan dengan anda dan grup {group} oleh {owner}",
"Shared with you by {owner}" : "Dibagikan dengan anda oleh {owner}",
"{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatorDisplayName}} dibagikan lewat tautan",
diff --git a/core/l10n/is.js b/core/l10n/is.js
index 273fdbe25ec..0ed52aa0d0b 100644
--- a/core/l10n/is.js
+++ b/core/l10n/is.js
@@ -131,11 +131,11 @@ OC.L10N.register(
"Share link" : "Deila tengli",
"Link" : "Tengill",
"Password protect" : "Verja með lykilorði",
- "Allow upload and editing" : "Leyfa innsendingu og breytingar",
"Allow editing" : "Leyfa breytingar",
- "upload only" : "einungis innsending",
"Email link to person" : "Senda veftengil í tölvupósti til notanda",
"Send" : "Senda",
+ "Allow upload and editing" : "Leyfa innsendingu og breytingar",
+ "Secure drop (upload only)" : "Örugg slepping skráa (einungis innsending)",
"Shared with you and the group {group} by {owner}" : "Deilt með þér og hópnum {group} af {owner}",
"Shared with you by {owner}" : "Deilt með þér af {owner}",
"Choose a password for the mail share" : "Veldu lykilorð fyrir póstsameign",
@@ -150,7 +150,6 @@ OC.L10N.register(
"Can create" : "Getur búið til",
"Can change" : "Getur skipt um",
"Can delete" : "Getur eytt",
- "Secure drop (upload only)" : "Örugg slepping skráa (einungis innsending)",
"Access control" : "Aðgangsstýring",
"Could not unshare" : "Gat ekki hætt deilingu",
"Error while sharing" : "Villa við deilingu",
diff --git a/core/l10n/is.json b/core/l10n/is.json
index f3e8869460a..c84bed42b8a 100644
--- a/core/l10n/is.json
+++ b/core/l10n/is.json
@@ -129,11 +129,11 @@
"Share link" : "Deila tengli",
"Link" : "Tengill",
"Password protect" : "Verja með lykilorði",
- "Allow upload and editing" : "Leyfa innsendingu og breytingar",
"Allow editing" : "Leyfa breytingar",
- "upload only" : "einungis innsending",
"Email link to person" : "Senda veftengil í tölvupósti til notanda",
"Send" : "Senda",
+ "Allow upload and editing" : "Leyfa innsendingu og breytingar",
+ "Secure drop (upload only)" : "Örugg slepping skráa (einungis innsending)",
"Shared with you and the group {group} by {owner}" : "Deilt með þér og hópnum {group} af {owner}",
"Shared with you by {owner}" : "Deilt með þér af {owner}",
"Choose a password for the mail share" : "Veldu lykilorð fyrir póstsameign",
@@ -148,7 +148,6 @@
"Can create" : "Getur búið til",
"Can change" : "Getur skipt um",
"Can delete" : "Getur eytt",
- "Secure drop (upload only)" : "Örugg slepping skráa (einungis innsending)",
"Access control" : "Aðgangsstýring",
"Could not unshare" : "Gat ekki hætt deilingu",
"Error while sharing" : "Villa við deilingu",
diff --git a/core/l10n/it.js b/core/l10n/it.js
index ea6bdc658d3..baf6fc6c3bc 100644
--- a/core/l10n/it.js
+++ b/core/l10n/it.js
@@ -123,11 +123,10 @@ OC.L10N.register(
"Share link" : "Condividi collegamento",
"Link" : "Collegamento",
"Password protect" : "Proteggi con password",
- "Allow upload and editing" : "Consenti il caricamento e la modifica",
"Allow editing" : "Consenti la modifica",
- "upload only" : "solo caricamento",
"Email link to person" : "Invia collegamento via email",
"Send" : "Invia",
+ "Allow upload and editing" : "Consenti il caricamento e la modifica",
"Shared with you and the group {group} by {owner}" : "Condiviso con te e con il gruppo {group} da {owner}",
"Shared with you by {owner}" : "Condiviso con te da {owner}",
"{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatorDisplayName}} ha condiviso tramite collegamento",
diff --git a/core/l10n/it.json b/core/l10n/it.json
index 11bfe5bc732..8f44d1c2f1e 100644
--- a/core/l10n/it.json
+++ b/core/l10n/it.json
@@ -121,11 +121,10 @@
"Share link" : "Condividi collegamento",
"Link" : "Collegamento",
"Password protect" : "Proteggi con password",
- "Allow upload and editing" : "Consenti il caricamento e la modifica",
"Allow editing" : "Consenti la modifica",
- "upload only" : "solo caricamento",
"Email link to person" : "Invia collegamento via email",
"Send" : "Invia",
+ "Allow upload and editing" : "Consenti il caricamento e la modifica",
"Shared with you and the group {group} by {owner}" : "Condiviso con te e con il gruppo {group} da {owner}",
"Shared with you by {owner}" : "Condiviso con te da {owner}",
"{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatorDisplayName}} ha condiviso tramite collegamento",
diff --git a/core/l10n/ja.js b/core/l10n/ja.js
index 94a20116505..6bc2f471a4a 100644
--- a/core/l10n/ja.js
+++ b/core/l10n/ja.js
@@ -123,11 +123,11 @@ OC.L10N.register(
"Share link" : "URLで共有",
"Link" : "リンク",
"Password protect" : "パスワード保護を有効化",
- "Allow upload and editing" : "アップロードと編集を許可する",
"Allow editing" : "編集を許可",
- "upload only" : "アップロードのみ",
"Email link to person" : "メールリンク",
"Send" : "送信",
+ "Allow upload and editing" : "アップロードと編集を許可する",
+ "Secure drop (upload only)" : "セキュアドロップ (アップロードのみ)",
"Shared with you and the group {group} by {owner}" : "あなたと {owner} のグループ {group} で共有中",
"Shared with you by {owner}" : "{owner} より共有中",
"Choose a password for the mail share" : "メール共有のパスワードを選択",
@@ -142,7 +142,6 @@ OC.L10N.register(
"Can create" : "作成可能",
"Can change" : "変更可能",
"Can delete" : "削除可能",
- "Secure drop (upload only)" : "セキュアドロップ (アップロードのみ)",
"Access control" : "アクセス制御",
"Could not unshare" : "共有の解除ができませんでした",
"Error while sharing" : "共有でエラー発生",
diff --git a/core/l10n/ja.json b/core/l10n/ja.json
index 7f75aaa1b69..192ea81c69d 100644
--- a/core/l10n/ja.json
+++ b/core/l10n/ja.json
@@ -121,11 +121,11 @@
"Share link" : "URLで共有",
"Link" : "リンク",
"Password protect" : "パスワード保護を有効化",
- "Allow upload and editing" : "アップロードと編集を許可する",
"Allow editing" : "編集を許可",
- "upload only" : "アップロードのみ",
"Email link to person" : "メールリンク",
"Send" : "送信",
+ "Allow upload and editing" : "アップロードと編集を許可する",
+ "Secure drop (upload only)" : "セキュアドロップ (アップロードのみ)",
"Shared with you and the group {group} by {owner}" : "あなたと {owner} のグループ {group} で共有中",
"Shared with you by {owner}" : "{owner} より共有中",
"Choose a password for the mail share" : "メール共有のパスワードを選択",
@@ -140,7 +140,6 @@
"Can create" : "作成可能",
"Can change" : "変更可能",
"Can delete" : "削除可能",
- "Secure drop (upload only)" : "セキュアドロップ (アップロードのみ)",
"Access control" : "アクセス制御",
"Could not unshare" : "共有の解除ができませんでした",
"Error while sharing" : "共有でエラー発生",
diff --git a/core/l10n/ko.js b/core/l10n/ko.js
index c803eb547f5..f1af50c0c5a 100644
--- a/core/l10n/ko.js
+++ b/core/l10n/ko.js
@@ -135,11 +135,11 @@ OC.L10N.register(
"Share link" : "링크 공유",
"Link" : "링크",
"Password protect" : "암호 보호",
- "Allow upload and editing" : "업로드 및 편집 허용",
"Allow editing" : "편집 허용",
- "upload only" : "업로드만 허용",
"Email link to person" : "이메일 주소",
"Send" : "전송",
+ "Allow upload and editing" : "업로드 및 편집 허용",
+ "Secure drop (upload only)" : "안전 보관소(업로드만 허용)",
"Shared with you and the group {group} by {owner}" : "{owner} 님이 여러분 및 그룹 {group}와(과) 공유 중",
"Shared with you by {owner}" : "{owner} 님이 공유 중",
"Choose a password for the mail share" : "이메일 공유 암호 입력",
@@ -154,7 +154,6 @@ OC.L10N.register(
"Can create" : "생성 가능",
"Can change" : "변경 가능",
"Can delete" : "삭제 가능",
- "Secure drop (upload only)" : "안전 보관소(업로드만 허용)",
"Access control" : "접근 제어",
"Could not unshare" : "공유 해제할 수 없음",
"Error while sharing" : "공유하는 중 오류 발생",
diff --git a/core/l10n/ko.json b/core/l10n/ko.json
index 0f7711164b5..78917f8a9cc 100644
--- a/core/l10n/ko.json
+++ b/core/l10n/ko.json
@@ -133,11 +133,11 @@
"Share link" : "링크 공유",
"Link" : "링크",
"Password protect" : "암호 보호",
- "Allow upload and editing" : "업로드 및 편집 허용",
"Allow editing" : "편집 허용",
- "upload only" : "업로드만 허용",
"Email link to person" : "이메일 주소",
"Send" : "전송",
+ "Allow upload and editing" : "업로드 및 편집 허용",
+ "Secure drop (upload only)" : "안전 보관소(업로드만 허용)",
"Shared with you and the group {group} by {owner}" : "{owner} 님이 여러분 및 그룹 {group}와(과) 공유 중",
"Shared with you by {owner}" : "{owner} 님이 공유 중",
"Choose a password for the mail share" : "이메일 공유 암호 입력",
@@ -152,7 +152,6 @@
"Can create" : "생성 가능",
"Can change" : "변경 가능",
"Can delete" : "삭제 가능",
- "Secure drop (upload only)" : "안전 보관소(업로드만 허용)",
"Access control" : "접근 제어",
"Could not unshare" : "공유 해제할 수 없음",
"Error while sharing" : "공유하는 중 오류 발생",
diff --git a/core/l10n/nb.js b/core/l10n/nb.js
index a983947144f..5e1c092854a 100644
--- a/core/l10n/nb.js
+++ b/core/l10n/nb.js
@@ -135,11 +135,11 @@ OC.L10N.register(
"Share link" : "Del lenke",
"Link" : "Lenke",
"Password protect" : "Passordbeskyttet",
- "Allow upload and editing" : "Tillatt opplasting og redigering",
"Allow editing" : "Tillat redigering",
- "upload only" : "kun opplasting",
"Email link to person" : "Send lenke til person via e-post",
"Send" : "Send",
+ "Allow upload and editing" : "Tillatt opplasting og redigering",
+ "Secure drop (upload only)" : "Sikret filkasse (bare opplasting)",
"Shared with you and the group {group} by {owner}" : "Delt med deg og gruppen {group} av {owner}",
"Shared with you by {owner}" : "Delt med deg av {owner}",
"Choose a password for the mail share" : "Velg et passord for e-postlageret",
@@ -154,7 +154,6 @@ OC.L10N.register(
"Can create" : "Kan opprette",
"Can change" : "Kan endre",
"Can delete" : "Kan slette",
- "Secure drop (upload only)" : "Sikret filkasse (bare opplasting)",
"Access control" : "Tilgangskontroll",
"Could not unshare" : "Kunne ikke avslutte deling",
"Error while sharing" : "Feil under deling",
diff --git a/core/l10n/nb.json b/core/l10n/nb.json
index 43bda62fd43..a0bca69f382 100644
--- a/core/l10n/nb.json
+++ b/core/l10n/nb.json
@@ -133,11 +133,11 @@
"Share link" : "Del lenke",
"Link" : "Lenke",
"Password protect" : "Passordbeskyttet",
- "Allow upload and editing" : "Tillatt opplasting og redigering",
"Allow editing" : "Tillat redigering",
- "upload only" : "kun opplasting",
"Email link to person" : "Send lenke til person via e-post",
"Send" : "Send",
+ "Allow upload and editing" : "Tillatt opplasting og redigering",
+ "Secure drop (upload only)" : "Sikret filkasse (bare opplasting)",
"Shared with you and the group {group} by {owner}" : "Delt med deg og gruppen {group} av {owner}",
"Shared with you by {owner}" : "Delt med deg av {owner}",
"Choose a password for the mail share" : "Velg et passord for e-postlageret",
@@ -152,7 +152,6 @@
"Can create" : "Kan opprette",
"Can change" : "Kan endre",
"Can delete" : "Kan slette",
- "Secure drop (upload only)" : "Sikret filkasse (bare opplasting)",
"Access control" : "Tilgangskontroll",
"Could not unshare" : "Kunne ikke avslutte deling",
"Error while sharing" : "Feil under deling",
diff --git a/core/l10n/nl.js b/core/l10n/nl.js
index 0e4626deefb..b181bc9f9e2 100644
--- a/core/l10n/nl.js
+++ b/core/l10n/nl.js
@@ -135,11 +135,12 @@ OC.L10N.register(
"Share link" : "Deellink",
"Link" : "Link",
"Password protect" : "Wachtwoord beveiligd",
- "Allow upload and editing" : "Toestaan uploaden en bewerken",
"Allow editing" : "Bewerken toestaan",
- "upload only" : "alleen uploaden",
"Email link to person" : "E-mail link naar persoon",
"Send" : "Versturen",
+ "Allow upload and editing" : "Toestaan uploaden en bewerken",
+ "Read only" : "Alleen lezen",
+ "Secure drop (upload only)" : "Veilige drop (alleen uploaden)",
"Shared with you and the group {group} by {owner}" : "Gedeeld met jou en de groep {group} door {owner}",
"Shared with you by {owner}" : "Gedeeld met jou door {owner}",
"Choose a password for the mail share" : "Kies een wachtwoord om gedeelde te mailen",
@@ -154,7 +155,6 @@ OC.L10N.register(
"Can create" : "Kan creëren",
"Can change" : "Kan wijzigen",
"Can delete" : "Kan verwijderen",
- "Secure drop (upload only)" : "Veilige drop (alleen uploaden)",
"Access control" : "Toegangscontrole",
"Could not unshare" : "Kon delen niet ongedaan maken",
"Error while sharing" : "Fout tijdens het delen",
diff --git a/core/l10n/nl.json b/core/l10n/nl.json
index ade3ae9fd79..e2631655212 100644
--- a/core/l10n/nl.json
+++ b/core/l10n/nl.json
@@ -133,11 +133,12 @@
"Share link" : "Deellink",
"Link" : "Link",
"Password protect" : "Wachtwoord beveiligd",
- "Allow upload and editing" : "Toestaan uploaden en bewerken",
"Allow editing" : "Bewerken toestaan",
- "upload only" : "alleen uploaden",
"Email link to person" : "E-mail link naar persoon",
"Send" : "Versturen",
+ "Allow upload and editing" : "Toestaan uploaden en bewerken",
+ "Read only" : "Alleen lezen",
+ "Secure drop (upload only)" : "Veilige drop (alleen uploaden)",
"Shared with you and the group {group} by {owner}" : "Gedeeld met jou en de groep {group} door {owner}",
"Shared with you by {owner}" : "Gedeeld met jou door {owner}",
"Choose a password for the mail share" : "Kies een wachtwoord om gedeelde te mailen",
@@ -152,7 +153,6 @@
"Can create" : "Kan creëren",
"Can change" : "Kan wijzigen",
"Can delete" : "Kan verwijderen",
- "Secure drop (upload only)" : "Veilige drop (alleen uploaden)",
"Access control" : "Toegangscontrole",
"Could not unshare" : "Kon delen niet ongedaan maken",
"Error while sharing" : "Fout tijdens het delen",
diff --git a/core/l10n/pl.js b/core/l10n/pl.js
index 121b1593290..3d8144f23f2 100644
--- a/core/l10n/pl.js
+++ b/core/l10n/pl.js
@@ -135,11 +135,12 @@ OC.L10N.register(
"Share link" : "Udostępnij link",
"Link" : "Odnośnik",
"Password protect" : "Zabezpiecz hasłem",
- "Allow upload and editing" : "Pozwól na przesyłanie i edycję",
"Allow editing" : "Pozwól na edycję",
- "upload only" : "tylko wysyłanie",
"Email link to person" : "Wyślij osobie odnośnik poprzez e-mail",
"Send" : "Wyślij",
+ "Allow upload and editing" : "Pozwól na przesyłanie i edycję",
+ "Read only" : "Tylko do odczytu",
+ "Secure drop (upload only)" : "Bezpieczny zrzut (tylko wysyłanie)",
"Shared with you and the group {group} by {owner}" : "Udostępnione tobie i grupie {group} przez {owner}",
"Shared with you by {owner}" : "Udostępnione tobie przez {owner}",
"Choose a password for the mail share" : "Wybierz hasło do współdzielenia e-mailem",
@@ -154,7 +155,6 @@ OC.L10N.register(
"Can create" : "Może tworzyć",
"Can change" : "Może zmieniać",
"Can delete" : "Może usuwać",
- "Secure drop (upload only)" : "Bezpieczny zrzut (tylko wysyłanie)",
"Access control" : "Kontrola dostępu",
"Could not unshare" : "Nie udało się usunąć udostępnienia",
"Error while sharing" : "Błąd podczas udostępniania",
diff --git a/core/l10n/pl.json b/core/l10n/pl.json
index 51102891120..069d335940c 100644
--- a/core/l10n/pl.json
+++ b/core/l10n/pl.json
@@ -133,11 +133,12 @@
"Share link" : "Udostępnij link",
"Link" : "Odnośnik",
"Password protect" : "Zabezpiecz hasłem",
- "Allow upload and editing" : "Pozwól na przesyłanie i edycję",
"Allow editing" : "Pozwól na edycję",
- "upload only" : "tylko wysyłanie",
"Email link to person" : "Wyślij osobie odnośnik poprzez e-mail",
"Send" : "Wyślij",
+ "Allow upload and editing" : "Pozwól na przesyłanie i edycję",
+ "Read only" : "Tylko do odczytu",
+ "Secure drop (upload only)" : "Bezpieczny zrzut (tylko wysyłanie)",
"Shared with you and the group {group} by {owner}" : "Udostępnione tobie i grupie {group} przez {owner}",
"Shared with you by {owner}" : "Udostępnione tobie przez {owner}",
"Choose a password for the mail share" : "Wybierz hasło do współdzielenia e-mailem",
@@ -152,7 +153,6 @@
"Can create" : "Może tworzyć",
"Can change" : "Może zmieniać",
"Can delete" : "Może usuwać",
- "Secure drop (upload only)" : "Bezpieczny zrzut (tylko wysyłanie)",
"Access control" : "Kontrola dostępu",
"Could not unshare" : "Nie udało się usunąć udostępnienia",
"Error while sharing" : "Błąd podczas udostępniania",
diff --git a/core/l10n/pt_BR.js b/core/l10n/pt_BR.js
index 25e33c98f1e..f099c5a82c7 100644
--- a/core/l10n/pt_BR.js
+++ b/core/l10n/pt_BR.js
@@ -18,14 +18,14 @@ OC.L10N.register(
"Auth flow can only be started unauthenticated." : "O fluxo de autenticação só pode ser iniciado como não autenticado.",
"Couldn't reset password because the token is invalid" : "Não foi possível redefinir a senha porque o token é inválido",
"Couldn't reset password because the token is expired" : "Não foi possível redefinir a senha porque o token expirou",
- "Could not send reset email because there is no email address for this username. Please contact your administrator." : "Não foi possível enviar email de redefinição porque não há nenhum endereço de email para este nome de usuário. Entre em contato com o administrador.",
+ "Could not send reset email because there is no email address for this username. Please contact your administrator." : "Não foi possível enviar e-mail de redefinição porque não há nenhum endereço de e-mail para este nome de usuário. Entre em contato com o administrador.",
"Password reset" : "Redefinir a senha",
- "Click the following button to reset your password. If you have not requested the password reset, then ignore this email." : "Clique no botão abaixo para redefinir sua senha. Se você não solicitou isso, ignore este email.",
- "Click the following link to reset your password. If you have not requested the password reset, then ignore this email." : "Clique no link abaixo para redefinir sua senha. Se você não solicitou isso, ignore este email.",
+ "Click the following button to reset your password. If you have not requested the password reset, then ignore this email." : "Clique no botão abaixo para redefinir sua senha. Se você não solicitou isso, ignore este e-mail.",
+ "Click the following link to reset your password. If you have not requested the password reset, then ignore this email." : "Clique no link abaixo para redefinir sua senha. Se você não solicitou isso, ignore este e-mail.",
"Reset your password" : "Redefinir sua senha",
"%s password reset" : "%s redefinir senha",
- "Couldn't send reset email. Please contact your administrator." : "Não foi possível enviar o email de redefinição. Por favor, contate o administrador.",
- "Couldn't send reset email. Please make sure your username is correct." : "Não foi possível enviar o email de redefinição. Verifique se o seu nome de usuário está correto.",
+ "Couldn't send reset email. Please contact your administrator." : "Não foi possível enviar o e-mail de redefinição. Por favor, contate o administrador.",
+ "Couldn't send reset email. Please make sure your username is correct." : "Não foi possível enviar o e-mail de redefinição. Verifique se o seu nome de usuário está correto.",
"Preparing update" : "Preparando a atualização",
"[%d / %d]: %s" : "[%d / %d]: %s",
"Repair warning: " : "Aviso da reparação:",
@@ -72,7 +72,7 @@ OC.L10N.register(
"Failed to authenticate, try again" : "Falha na autenticação, tente novamente",
"seconds ago" : "segundos atrás",
"Logging in …" : "Entrando...",
- "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." : "O link para redefinir sua senha foi enviado para seu email. Se você não recebê-lo dentro de um período razoável de tempo, verifique suas pastas de spam/lixo.<br> Se ele não estiver lá, pergunte ao administrador local.",
+ "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." : "O link para redefinir sua senha foi enviado para seu e-mail. Se você não recebê-lo dentro de um período razoável de tempo, verifique suas pastas de spam/lixo.<br> Se ele não estiver lá, pergunte ao administrador local.",
"Your files are encrypted. 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?" : "Seus arquivos são criptografados. Não existe nenhuma maneira de ter seus dados de volta depois que sua senha seja redefinida.<br /> Se você não tem certeza do que fazer, por favor contate seu administrador antes de continuar.<br />Você realmente deseja continuar?",
"I know what I'm doing" : "Eu sei o que estou fazendo",
"Password can not be changed. Please contact your administrator." : "A senha não pôde ser alterada. Por favor, contate o administrador.",
@@ -102,11 +102,11 @@ OC.L10N.register(
"Strong password" : "Senha forte",
"Your web server is not yet set up properly to allow file synchronization because the WebDAV interface seems to be broken." : "Seu servidor web ainda não está configurado corretamente para permitir a sincronização de arquivos, pois a interface WebDAV parece ser desconfigurada.",
"Your web server is not set up properly to resolve \"{url}\". Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "Seu servidor web não está configurado corretamente para resolver \"{url}\". Mais informação pode ser encontrada na nossa <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentação</a>.",
- "This server has no working Internet connection: Multiple endpoints could not be reached. This means that some of the features like mounting external storage, notifications about updates or installation of third-party apps will not work. Accessing files remotely and sending of notification emails might not work, either. We suggest to enable Internet connection for this server if you want to have all features." : "Este servidor não tem nenhuma conexão com a Internet: Várias terminações finais podem não ser encontradas. Isso significa que alguns dos recursos como montagem de armazenamento externo, notificações sobre atualizações ou instalação de aplicativos de terceiros podem não funcionar. Acesso a arquivos remotos e envio de emails de notificação podem não funcionar também. Sugerimos habilitar a conexão com a Internet para este servidor, se você quer ter todas as funcionalidades.",
+ "This server has no working Internet connection: Multiple endpoints could not be reached. This means that some of the features like mounting external storage, notifications about updates or installation of third-party apps will not work. Accessing files remotely and sending of notification emails might not work, either. We suggest to enable Internet connection for this server if you want to have all features." : "Este servidor não tem nenhuma conexão com a Internet: Várias terminações finais podem não ser encontradas. Isso significa que alguns dos recursos como montagem de armazenamento externo, notificações sobre atualizações ou instalação de aplicativos de terceiros podem não funcionar. Acesso a arquivos remotos e envio de e-mails de notificação podem não funcionar também. Sugerimos habilitar a conexão com a Internet para este servidor, se você quer ter todas as funcionalidades.",
"No memory cache has been configured. To enhance your performance please configure a memcache if available. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "Nenhum cache de memória foi configurado. Para melhorar o desempenho, por favor configure um memcached se disponível. Mais informação pode ser encontrada na nossa <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentação</a>.",
"/dev/urandom is not readable by PHP which is highly discouraged for security reasons. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "/dev/urandom não pode ser lido pelo PHP e é altamente desencorajado por razões de segurança. Mais informação pode ser encontrada na nossa <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentação</a>.",
"You are currently running PHP {version}. We encourage you to upgrade your PHP version to take advantage of <a target=\"_blank\" rel=\"noreferrer\" href=\"{phpLink}\">performance and security updates provided by the PHP Group</a> as soon as your distribution supports it." : "Você está atualmente executando PHP {version}. Nós o incentivamos a atualizar sua versão do PHP para aproveitar as<a target=\"_blank\" rel=\"noreferrer\" href=\"{phpLink}\">atualizações de segurança e desempenho proporcionados pelo Grupo PHP</a> assim que sua distribuição suportar.",
- "The reverse proxy headers configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If you are not accessing Nextcloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to Nextcloud. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "O cabeçalho do proxy reverso está incorreto, ou você está acessando a partir de um proxy confiável. Se voce não está usando um proxy confiável, há uma falha de segurança que pode permitir um ataque. Mais informação pode ser encontrada na nossa <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentação</a>.",
+ "The reverse proxy headers configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If you are not accessing Nextcloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to Nextcloud. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "O cabeçalho do proxy reverso está incorreto, ou você está acessando a partir de um proxy confiável. Se você não está usando um proxy confiável, há uma falha de segurança que pode permitir um ataque. Mais informação pode ser encontrada na nossa <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentação</a>.",
"Memcached is configured as distributed cache, but the wrong PHP module \"memcache\" is installed. \\OC\\Memcache\\Memcached only supports \"memcached\" and not \"memcache\". See the <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Memcached está configurado como cache distribuído, mas o módulo PHP errado \"memcache\" está instalado. \\OC\\Memcache\\Memcached suporta apenas \"memcached\" e não \"memcache\". Veja a <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">wiki memcached sobre ambos os módulos </a>.",
"Some files have not passed the integrity check. Further information on how to resolve this issue can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)" : "Alguns arquivos não passaram na verificação de integridade. Mais informações sobre como resolver este problema pode ser encontrado em nossa <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentação</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">Lista de arquivos inválidos…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)",
"The PHP Opcache is not properly configured. <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">For better performance we recommend ↗</a> to use following settings in the <code>php.ini</code>:" : "O Opcache do PHP não está configurado corretamente. <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">Para um melhor desempenho recomendamos ↗</a> usar as seguintes configurações no <code>php.ini</code>:",
@@ -135,18 +135,19 @@ OC.L10N.register(
"Share link" : "Compartilhar link",
"Link" : "Link",
"Password protect" : "Proteger com senha",
- "Allow upload and editing" : "Permitir envio e edição",
"Allow editing" : "Permitir edição",
- "upload only" : "somente envio",
- "Email link to person" : "Enviar link por email",
+ "Email link to person" : "Enviar link por e-mail",
"Send" : "Enviar",
+ "Allow upload and editing" : "Permitir envio e edição",
+ "Read only" : "Somente leitura",
+ "Secure drop (upload only)" : "Drop seguro (apenas envio)",
"Shared with you and the group {group} by {owner}" : "Compartilhado com você e com o grupo {group} por {owner}",
"Shared with you by {owner}" : "Compartilhado com você por {owner}",
- "Choose a password for the mail share" : "Escolha uma senha para o compartilhamento de email",
+ "Choose a password for the mail share" : "Escolha uma senha para o compartilhamento de e-mail",
"{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatiorDisplayName}} compartilhou via link",
"group" : "grupo",
"remote" : "remoto",
- "email" : "email",
+ "email" : "e-mail",
"shared by {sharer}" : "compartilhado por {sharer}",
"Unshare" : "Descompartilhar",
"Can reshare" : "Pode compartilhar novamente",
@@ -154,7 +155,6 @@ OC.L10N.register(
"Can create" : "Pode criar",
"Can change" : "Pode modificar",
"Can delete" : "Pode excluir",
- "Secure drop (upload only)" : "Drop seguro (apenas envio)",
"Access control" : "Controle de acesso",
"Could not unshare" : "Não foi possível descompartilhar",
"Error while sharing" : "Erro ao compartilhar",
@@ -169,12 +169,12 @@ OC.L10N.register(
"{sharee} (email)" : "{sharee} (email)",
"{sharee} ({type}, {owner})" : "{sharee} ({type}, {owner})",
"Share" : "Compartilhar",
- "Share with other people by entering a user or group, a federated cloud ID or an email address." : "Compartilhe com outras pessoas entrando um usuário, grupo, ID de cloud federada ou um email.",
+ "Share with other people by entering a user or group, a federated cloud ID or an email address." : "Compartilhe com outras pessoas entrando um usuário, grupo, ID de cloud federada ou um e-mail.",
"Share with other people by entering a user or group or a federated cloud ID." : "Compartilhe com outras pessoas entrando um usuário, grupo ou ID de cloud federada.",
- "Share with other people by entering a user or group or an email address." : "Compartilhe com outras pessoas entrando um usuário, grupo ou um email.",
- "Name or email address..." : "Nome ou email...",
+ "Share with other people by entering a user or group or an email address." : "Compartilhe com outras pessoas entrando um usuário, grupo ou um e-mail.",
+ "Name or email address..." : "Nome ou e-mail...",
"Name or federated cloud ID..." : "Nome ou ID de cloud federada...",
- "Name, federated cloud ID or email address..." : "Nome, ID de cloud federada ou email...",
+ "Name, federated cloud ID or email address..." : "Nome, ID de cloud federada ou e-mail...",
"Name..." : "Nome...",
"Error" : "Erro",
"Error removing share" : "Erro na exclusão do compartilhamento",
@@ -246,7 +246,7 @@ OC.L10N.register(
"Please specify the port number along with the host name (e.g., localhost:5432)." : "Por favor especifique o nome do host e o número de porta  (ex., localhost:5432).",
"Performance warning" : "Alerta de performance",
"SQLite will be used as database." : "SQLite será usado como banco de dados",
- "For larger installations we recommend to choose a different database backend." : "Para instalações maiores é recomendável escolher um backend de banco de dados diferente.",
+ "For larger installations we recommend to choose a different database backend." : "Para instalações maiores é recomendável escolher uma plataforma de serviço de banco de dados diferente.",
"Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "O uso de SQLite é desencorajado especialmente quando se utiliza o cliente de desktop para sincronização de arquivos.",
"Finish setup" : "Concluir configuração",
"Finishing …" : "Finalizando...",
@@ -261,7 +261,7 @@ OC.L10N.register(
"Please contact your administrator." : "Por favor, contacte o administrador.",
"An internal error occurred." : "Ocorreu um erro interno.",
"Please try again or contact your administrator." : "Por favor tente novamente ou contacte o administrador.",
- "Username or email" : "Nome de usuário ou email",
+ "Username or email" : "Nome de usuário ou e-mail",
"Wrong password. Reset it?" : "Senha incorreta. Redefini-la?",
"Wrong password." : "Senha errada",
"Log in" : "Entrar",
@@ -315,13 +315,13 @@ OC.L10N.register(
"can delete" : "pode excluir",
"access control" : "controle de acesso",
"Share with people on other servers using their Federated Cloud ID username@example.com/nextcloud" : "Compartilhe com pessoas de outros servidores usando o ID de nuvem federada username@example.com/nextcloud",
- "Share with users or by mail..." : "Compartilhe com usuários internos ou email...",
+ "Share with users or by mail..." : "Compartilhe com usuários internos ou e-mail...",
"Share with users or remote users..." : "Compartilhe com usuários internos ou remotos...",
- "Share with users, remote users or by mail..." : "Compartilhe com usuários internos, remotos ou email...",
+ "Share with users, remote users or by mail..." : "Compartilhe com usuários internos, remotos ou e-mail...",
"Share with users or groups..." : "Compartilhe com usuários internos ou grupos...",
- "Share with users, groups or by mail..." : "Compartilhe com usuários internos, grupos ou email...",
+ "Share with users, groups or by mail..." : "Compartilhe com usuários internos, grupos ou e-mail...",
"Share with users, groups or remote users..." : "Compartilhe com usuários internos, remotos ou grupos...",
- "Share with users, groups, remote users or by mail..." : "Compartilhe com usuários internos, remotos, grupos ou email...",
+ "Share with users, groups, remote users or by mail..." : "Compartilhe com usuários internos, remotos, grupos ou e-mail...",
"Share with users..." : "Compartilhe com usuários internos...",
"The object type is not specified." : "O tipo de objeto não foi especificado.",
"Enter new" : "Entre nova",
diff --git a/core/l10n/pt_BR.json b/core/l10n/pt_BR.json
index 0acfe497d26..d981f5c5ebe 100644
--- a/core/l10n/pt_BR.json
+++ b/core/l10n/pt_BR.json
@@ -16,14 +16,14 @@
"Auth flow can only be started unauthenticated." : "O fluxo de autenticação só pode ser iniciado como não autenticado.",
"Couldn't reset password because the token is invalid" : "Não foi possível redefinir a senha porque o token é inválido",
"Couldn't reset password because the token is expired" : "Não foi possível redefinir a senha porque o token expirou",
- "Could not send reset email because there is no email address for this username. Please contact your administrator." : "Não foi possível enviar email de redefinição porque não há nenhum endereço de email para este nome de usuário. Entre em contato com o administrador.",
+ "Could not send reset email because there is no email address for this username. Please contact your administrator." : "Não foi possível enviar e-mail de redefinição porque não há nenhum endereço de e-mail para este nome de usuário. Entre em contato com o administrador.",
"Password reset" : "Redefinir a senha",
- "Click the following button to reset your password. If you have not requested the password reset, then ignore this email." : "Clique no botão abaixo para redefinir sua senha. Se você não solicitou isso, ignore este email.",
- "Click the following link to reset your password. If you have not requested the password reset, then ignore this email." : "Clique no link abaixo para redefinir sua senha. Se você não solicitou isso, ignore este email.",
+ "Click the following button to reset your password. If you have not requested the password reset, then ignore this email." : "Clique no botão abaixo para redefinir sua senha. Se você não solicitou isso, ignore este e-mail.",
+ "Click the following link to reset your password. If you have not requested the password reset, then ignore this email." : "Clique no link abaixo para redefinir sua senha. Se você não solicitou isso, ignore este e-mail.",
"Reset your password" : "Redefinir sua senha",
"%s password reset" : "%s redefinir senha",
- "Couldn't send reset email. Please contact your administrator." : "Não foi possível enviar o email de redefinição. Por favor, contate o administrador.",
- "Couldn't send reset email. Please make sure your username is correct." : "Não foi possível enviar o email de redefinição. Verifique se o seu nome de usuário está correto.",
+ "Couldn't send reset email. Please contact your administrator." : "Não foi possível enviar o e-mail de redefinição. Por favor, contate o administrador.",
+ "Couldn't send reset email. Please make sure your username is correct." : "Não foi possível enviar o e-mail de redefinição. Verifique se o seu nome de usuário está correto.",
"Preparing update" : "Preparando a atualização",
"[%d / %d]: %s" : "[%d / %d]: %s",
"Repair warning: " : "Aviso da reparação:",
@@ -70,7 +70,7 @@
"Failed to authenticate, try again" : "Falha na autenticação, tente novamente",
"seconds ago" : "segundos atrás",
"Logging in …" : "Entrando...",
- "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." : "O link para redefinir sua senha foi enviado para seu email. Se você não recebê-lo dentro de um período razoável de tempo, verifique suas pastas de spam/lixo.<br> Se ele não estiver lá, pergunte ao administrador local.",
+ "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." : "O link para redefinir sua senha foi enviado para seu e-mail. Se você não recebê-lo dentro de um período razoável de tempo, verifique suas pastas de spam/lixo.<br> Se ele não estiver lá, pergunte ao administrador local.",
"Your files are encrypted. 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?" : "Seus arquivos são criptografados. Não existe nenhuma maneira de ter seus dados de volta depois que sua senha seja redefinida.<br /> Se você não tem certeza do que fazer, por favor contate seu administrador antes de continuar.<br />Você realmente deseja continuar?",
"I know what I'm doing" : "Eu sei o que estou fazendo",
"Password can not be changed. Please contact your administrator." : "A senha não pôde ser alterada. Por favor, contate o administrador.",
@@ -100,11 +100,11 @@
"Strong password" : "Senha forte",
"Your web server is not yet set up properly to allow file synchronization because the WebDAV interface seems to be broken." : "Seu servidor web ainda não está configurado corretamente para permitir a sincronização de arquivos, pois a interface WebDAV parece ser desconfigurada.",
"Your web server is not set up properly to resolve \"{url}\". Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "Seu servidor web não está configurado corretamente para resolver \"{url}\". Mais informação pode ser encontrada na nossa <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentação</a>.",
- "This server has no working Internet connection: Multiple endpoints could not be reached. This means that some of the features like mounting external storage, notifications about updates or installation of third-party apps will not work. Accessing files remotely and sending of notification emails might not work, either. We suggest to enable Internet connection for this server if you want to have all features." : "Este servidor não tem nenhuma conexão com a Internet: Várias terminações finais podem não ser encontradas. Isso significa que alguns dos recursos como montagem de armazenamento externo, notificações sobre atualizações ou instalação de aplicativos de terceiros podem não funcionar. Acesso a arquivos remotos e envio de emails de notificação podem não funcionar também. Sugerimos habilitar a conexão com a Internet para este servidor, se você quer ter todas as funcionalidades.",
+ "This server has no working Internet connection: Multiple endpoints could not be reached. This means that some of the features like mounting external storage, notifications about updates or installation of third-party apps will not work. Accessing files remotely and sending of notification emails might not work, either. We suggest to enable Internet connection for this server if you want to have all features." : "Este servidor não tem nenhuma conexão com a Internet: Várias terminações finais podem não ser encontradas. Isso significa que alguns dos recursos como montagem de armazenamento externo, notificações sobre atualizações ou instalação de aplicativos de terceiros podem não funcionar. Acesso a arquivos remotos e envio de e-mails de notificação podem não funcionar também. Sugerimos habilitar a conexão com a Internet para este servidor, se você quer ter todas as funcionalidades.",
"No memory cache has been configured. To enhance your performance please configure a memcache if available. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "Nenhum cache de memória foi configurado. Para melhorar o desempenho, por favor configure um memcached se disponível. Mais informação pode ser encontrada na nossa <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentação</a>.",
"/dev/urandom is not readable by PHP which is highly discouraged for security reasons. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "/dev/urandom não pode ser lido pelo PHP e é altamente desencorajado por razões de segurança. Mais informação pode ser encontrada na nossa <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentação</a>.",
"You are currently running PHP {version}. We encourage you to upgrade your PHP version to take advantage of <a target=\"_blank\" rel=\"noreferrer\" href=\"{phpLink}\">performance and security updates provided by the PHP Group</a> as soon as your distribution supports it." : "Você está atualmente executando PHP {version}. Nós o incentivamos a atualizar sua versão do PHP para aproveitar as<a target=\"_blank\" rel=\"noreferrer\" href=\"{phpLink}\">atualizações de segurança e desempenho proporcionados pelo Grupo PHP</a> assim que sua distribuição suportar.",
- "The reverse proxy headers configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If you are not accessing Nextcloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to Nextcloud. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "O cabeçalho do proxy reverso está incorreto, ou você está acessando a partir de um proxy confiável. Se voce não está usando um proxy confiável, há uma falha de segurança que pode permitir um ataque. Mais informação pode ser encontrada na nossa <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentação</a>.",
+ "The reverse proxy headers configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If you are not accessing Nextcloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to Nextcloud. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "O cabeçalho do proxy reverso está incorreto, ou você está acessando a partir de um proxy confiável. Se você não está usando um proxy confiável, há uma falha de segurança que pode permitir um ataque. Mais informação pode ser encontrada na nossa <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentação</a>.",
"Memcached is configured as distributed cache, but the wrong PHP module \"memcache\" is installed. \\OC\\Memcache\\Memcached only supports \"memcached\" and not \"memcache\". See the <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Memcached está configurado como cache distribuído, mas o módulo PHP errado \"memcache\" está instalado. \\OC\\Memcache\\Memcached suporta apenas \"memcached\" e não \"memcache\". Veja a <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">wiki memcached sobre ambos os módulos </a>.",
"Some files have not passed the integrity check. Further information on how to resolve this issue can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)" : "Alguns arquivos não passaram na verificação de integridade. Mais informações sobre como resolver este problema pode ser encontrado em nossa <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentação</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">Lista de arquivos inválidos…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)",
"The PHP Opcache is not properly configured. <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">For better performance we recommend ↗</a> to use following settings in the <code>php.ini</code>:" : "O Opcache do PHP não está configurado corretamente. <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">Para um melhor desempenho recomendamos ↗</a> usar as seguintes configurações no <code>php.ini</code>:",
@@ -133,18 +133,19 @@
"Share link" : "Compartilhar link",
"Link" : "Link",
"Password protect" : "Proteger com senha",
- "Allow upload and editing" : "Permitir envio e edição",
"Allow editing" : "Permitir edição",
- "upload only" : "somente envio",
- "Email link to person" : "Enviar link por email",
+ "Email link to person" : "Enviar link por e-mail",
"Send" : "Enviar",
+ "Allow upload and editing" : "Permitir envio e edição",
+ "Read only" : "Somente leitura",
+ "Secure drop (upload only)" : "Drop seguro (apenas envio)",
"Shared with you and the group {group} by {owner}" : "Compartilhado com você e com o grupo {group} por {owner}",
"Shared with you by {owner}" : "Compartilhado com você por {owner}",
- "Choose a password for the mail share" : "Escolha uma senha para o compartilhamento de email",
+ "Choose a password for the mail share" : "Escolha uma senha para o compartilhamento de e-mail",
"{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatiorDisplayName}} compartilhou via link",
"group" : "grupo",
"remote" : "remoto",
- "email" : "email",
+ "email" : "e-mail",
"shared by {sharer}" : "compartilhado por {sharer}",
"Unshare" : "Descompartilhar",
"Can reshare" : "Pode compartilhar novamente",
@@ -152,7 +153,6 @@
"Can create" : "Pode criar",
"Can change" : "Pode modificar",
"Can delete" : "Pode excluir",
- "Secure drop (upload only)" : "Drop seguro (apenas envio)",
"Access control" : "Controle de acesso",
"Could not unshare" : "Não foi possível descompartilhar",
"Error while sharing" : "Erro ao compartilhar",
@@ -167,12 +167,12 @@
"{sharee} (email)" : "{sharee} (email)",
"{sharee} ({type}, {owner})" : "{sharee} ({type}, {owner})",
"Share" : "Compartilhar",
- "Share with other people by entering a user or group, a federated cloud ID or an email address." : "Compartilhe com outras pessoas entrando um usuário, grupo, ID de cloud federada ou um email.",
+ "Share with other people by entering a user or group, a federated cloud ID or an email address." : "Compartilhe com outras pessoas entrando um usuário, grupo, ID de cloud federada ou um e-mail.",
"Share with other people by entering a user or group or a federated cloud ID." : "Compartilhe com outras pessoas entrando um usuário, grupo ou ID de cloud federada.",
- "Share with other people by entering a user or group or an email address." : "Compartilhe com outras pessoas entrando um usuário, grupo ou um email.",
- "Name or email address..." : "Nome ou email...",
+ "Share with other people by entering a user or group or an email address." : "Compartilhe com outras pessoas entrando um usuário, grupo ou um e-mail.",
+ "Name or email address..." : "Nome ou e-mail...",
"Name or federated cloud ID..." : "Nome ou ID de cloud federada...",
- "Name, federated cloud ID or email address..." : "Nome, ID de cloud federada ou email...",
+ "Name, federated cloud ID or email address..." : "Nome, ID de cloud federada ou e-mail...",
"Name..." : "Nome...",
"Error" : "Erro",
"Error removing share" : "Erro na exclusão do compartilhamento",
@@ -244,7 +244,7 @@
"Please specify the port number along with the host name (e.g., localhost:5432)." : "Por favor especifique o nome do host e o número de porta  (ex., localhost:5432).",
"Performance warning" : "Alerta de performance",
"SQLite will be used as database." : "SQLite será usado como banco de dados",
- "For larger installations we recommend to choose a different database backend." : "Para instalações maiores é recomendável escolher um backend de banco de dados diferente.",
+ "For larger installations we recommend to choose a different database backend." : "Para instalações maiores é recomendável escolher uma plataforma de serviço de banco de dados diferente.",
"Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "O uso de SQLite é desencorajado especialmente quando se utiliza o cliente de desktop para sincronização de arquivos.",
"Finish setup" : "Concluir configuração",
"Finishing …" : "Finalizando...",
@@ -259,7 +259,7 @@
"Please contact your administrator." : "Por favor, contacte o administrador.",
"An internal error occurred." : "Ocorreu um erro interno.",
"Please try again or contact your administrator." : "Por favor tente novamente ou contacte o administrador.",
- "Username or email" : "Nome de usuário ou email",
+ "Username or email" : "Nome de usuário ou e-mail",
"Wrong password. Reset it?" : "Senha incorreta. Redefini-la?",
"Wrong password." : "Senha errada",
"Log in" : "Entrar",
@@ -313,13 +313,13 @@
"can delete" : "pode excluir",
"access control" : "controle de acesso",
"Share with people on other servers using their Federated Cloud ID username@example.com/nextcloud" : "Compartilhe com pessoas de outros servidores usando o ID de nuvem federada username@example.com/nextcloud",
- "Share with users or by mail..." : "Compartilhe com usuários internos ou email...",
+ "Share with users or by mail..." : "Compartilhe com usuários internos ou e-mail...",
"Share with users or remote users..." : "Compartilhe com usuários internos ou remotos...",
- "Share with users, remote users or by mail..." : "Compartilhe com usuários internos, remotos ou email...",
+ "Share with users, remote users or by mail..." : "Compartilhe com usuários internos, remotos ou e-mail...",
"Share with users or groups..." : "Compartilhe com usuários internos ou grupos...",
- "Share with users, groups or by mail..." : "Compartilhe com usuários internos, grupos ou email...",
+ "Share with users, groups or by mail..." : "Compartilhe com usuários internos, grupos ou e-mail...",
"Share with users, groups or remote users..." : "Compartilhe com usuários internos, remotos ou grupos...",
- "Share with users, groups, remote users or by mail..." : "Compartilhe com usuários internos, remotos, grupos ou email...",
+ "Share with users, groups, remote users or by mail..." : "Compartilhe com usuários internos, remotos, grupos ou e-mail...",
"Share with users..." : "Compartilhe com usuários internos...",
"The object type is not specified." : "O tipo de objeto não foi especificado.",
"Enter new" : "Entre nova",
diff --git a/core/l10n/pt_PT.js b/core/l10n/pt_PT.js
index 7ca0550bc63..ce8531522c5 100644
--- a/core/l10n/pt_PT.js
+++ b/core/l10n/pt_PT.js
@@ -119,11 +119,11 @@ OC.L10N.register(
"Share link" : "Partilhar hiperligação",
"Link" : "Hiperligação",
"Password protect" : "Proteger com palavra-passe",
- "Allow upload and editing" : "Permitir enviar e editar",
"Allow editing" : "Permitir edição",
- "upload only" : "envio apenas",
"Email link to person" : "Enviar hiperligação por mensagem para a pessoa",
"Send" : "Enviar",
+ "Allow upload and editing" : "Permitir enviar e editar",
+ "Secure drop (upload only)" : "Arrastar seguro (apenas envio)",
"Shared with you and the group {group} by {owner}" : "Partilhado consigo e com o grupo {group} por {owner}",
"Shared with you by {owner}" : "Partilhado consigo por {owner}",
"Choose a password for the mail share" : "Escolher password para a partilha de email",
@@ -137,7 +137,6 @@ OC.L10N.register(
"Can create" : "Pode criar",
"Can change" : "Pode alterar",
"Can delete" : "Pode apagar",
- "Secure drop (upload only)" : "Arrastar seguro (apenas envio)",
"Access control" : "Controlo de acesso",
"Could not unshare" : "Não foi possível cancelar a partilha",
"Error while sharing" : "Erro ao partilhar",
diff --git a/core/l10n/pt_PT.json b/core/l10n/pt_PT.json
index a77e404674a..c1e584d1630 100644
--- a/core/l10n/pt_PT.json
+++ b/core/l10n/pt_PT.json
@@ -117,11 +117,11 @@
"Share link" : "Partilhar hiperligação",
"Link" : "Hiperligação",
"Password protect" : "Proteger com palavra-passe",
- "Allow upload and editing" : "Permitir enviar e editar",
"Allow editing" : "Permitir edição",
- "upload only" : "envio apenas",
"Email link to person" : "Enviar hiperligação por mensagem para a pessoa",
"Send" : "Enviar",
+ "Allow upload and editing" : "Permitir enviar e editar",
+ "Secure drop (upload only)" : "Arrastar seguro (apenas envio)",
"Shared with you and the group {group} by {owner}" : "Partilhado consigo e com o grupo {group} por {owner}",
"Shared with you by {owner}" : "Partilhado consigo por {owner}",
"Choose a password for the mail share" : "Escolher password para a partilha de email",
@@ -135,7 +135,6 @@
"Can create" : "Pode criar",
"Can change" : "Pode alterar",
"Can delete" : "Pode apagar",
- "Secure drop (upload only)" : "Arrastar seguro (apenas envio)",
"Access control" : "Controlo de acesso",
"Could not unshare" : "Não foi possível cancelar a partilha",
"Error while sharing" : "Erro ao partilhar",
diff --git a/core/l10n/ro.js b/core/l10n/ro.js
index 1c3d8bc10cc..55092a78b35 100644
--- a/core/l10n/ro.js
+++ b/core/l10n/ro.js
@@ -117,10 +117,10 @@ OC.L10N.register(
"Share link" : "Împărtășește link-ul",
"Link" : "Legătură",
"Password protect" : "Protejare cu parolă",
- "Allow upload and editing" : "Permite încărcarea și editarea",
"Allow editing" : "Permite editarea",
"Email link to person" : "Expediază legătura prin poșta electronică",
"Send" : "Trimite",
+ "Allow upload and editing" : "Permite încărcarea și editarea",
"Shared with you and the group {group} by {owner}" : "Distribuie cu tine si grupul {group} de {owner}",
"Shared with you by {owner}" : "Distribuie cu tine de {owner}",
"{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatorDisplayName}} partajat prin legătura",
diff --git a/core/l10n/ro.json b/core/l10n/ro.json
index 68350c6764a..c035873c17e 100644
--- a/core/l10n/ro.json
+++ b/core/l10n/ro.json
@@ -115,10 +115,10 @@
"Share link" : "Împărtășește link-ul",
"Link" : "Legătură",
"Password protect" : "Protejare cu parolă",
- "Allow upload and editing" : "Permite încărcarea și editarea",
"Allow editing" : "Permite editarea",
"Email link to person" : "Expediază legătura prin poșta electronică",
"Send" : "Trimite",
+ "Allow upload and editing" : "Permite încărcarea și editarea",
"Shared with you and the group {group} by {owner}" : "Distribuie cu tine si grupul {group} de {owner}",
"Shared with you by {owner}" : "Distribuie cu tine de {owner}",
"{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatorDisplayName}} partajat prin legătura",
diff --git a/core/l10n/ru.js b/core/l10n/ru.js
index 03b69834cf4..995bc3ffed2 100644
--- a/core/l10n/ru.js
+++ b/core/l10n/ru.js
@@ -57,6 +57,8 @@ OC.L10N.register(
"Loading your contacts …" : "Загрузка контактов…",
"Looking for {term} …" : "Поиск {term}…",
"<a href=\"{docUrl}\">There were problems with the code integrity check. More information…</a>" : "<a href=\"{docUrl}\"> Были обнаружены проблемы с проверкой целостности кода. Подробнее ...",
+ "No action available" : "Нет доступных действий",
+ "Error fetching contact actions" : "Ошибка получения действий контакта",
"Settings" : "Настройки",
"Connection to server lost" : "Подключение к серверу потеряно",
"_Problem loading page, reloading in %n second_::_Problem loading page, reloading in %n seconds_" : ["Возникла проблема при загрузке страницы, повторная попытка через %n секунду","Возникла проблема при загрузке страницы, повторная попытка через %n секунды","Возникла проблема при загрузке страницы, повторная попытка через %n секунд","Возникла проблема при загрузке страницы, повторная попытка через %n секунд"],
@@ -133,11 +135,12 @@ OC.L10N.register(
"Share link" : "Поделиться ссылкой",
"Link" : "Ссылка",
"Password protect" : "Защитить паролем",
- "Allow upload and editing" : "Разрешить загрузку и редактирование",
"Allow editing" : "Разрешить редактирование",
- "upload only" : "только загружать",
"Email link to person" : "Отправить ссылку по электронной почте",
"Send" : "Отправить",
+ "Allow upload and editing" : "Разрешить загрузку и редактирование",
+ "Read only" : "Только чтение",
+ "Secure drop (upload only)" : "Безопасное хранилище (только для приема файлов)",
"Shared with you and the group {group} by {owner}" : "{owner} поделился с вами и группой {group} ",
"Shared with you by {owner}" : "С вами поделился {owner} ",
"Choose a password for the mail share" : "Укажите пароль для ссылки по почте",
@@ -152,7 +155,6 @@ OC.L10N.register(
"Can create" : "Можно создавать",
"Can change" : "Можно изменять",
"Can delete" : "Можно удалять",
- "Secure drop (upload only)" : "Безопасное хранилище (только для приема файлов)",
"Access control" : "Контроль доступа",
"Could not unshare" : "Не удалось отменить доступ",
"Error while sharing" : "При попытке поделиться произошла ошибка",
diff --git a/core/l10n/ru.json b/core/l10n/ru.json
index 2ea2fa49de2..f9a58afe9a3 100644
--- a/core/l10n/ru.json
+++ b/core/l10n/ru.json
@@ -55,6 +55,8 @@
"Loading your contacts …" : "Загрузка контактов…",
"Looking for {term} …" : "Поиск {term}…",
"<a href=\"{docUrl}\">There were problems with the code integrity check. More information…</a>" : "<a href=\"{docUrl}\"> Были обнаружены проблемы с проверкой целостности кода. Подробнее ...",
+ "No action available" : "Нет доступных действий",
+ "Error fetching contact actions" : "Ошибка получения действий контакта",
"Settings" : "Настройки",
"Connection to server lost" : "Подключение к серверу потеряно",
"_Problem loading page, reloading in %n second_::_Problem loading page, reloading in %n seconds_" : ["Возникла проблема при загрузке страницы, повторная попытка через %n секунду","Возникла проблема при загрузке страницы, повторная попытка через %n секунды","Возникла проблема при загрузке страницы, повторная попытка через %n секунд","Возникла проблема при загрузке страницы, повторная попытка через %n секунд"],
@@ -131,11 +133,12 @@
"Share link" : "Поделиться ссылкой",
"Link" : "Ссылка",
"Password protect" : "Защитить паролем",
- "Allow upload and editing" : "Разрешить загрузку и редактирование",
"Allow editing" : "Разрешить редактирование",
- "upload only" : "только загружать",
"Email link to person" : "Отправить ссылку по электронной почте",
"Send" : "Отправить",
+ "Allow upload and editing" : "Разрешить загрузку и редактирование",
+ "Read only" : "Только чтение",
+ "Secure drop (upload only)" : "Безопасное хранилище (только для приема файлов)",
"Shared with you and the group {group} by {owner}" : "{owner} поделился с вами и группой {group} ",
"Shared with you by {owner}" : "С вами поделился {owner} ",
"Choose a password for the mail share" : "Укажите пароль для ссылки по почте",
@@ -150,7 +153,6 @@
"Can create" : "Можно создавать",
"Can change" : "Можно изменять",
"Can delete" : "Можно удалять",
- "Secure drop (upload only)" : "Безопасное хранилище (только для приема файлов)",
"Access control" : "Контроль доступа",
"Could not unshare" : "Не удалось отменить доступ",
"Error while sharing" : "При попытке поделиться произошла ошибка",
diff --git a/core/l10n/sk.js b/core/l10n/sk.js
index c9f78742b18..5d19503431d 100644
--- a/core/l10n/sk.js
+++ b/core/l10n/sk.js
@@ -108,11 +108,10 @@ OC.L10N.register(
"Share link" : "Sprístupniť odkaz",
"Link" : "Odkaz",
"Password protect" : "Chrániť heslom",
- "Allow upload and editing" : "Povoliť nahratie a úpravy",
"Allow editing" : "Povoliť úpravy",
- "upload only" : "len odoslať",
"Email link to person" : "Odoslať odkaz emailom",
"Send" : "Odoslať",
+ "Allow upload and editing" : "Povoliť nahratie a úpravy",
"Shared with you and the group {group} by {owner}" : "Sprístupnené vám a skupine {group} používateľom {owner}",
"Shared with you by {owner}" : "Sprístupnené vám používateľom {owner}",
"Choose a password for the mail share" : "Zvoľte heslo pre zdieľanie pošty",
diff --git a/core/l10n/sk.json b/core/l10n/sk.json
index 514e8079699..9b6dd1c04b1 100644
--- a/core/l10n/sk.json
+++ b/core/l10n/sk.json
@@ -106,11 +106,10 @@
"Share link" : "Sprístupniť odkaz",
"Link" : "Odkaz",
"Password protect" : "Chrániť heslom",
- "Allow upload and editing" : "Povoliť nahratie a úpravy",
"Allow editing" : "Povoliť úpravy",
- "upload only" : "len odoslať",
"Email link to person" : "Odoslať odkaz emailom",
"Send" : "Odoslať",
+ "Allow upload and editing" : "Povoliť nahratie a úpravy",
"Shared with you and the group {group} by {owner}" : "Sprístupnené vám a skupine {group} používateľom {owner}",
"Shared with you by {owner}" : "Sprístupnené vám používateľom {owner}",
"Choose a password for the mail share" : "Zvoľte heslo pre zdieľanie pošty",
diff --git a/core/l10n/sl.js b/core/l10n/sl.js
index 7378c61bc66..f1a6d26f2d7 100644
--- a/core/l10n/sl.js
+++ b/core/l10n/sl.js
@@ -102,10 +102,10 @@ OC.L10N.register(
"Share link" : "Povezava za prejem",
"Link" : "Povezava",
"Password protect" : "Zaščiti z geslom",
- "Allow upload and editing" : "Dovoli nalaganje in urejanje",
"Allow editing" : "Dovoli urejanje",
"Email link to person" : "Posreduj povezavo po elektronski pošti",
"Send" : "Pošlji",
+ "Allow upload and editing" : "Dovoli nalaganje in urejanje",
"Shared with you and the group {group} by {owner}" : "V souporabi z vami in skupino {group}. Lastnik je {owner}.",
"Shared with you by {owner}" : "V souporabi z vami. Lastnik je {owner}.",
"group" : "skupina",
diff --git a/core/l10n/sl.json b/core/l10n/sl.json
index fd0acf4f9f7..c7533d95f1c 100644
--- a/core/l10n/sl.json
+++ b/core/l10n/sl.json
@@ -100,10 +100,10 @@
"Share link" : "Povezava za prejem",
"Link" : "Povezava",
"Password protect" : "Zaščiti z geslom",
- "Allow upload and editing" : "Dovoli nalaganje in urejanje",
"Allow editing" : "Dovoli urejanje",
"Email link to person" : "Posreduj povezavo po elektronski pošti",
"Send" : "Pošlji",
+ "Allow upload and editing" : "Dovoli nalaganje in urejanje",
"Shared with you and the group {group} by {owner}" : "V souporabi z vami in skupino {group}. Lastnik je {owner}.",
"Shared with you by {owner}" : "V souporabi z vami. Lastnik je {owner}.",
"group" : "skupina",
diff --git a/core/l10n/sq.js b/core/l10n/sq.js
index e160e697cc2..2191b413f65 100644
--- a/core/l10n/sq.js
+++ b/core/l10n/sq.js
@@ -115,10 +115,10 @@ OC.L10N.register(
"Share link" : "Lidhje ndarjeje",
"Link" : "Lidhje",
"Password protect" : "Mbroje me fjalëkalim",
- "Allow upload and editing" : "Lejo ngarkim dhe editim",
"Allow editing" : "Lejo përpunim",
"Email link to person" : "Dërgoja personit lidhjen me email",
"Send" : "Dërgoje",
+ "Allow upload and editing" : "Lejo ngarkim dhe editim",
"Shared with you and the group {group} by {owner}" : "Ndarë me ju dhe me grupin {group} nga {owner}",
"Shared with you by {owner}" : "Ndarë me ju nga {owner}",
"{{shareInitiatorDisplayName}} shared via link" : "{{shpërndaEmrinEShfaqurTëNismëtarit}} shpërnda nëpërmjet linkut",
diff --git a/core/l10n/sq.json b/core/l10n/sq.json
index 32dd24a6aed..d8c9e26087d 100644
--- a/core/l10n/sq.json
+++ b/core/l10n/sq.json
@@ -113,10 +113,10 @@
"Share link" : "Lidhje ndarjeje",
"Link" : "Lidhje",
"Password protect" : "Mbroje me fjalëkalim",
- "Allow upload and editing" : "Lejo ngarkim dhe editim",
"Allow editing" : "Lejo përpunim",
"Email link to person" : "Dërgoja personit lidhjen me email",
"Send" : "Dërgoje",
+ "Allow upload and editing" : "Lejo ngarkim dhe editim",
"Shared with you and the group {group} by {owner}" : "Ndarë me ju dhe me grupin {group} nga {owner}",
"Shared with you by {owner}" : "Ndarë me ju nga {owner}",
"{{shareInitiatorDisplayName}} shared via link" : "{{shpërndaEmrinEShfaqurTëNismëtarit}} shpërnda nëpërmjet linkut",
diff --git a/core/l10n/sv.js b/core/l10n/sv.js
index c39692cba4d..ae2e6558cf8 100644
--- a/core/l10n/sv.js
+++ b/core/l10n/sv.js
@@ -129,11 +129,11 @@ OC.L10N.register(
"Share link" : "Dela länk",
"Link" : "Länk",
"Password protect" : "Lösenordsskydda",
- "Allow upload and editing" : "Tillåt uppladdning och redigering",
"Allow editing" : "Tillåt redigering",
- "upload only" : "endast uppladdning",
"Email link to person" : "Skicka länken som e-postmeddelande",
"Send" : "Skicka",
+ "Allow upload and editing" : "Tillåt uppladdning och redigering",
+ "Secure drop (upload only)" : "Säkert släpp (endast uppladdning)",
"Shared with you and the group {group} by {owner}" : "Delad med dig och gruppen {group} av {owner}",
"Shared with you by {owner}" : "Delad med dig av {owner}",
"Choose a password for the mail share" : "Välj ett lösenord för delning via e-post",
@@ -148,7 +148,6 @@ OC.L10N.register(
"Can create" : "Kan skapa",
"Can change" : "Kan ändra",
"Can delete" : "Kan radera",
- "Secure drop (upload only)" : "Säkert släpp (endast uppladdning)",
"Access control" : "Åtkomstkontroll",
"Could not unshare" : "Kunde inte ta bort delning",
"Error while sharing" : "Fel vid delning",
diff --git a/core/l10n/sv.json b/core/l10n/sv.json
index 5829c93f080..9a02191d2b0 100644
--- a/core/l10n/sv.json
+++ b/core/l10n/sv.json
@@ -127,11 +127,11 @@
"Share link" : "Dela länk",
"Link" : "Länk",
"Password protect" : "Lösenordsskydda",
- "Allow upload and editing" : "Tillåt uppladdning och redigering",
"Allow editing" : "Tillåt redigering",
- "upload only" : "endast uppladdning",
"Email link to person" : "Skicka länken som e-postmeddelande",
"Send" : "Skicka",
+ "Allow upload and editing" : "Tillåt uppladdning och redigering",
+ "Secure drop (upload only)" : "Säkert släpp (endast uppladdning)",
"Shared with you and the group {group} by {owner}" : "Delad med dig och gruppen {group} av {owner}",
"Shared with you by {owner}" : "Delad med dig av {owner}",
"Choose a password for the mail share" : "Välj ett lösenord för delning via e-post",
@@ -146,7 +146,6 @@
"Can create" : "Kan skapa",
"Can change" : "Kan ändra",
"Can delete" : "Kan radera",
- "Secure drop (upload only)" : "Säkert släpp (endast uppladdning)",
"Access control" : "Åtkomstkontroll",
"Could not unshare" : "Kunde inte ta bort delning",
"Error while sharing" : "Fel vid delning",
diff --git a/core/l10n/tr.js b/core/l10n/tr.js
index d7fdb9c222d..ee4814e98ba 100644
--- a/core/l10n/tr.js
+++ b/core/l10n/tr.js
@@ -135,11 +135,12 @@ OC.L10N.register(
"Share link" : "Paylaşma bağlantısı",
"Link" : "Bağlantı",
"Password protect" : "Parola koruması",
- "Allow upload and editing" : "Yükleme ve düzenleme yapılabilsin",
"Allow editing" : "Düzenleme yapılabilsin",
- "upload only" : "yalnız yükleme",
"Email link to person" : "Bağlantıyı e-posta ile gönder",
"Send" : "Gönder",
+ "Allow upload and editing" : "Yükleme ve düzenleme yapılabilsin",
+ "Read only" : "Salt okunur",
+ "Secure drop (upload only)" : "Güvenli bırakma (yalnız yükleme)",
"Shared with you and the group {group} by {owner}" : "{owner} tarafından sizinle ve {group} ile paylaşılmış",
"Shared with you by {owner}" : "{owner} tarafından sizinle paylaşılmış",
"Choose a password for the mail share" : "E-posta ile paylaşmak için bir parola seçin",
@@ -154,7 +155,6 @@ OC.L10N.register(
"Can create" : "Ekleyebilir",
"Can change" : "Değiştirebilir",
"Can delete" : "Silebilir",
- "Secure drop (upload only)" : "Güvenli bırakma (yalnız yükleme)",
"Access control" : "Erişim denetimi",
"Could not unshare" : "Paylaşım kaldırılamadı",
"Error while sharing" : "Paylaşılırken sorun çıktı",
diff --git a/core/l10n/tr.json b/core/l10n/tr.json
index 5a84eb8f414..f61c8da34d5 100644
--- a/core/l10n/tr.json
+++ b/core/l10n/tr.json
@@ -133,11 +133,12 @@
"Share link" : "Paylaşma bağlantısı",
"Link" : "Bağlantı",
"Password protect" : "Parola koruması",
- "Allow upload and editing" : "Yükleme ve düzenleme yapılabilsin",
"Allow editing" : "Düzenleme yapılabilsin",
- "upload only" : "yalnız yükleme",
"Email link to person" : "Bağlantıyı e-posta ile gönder",
"Send" : "Gönder",
+ "Allow upload and editing" : "Yükleme ve düzenleme yapılabilsin",
+ "Read only" : "Salt okunur",
+ "Secure drop (upload only)" : "Güvenli bırakma (yalnız yükleme)",
"Shared with you and the group {group} by {owner}" : "{owner} tarafından sizinle ve {group} ile paylaşılmış",
"Shared with you by {owner}" : "{owner} tarafından sizinle paylaşılmış",
"Choose a password for the mail share" : "E-posta ile paylaşmak için bir parola seçin",
@@ -152,7 +153,6 @@
"Can create" : "Ekleyebilir",
"Can change" : "Değiştirebilir",
"Can delete" : "Silebilir",
- "Secure drop (upload only)" : "Güvenli bırakma (yalnız yükleme)",
"Access control" : "Erişim denetimi",
"Could not unshare" : "Paylaşım kaldırılamadı",
"Error while sharing" : "Paylaşılırken sorun çıktı",
diff --git a/core/l10n/zh_CN.js b/core/l10n/zh_CN.js
index bb514911495..8ffcc997c8e 100644
--- a/core/l10n/zh_CN.js
+++ b/core/l10n/zh_CN.js
@@ -133,11 +133,10 @@ OC.L10N.register(
"Share link" : "分享链接",
"Link" : "链接",
"Password protect" : "密码保护",
- "Allow upload and editing" : "允许上传和编辑",
"Allow editing" : "允许编辑",
- "upload only" : "仅上传",
"Email link to person" : "发送链接到个人",
"Send" : "发送",
+ "Allow upload and editing" : "允许上传和编辑",
"Shared with you and the group {group} by {owner}" : "{owner} 分享给您及 {group} 分组",
"Shared with you by {owner}" : "{owner} 分享给您",
"Choose a password for the mail share" : "为电子邮件分享选择一个密码",
diff --git a/core/l10n/zh_CN.json b/core/l10n/zh_CN.json
index 31079506730..ceb105d8a7c 100644
--- a/core/l10n/zh_CN.json
+++ b/core/l10n/zh_CN.json
@@ -131,11 +131,10 @@
"Share link" : "分享链接",
"Link" : "链接",
"Password protect" : "密码保护",
- "Allow upload and editing" : "允许上传和编辑",
"Allow editing" : "允许编辑",
- "upload only" : "仅上传",
"Email link to person" : "发送链接到个人",
"Send" : "发送",
+ "Allow upload and editing" : "允许上传和编辑",
"Shared with you and the group {group} by {owner}" : "{owner} 分享给您及 {group} 分组",
"Shared with you by {owner}" : "{owner} 分享给您",
"Choose a password for the mail share" : "为电子邮件分享选择一个密码",
diff --git a/core/l10n/zh_TW.js b/core/l10n/zh_TW.js
index 197e522b4bd..f99f9f8e7ee 100644
--- a/core/l10n/zh_TW.js
+++ b/core/l10n/zh_TW.js
@@ -104,10 +104,10 @@ OC.L10N.register(
"Share link" : "分享連結",
"Link" : "連結",
"Password protect" : "密碼保護",
- "Allow upload and editing" : "允許上傳及編輯",
"Allow editing" : "允許編輯",
"Email link to person" : "將連結 email 給別人",
"Send" : "寄出",
+ "Allow upload and editing" : "允許上傳及編輯",
"Shared with you and the group {group} by {owner}" : "由 {owner} 分享給您和 {group}",
"Shared with you by {owner}" : "{owner} 已經和您分享",
"{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatorDisplayName}} 分享了連結",
diff --git a/core/l10n/zh_TW.json b/core/l10n/zh_TW.json
index 359000ad487..ac4a81b52cd 100644
--- a/core/l10n/zh_TW.json
+++ b/core/l10n/zh_TW.json
@@ -102,10 +102,10 @@
"Share link" : "分享連結",
"Link" : "連結",
"Password protect" : "密碼保護",
- "Allow upload and editing" : "允許上傳及編輯",
"Allow editing" : "允許編輯",
"Email link to person" : "將連結 email 給別人",
"Send" : "寄出",
+ "Allow upload and editing" : "允許上傳及編輯",
"Shared with you and the group {group} by {owner}" : "由 {owner} 分享給您和 {group}",
"Shared with you by {owner}" : "{owner} 已經和您分享",
"{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatorDisplayName}} 分享了連結",
diff --git a/core/shipped.json b/core/shipped.json
index e114ec769e7..d064cbb5c37 100644
--- a/core/shipped.json
+++ b/core/shipped.json
@@ -5,7 +5,6 @@
"comments",
"dav",
"encryption",
- "external",
"federatedfilesharing",
"federation",
"files",
diff --git a/core/templates/layout.guest.php b/core/templates/layout.guest.php
index 1e2559d6960..2c2373d53aa 100644
--- a/core/templates/layout.guest.php
+++ b/core/templates/layout.guest.php
@@ -40,6 +40,10 @@
<h1 class="hidden-visually">
<?php p($theme->getName()); ?>
</h1>
+ <?php if(\OC::$server->getConfig()->getSystemValue('installed', false)
+ && \OC::$server->getConfig()->getAppValue('theming', 'logoMime', false)): ?>
+ <img src="<?php p($theme->getLogo()); ?>"/>
+ <?php endif; ?>
</div>
<div id="logo-claim" style="display:none;"><?php p($theme->getLogoClaim()); ?></div>
</div>