aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/css/header.scss6
-rw-r--r--core/js/js.js9
-rw-r--r--core/js/share/sharedialoglinkshareview_popover_menu.handlebars10
-rw-r--r--core/js/sharedialoglinkshareview.js64
-rw-r--r--core/js/shareitemmodel.js5
-rw-r--r--core/js/sharetemplates.js29
-rw-r--r--core/js/tests/specs/coreSpec.js4
-rw-r--r--core/js/tests/specs/sharedialoglinkshareview.js113
-rw-r--r--core/js/tests/specs/shareitemmodelSpec.js13
-rw-r--r--core/l10n/ca.js3
-rw-r--r--core/l10n/ca.json3
-rw-r--r--core/l10n/cs.js3
-rw-r--r--core/l10n/cs.json3
-rw-r--r--core/l10n/de.js11
-rw-r--r--core/l10n/de.json11
-rw-r--r--core/l10n/de_DE.js11
-rw-r--r--core/l10n/de_DE.json11
-rw-r--r--core/l10n/es.js15
-rw-r--r--core/l10n/es.json15
-rw-r--r--core/l10n/fi.js1
-rw-r--r--core/l10n/fi.json1
-rw-r--r--core/l10n/fr.js9
-rw-r--r--core/l10n/fr.json9
-rw-r--r--core/l10n/he.js3
-rw-r--r--core/l10n/he.json3
-rw-r--r--core/l10n/hr.js1
-rw-r--r--core/l10n/hr.json1
-rw-r--r--core/l10n/hu.js1
-rw-r--r--core/l10n/hu.json1
-rw-r--r--core/l10n/is.js3
-rw-r--r--core/l10n/is.json3
-rw-r--r--core/l10n/it.js11
-rw-r--r--core/l10n/it.json11
-rw-r--r--core/l10n/ja.js4
-rw-r--r--core/l10n/ja.json4
-rw-r--r--core/l10n/ko.js3
-rw-r--r--core/l10n/ko.json3
-rw-r--r--core/l10n/lt_LT.js7
-rw-r--r--core/l10n/lt_LT.json7
-rw-r--r--core/l10n/lv.js3
-rw-r--r--core/l10n/lv.json3
-rw-r--r--core/l10n/nb.js3
-rw-r--r--core/l10n/nb.json3
-rw-r--r--core/l10n/nl.js12
-rw-r--r--core/l10n/nl.json12
-rw-r--r--core/l10n/pl.js3
-rw-r--r--core/l10n/pl.json3
-rw-r--r--core/l10n/pt_BR.js11
-rw-r--r--core/l10n/pt_BR.json11
-rw-r--r--core/l10n/ru.js3
-rw-r--r--core/l10n/ru.json3
-rw-r--r--core/l10n/sk.js6
-rw-r--r--core/l10n/sk.json6
-rw-r--r--core/l10n/sr.js15
-rw-r--r--core/l10n/sr.json15
-rw-r--r--core/l10n/sv.js14
-rw-r--r--core/l10n/sv.json14
-rw-r--r--core/l10n/tr.js11
-rw-r--r--core/l10n/tr.json11
-rw-r--r--core/l10n/vi.js3
-rw-r--r--core/l10n/vi.json3
-rw-r--r--core/l10n/zh_CN.js3
-rw-r--r--core/l10n/zh_CN.json3
-rw-r--r--core/l10n/zh_TW.js3
-rw-r--r--core/l10n/zh_TW.json3
65 files changed, 481 insertions, 124 deletions
diff --git a/core/css/header.scss b/core/css/header.scss
index 879734097ae..30f2c30b7b4 100644
--- a/core/css/header.scss
+++ b/core/css/header.scss
@@ -553,7 +553,8 @@ nav[role='navigation'] {
li {
/* Move up app icon */
svg,
- .icon-more-white {
+ .icon-more, icon-more-white,
+ .icon-loading-small, .icon-loading-small-dark {
transform: translateY(-7px);
}
@@ -582,7 +583,8 @@ nav[role='navigation'] {
li a:focus {
/* Move up app icon */
svg,
- .icon-more-white, {
+ .icon-more, icon-more-white,
+ .icon-loading-small, .icon-loading-small-dark {
transform: translateY(-7px);
}
diff --git a/core/js/js.js b/core/js/js.js
index fd6e0a68da5..026cc6bb0d6 100644
--- a/core/js/js.js
+++ b/core/js/js.js
@@ -1562,13 +1562,14 @@ function initCore() {
var resizeMenu = function() {
var appList = $('#appmenu li');
- var headerWidth = $('.header-left').outerWidth() - $('#nextcloud').outerWidth();
+ var rightHeaderWidth = $('.header-right').outerWidth();
+ var headerWidth = $('header').outerWidth();
var usePercentualAppMenuLimit = 0.33;
var minAppsDesktop = 8;
- var availableWidth = headerWidth - $(appList).width();
+ var availableWidth = headerWidth - $('#nextcloud').outerWidth() - (rightHeaderWidth > 210 ? rightHeaderWidth : 210)
var isMobile = $(window).width() < 768;
if (!isMobile) {
- availableWidth = headerWidth * usePercentualAppMenuLimit;
+ availableWidth = availableWidth * usePercentualAppMenuLimit;
}
var appCount = Math.floor((availableWidth / $(appList).width()));
if (isMobile && appCount > minAppsDesktop) {
@@ -1613,7 +1614,7 @@ function initCore() {
}
};
$(window).resize(resizeMenu);
- resizeMenu();
+ setTimeout(resizeMenu, 0);
// just add snapper for logged in users
if($('#app-navigation').length && !$('html').hasClass('lte9')) {
diff --git a/core/js/share/sharedialoglinkshareview_popover_menu.handlebars b/core/js/share/sharedialoglinkshareview_popover_menu.handlebars
index cc951ce047d..59312bc70b0 100644
--- a/core/js/share/sharedialoglinkshareview_popover_menu.handlebars
+++ b/core/js/share/sharedialoglinkshareview_popover_menu.handlebars
@@ -62,6 +62,16 @@
</span>
</li>
{{/if}}
+ {{#if showPasswordByTalkCheckBox}}
+ <li>
+ <span class="shareOption menuitem">
+ <span class="icon-loading-small hidden"></span>
+ <input type="checkbox" name="passwordByTalk" id="passwordByTalk-{{cid}}" class="checkbox passwordByTalkCheckbox"
+ {{#if isPasswordByTalkSet}}checked="checked"{{/if}} />
+ <label for="passwordByTalk-{{cid}}">{{passwordByTalkLabel}}</label>
+ </span>
+ </li>
+ {{/if}}
<li>
<span class="menuitem">
<input id="expireDate-{{cid}}" type="checkbox" name="expirationDate" class="expireDate checkbox"
diff --git a/core/js/sharedialoglinkshareview.js b/core/js/sharedialoglinkshareview.js
index 4ea8c0fa153..e5af4ad1f17 100644
--- a/core/js/sharedialoglinkshareview.js
+++ b/core/js/sharedialoglinkshareview.js
@@ -54,6 +54,7 @@
'focusout input.linkPassText': 'onPasswordEntered',
'keyup input.linkPassText': 'onPasswordKeyUp',
'change .showPasswordCheckbox': 'onShowPasswordClick',
+ 'change .passwordByTalkCheckbox': 'onPasswordByTalkChange',
'change .publicEditingCheckbox': 'onAllowPublicEditingChange',
// copy link url
'click .linkText': 'onLinkTextClick',
@@ -96,6 +97,37 @@
view.render();
});
+ this.model.on('change:linkShares', function(model, linkShares) {
+ // The "Password protect by Talk" item is shown only when there
+ // is a password. Unfortunately there is no fine grained
+ // rendering of items in the link shares, so the whole view
+ // needs to be rendered again when the password of a share
+ // changes.
+ // Note that this event handler is concerned only about password
+ // changes; other changes in the link shares does not trigger
+ // a rendering, so the view must be rendered again as needed in
+ // those cases (for example, when a link share is removed).
+
+ var previousLinkShares = model.previous('linkShares');
+ if (previousLinkShares.length !== linkShares.length) {
+ return;
+ }
+
+ var i;
+ for (i = 0; i < linkShares.length; i++) {
+ if (linkShares[i].id !== previousLinkShares[i].id) {
+ // A resorting should never happen, but just in case.
+ return;
+ }
+
+ if (linkShares[i].password !== previousLinkShares[i].password) {
+ view.render();
+
+ return;
+ }
+ }
+ });
+
if(!_.isUndefined(options.configModel)) {
this.configModel = options.configModel;
} else {
@@ -343,6 +375,32 @@
});
},
+ onPasswordByTalkChange: function(event) {
+ var $element = $(event.target);
+ var $li = $element.closest('li[data-share-id]');
+ var shareId = $li.data('share-id');
+ var $checkbox = $li.find('.passwordByTalkCheckbox');
+ $checkbox.siblings('.icon-loading-small').removeClass('hidden').addClass('inlineblock');
+
+ var sendPasswordByTalk = false;
+ if($checkbox.is(':checked')) {
+ sendPasswordByTalk = true;
+ }
+
+ this.model.saveLinkShare({
+ sendPasswordByTalk: sendPasswordByTalk,
+ cid: shareId
+ }, {
+ success: function() {
+ $checkbox.siblings('.icon-loading-small').addClass('hidden').removeClass('inlineblock');
+ },
+ error: function(obj, msg) {
+ OC.Notification.showTemporary(t('core', 'Unable to toggle this option'));
+ $checkbox.siblings('.icon-loading-small').addClass('hidden').removeClass('inlineblock');
+ }
+ });
+ },
+
onAllowPublicEditingChange: function(event) {
var $element = $(event.target);
var $li = $element.closest('li[data-share-id]');
@@ -790,6 +848,9 @@
expireDate = moment(share.expiration, 'YYYY-MM-DD').format('DD-MM-YYYY');
}
+ var isTalkEnabled = oc_appswebroots['spreed'] !== undefined;
+ var sendPasswordByTalk = share.sendPasswordByTalk;
+
var showHideDownloadCheckbox = !this.model.isFolder();
var hideDownload = share.hideDownload;
@@ -816,6 +877,9 @@
passwordPlaceholder: isPasswordSet ? PASSWORD_PLACEHOLDER : PASSWORD_PLACEHOLDER_MESSAGE,
isPasswordSet: isPasswordSet || isPasswordEnabledByDefault || isPasswordEnforced,
showPasswordCheckBox: showPasswordCheckBox,
+ showPasswordByTalkCheckBox: isTalkEnabled && isPasswordSet,
+ passwordByTalkLabel: t('core', 'Password protect by Talk'),
+ isPasswordByTalkSet: sendPasswordByTalk,
publicUploadRWChecked: publicUploadRWChecked,
publicUploadRChecked: publicUploadRChecked,
publicUploadWChecked: publicUploadWChecked,
diff --git a/core/js/shareitemmodel.js b/core/js/shareitemmodel.js
index f4f8c023705..2349f19092f 100644
--- a/core/js/shareitemmodel.js
+++ b/core/js/shareitemmodel.js
@@ -19,6 +19,7 @@
* @property {string} token
* @property {bool} hideDownload
* @property {string|null} password
+ * @property {bool} sendPasswordByTalk
* @property {number} permissions
* @property {Date} expiration
* @property {number} stime share time
@@ -141,6 +142,7 @@
hideDownload: false,
password: '',
passwordChanged: false,
+ sendPasswordByTalk: false,
permissions: OC.PERMISSION_READ,
expireDate: this.configModel.getDefaultExpirationDateString(),
shareType: OC.Share.SHARE_TYPE_LINK
@@ -886,7 +888,8 @@
// hide_download is returned as an int, so force it
// to a boolean
hideDownload: !!share.hide_download,
- password: share.share_with
+ password: share.share_with,
+ sendPasswordByTalk: share.send_password_by_talk
}));
return share;
diff --git a/core/js/sharetemplates.js b/core/js/sharetemplates.js
index edf73941967..0f1762c5f05 100644
--- a/core/js/sharetemplates.js
+++ b/core/js/sharetemplates.js
@@ -158,18 +158,30 @@ templates['sharedialoglinkshareview_popover_menu'] = template({"1":function(cont
},"11":function(container,depth0,helpers,partials,data) {
return "hidden";
},"13":function(container,depth0,helpers,partials,data) {
- return "datepicker";
+ var stack1, helper, alias1=depth0 != null ? depth0 : (container.nullContext || {}), alias2=helpers.helperMissing, alias3="function", alias4=container.escapeExpression;
+
+ return " <li>\n <span class=\"shareOption menuitem\">\n <span class=\"icon-loading-small hidden\"></span>\n <input type=\"checkbox\" name=\"passwordByTalk\" id=\"passwordByTalk-"
+ + alias4(((helper = (helper = helpers.cid || (depth0 != null ? depth0.cid : depth0)) != null ? helper : alias2),(typeof helper === alias3 ? helper.call(alias1,{"name":"cid","hash":{},"data":data}) : helper)))
+ + "\" class=\"checkbox passwordByTalkCheckbox\"\n "
+ + ((stack1 = helpers["if"].call(alias1,(depth0 != null ? depth0.isPasswordByTalkSet : depth0),{"name":"if","hash":{},"fn":container.program(6, data, 0),"inverse":container.noop,"data":data})) != null ? stack1 : "")
+ + " />\n <label for=\"passwordByTalk-"
+ + alias4(((helper = (helper = helpers.cid || (depth0 != null ? depth0.cid : depth0)) != null ? helper : alias2),(typeof helper === alias3 ? helper.call(alias1,{"name":"cid","hash":{},"data":data}) : helper)))
+ + "\">"
+ + alias4(((helper = (helper = helpers.passwordByTalkLabel || (depth0 != null ? depth0.passwordByTalkLabel : depth0)) != null ? helper : alias2),(typeof helper === alias3 ? helper.call(alias1,{"name":"passwordByTalkLabel","hash":{},"data":data}) : helper)))
+ + "</label>\n </span>\n </li>\n";
},"15":function(container,depth0,helpers,partials,data) {
+ return "datepicker";
+},"17":function(container,depth0,helpers,partials,data) {
var helper;
return container.escapeExpression(((helper = (helper = helpers.expireDate || (depth0 != null ? depth0.expireDate : depth0)) != null ? helper : helpers.helperMissing),(typeof helper === "function" ? helper.call(depth0 != null ? depth0 : (container.nullContext || {}),{"name":"expireDate","hash":{},"data":data}) : helper)));
-},"17":function(container,depth0,helpers,partials,data) {
+},"19":function(container,depth0,helpers,partials,data) {
var helper;
return container.escapeExpression(((helper = (helper = helpers.defaultExpireDate || (depth0 != null ? depth0.defaultExpireDate : depth0)) != null ? helper : helpers.helperMissing),(typeof helper === "function" ? helper.call(depth0 != null ? depth0 : (container.nullContext || {}),{"name":"defaultExpireDate","hash":{},"data":data}) : helper)));
-},"19":function(container,depth0,helpers,partials,data) {
- return "readonly";
},"21":function(container,depth0,helpers,partials,data) {
+ return "readonly";
+},"23":function(container,depth0,helpers,partials,data) {
var helper, alias1=depth0 != null ? depth0 : (container.nullContext || {}), alias2=helpers.helperMissing, alias3="function", alias4=container.escapeExpression;
return " <li>\n <a href=\"#\" class=\"menuitem pop-up\" data-url=\""
@@ -193,6 +205,7 @@ templates['sharedialoglinkshareview_popover_menu'] = template({"1":function(cont
+ ((stack1 = helpers["if"].call(alias1,(depth0 != null ? depth0.publicEditing : depth0),{"name":"if","hash":{},"fn":container.program(3, data, 0),"inverse":container.noop,"data":data})) != null ? stack1 : "")
+ ((stack1 = helpers["if"].call(alias1,(depth0 != null ? depth0.showHideDownloadCheckbox : depth0),{"name":"if","hash":{},"fn":container.program(5, data, 0),"inverse":container.noop,"data":data})) != null ? stack1 : "")
+ ((stack1 = helpers["if"].call(alias1,(depth0 != null ? depth0.showPasswordCheckBox : depth0),{"name":"if","hash":{},"fn":container.program(8, data, 0),"inverse":container.noop,"data":data})) != null ? stack1 : "")
+ + ((stack1 = helpers["if"].call(alias1,(depth0 != null ? depth0.showPasswordByTalkCheckBox : depth0),{"name":"if","hash":{},"fn":container.program(13, data, 0),"inverse":container.noop,"data":data})) != null ? stack1 : "")
+ " <li>\n <span class=\"menuitem\">\n <input id=\"expireDate-"
+ alias4(((helper = (helper = helpers.cid || (depth0 != null ? depth0.cid : depth0)) != null ? helper : alias2),(typeof helper === alias3 ? helper.call(alias1,{"name":"cid","hash":{},"data":data}) : helper)))
+ "\" type=\"checkbox\" name=\"expirationDate\" class=\"expireDate checkbox\"\n "
@@ -216,15 +229,15 @@ templates['sharedialoglinkshareview_popover_menu'] = template({"1":function(cont
+ "</label>\n <!-- do not use the datepicker if enforced -->\n <input id=\"expirationDatePicker-"
+ alias4(((helper = (helper = helpers.cid || (depth0 != null ? depth0.cid : depth0)) != null ? helper : alias2),(typeof helper === alias3 ? helper.call(alias1,{"name":"cid","hash":{},"data":data}) : helper)))
+ "\" class=\""
- + ((stack1 = helpers.unless.call(alias1,(depth0 != null ? depth0.isExpirationEnforced : depth0),{"name":"unless","hash":{},"fn":container.program(13, data, 0),"inverse":container.noop,"data":data})) != null ? stack1 : "")
+ + ((stack1 = helpers.unless.call(alias1,(depth0 != null ? depth0.isExpirationEnforced : depth0),{"name":"unless","hash":{},"fn":container.program(15, data, 0),"inverse":container.noop,"data":data})) != null ? stack1 : "")
+ "\" type=\"text\"\n placeholder=\""
+ alias4(((helper = (helper = helpers.expirationDatePlaceholder || (depth0 != null ? depth0.expirationDatePlaceholder : depth0)) != null ? helper : alias2),(typeof helper === alias3 ? helper.call(alias1,{"name":"expirationDatePlaceholder","hash":{},"data":data}) : helper)))
+ "\" value=\""
- + ((stack1 = helpers["if"].call(alias1,(depth0 != null ? depth0.hasExpireDate : depth0),{"name":"if","hash":{},"fn":container.program(15, data, 0),"inverse":container.program(17, data, 0),"data":data})) != null ? stack1 : "")
+ + ((stack1 = helpers["if"].call(alias1,(depth0 != null ? depth0.hasExpireDate : depth0),{"name":"if","hash":{},"fn":container.program(17, data, 0),"inverse":container.program(19, data, 0),"data":data})) != null ? stack1 : "")
+ "\"\n data-max-date=\""
+ alias4(((helper = (helper = helpers.maxDate || (depth0 != null ? depth0.maxDate : depth0)) != null ? helper : alias2),(typeof helper === alias3 ? helper.call(alias1,{"name":"maxDate","hash":{},"data":data}) : helper)))
+ "\" "
- + ((stack1 = helpers["if"].call(alias1,(depth0 != null ? depth0.isExpirationEnforced : depth0),{"name":"if","hash":{},"fn":container.program(19, data, 0),"inverse":container.noop,"data":data})) != null ? stack1 : "")
+ + ((stack1 = helpers["if"].call(alias1,(depth0 != null ? depth0.isExpirationEnforced : depth0),{"name":"if","hash":{},"fn":container.program(21, data, 0),"inverse":container.noop,"data":data})) != null ? stack1 : "")
+ " />\n </span>\n </li>\n <li>\n <a href=\"#\" class=\"share-add\">\n <span class=\"icon-loading-small hidden\"></span>\n <span class=\"icon icon-edit\"></span>\n <span>"
+ alias4(((helper = (helper = helpers.addNoteLabel || (depth0 != null ? depth0.addNoteLabel : depth0)) != null ? helper : alias2),(typeof helper === alias3 ? helper.call(alias1,{"name":"addNoteLabel","hash":{},"data":data}) : helper)))
+ "</span>\n <input type=\"button\" class=\"share-note-delete icon-delete "
@@ -236,7 +249,7 @@ templates['sharedialoglinkshareview_popover_menu'] = template({"1":function(cont
+ "</textarea>\n <input type=\"submit\" class=\"icon-confirm share-note-submit\" value=\"\" id=\"add-note-"
+ alias4(((helper = (helper = helpers.shareId || (depth0 != null ? depth0.shareId : depth0)) != null ? helper : alias2),(typeof helper === alias3 ? helper.call(alias1,{"name":"shareId","hash":{},"data":data}) : helper)))
+ "\" />\n </span>\n </li>\n"
- + ((stack1 = helpers.each.call(alias1,(depth0 != null ? depth0.social : depth0),{"name":"each","hash":{},"fn":container.program(21, data, 0),"inverse":container.noop,"data":data})) != null ? stack1 : "")
+ + ((stack1 = helpers.each.call(alias1,(depth0 != null ? depth0.social : depth0),{"name":"each","hash":{},"fn":container.program(23, data, 0),"inverse":container.noop,"data":data})) != null ? stack1 : "")
+ " <li>\n <a href=\"#\" class=\"unshare\"><span class=\"icon-loading-small hidden\"></span><span class=\"icon icon-delete\"></span><span>"
+ alias4(((helper = (helper = helpers.unshareLinkLabel || (depth0 != null ? depth0.unshareLinkLabel : depth0)) != null ? helper : alias2),(typeof helper === alias3 ? helper.call(alias1,{"name":"unshareLinkLabel","hash":{},"data":data}) : helper)))
+ "</span></a>\n </li>\n <li>\n <a href=\"#\" class=\"new-share\">\n <span class=\"icon-loading-small hidden\"></span>\n <span class=\"icon icon-add\"></span>\n <span>"
diff --git a/core/js/tests/specs/coreSpec.js b/core/js/tests/specs/coreSpec.js
index 67b7d77be6c..63c02048a34 100644
--- a/core/js/tests/specs/coreSpec.js
+++ b/core/js/tests/specs/coreSpec.js
@@ -573,6 +573,10 @@ describe('Core base tests', function() {
});
it('Clicking menu toggle toggles navigation in', function() {
window.initCore();
+ // fore show more apps icon since otherwise it would be hidden since no icons are available
+ clock.tick(1 * 1000);
+ $('#more-apps').show();
+
expect($navigation.is(':visible')).toEqual(false);
$toggle.click();
clock.tick(1 * 1000);
diff --git a/core/js/tests/specs/sharedialoglinkshareview.js b/core/js/tests/specs/sharedialoglinkshareview.js
index f5fe8725c03..c2d84fd2e87 100644
--- a/core/js/tests/specs/sharedialoglinkshareview.js
+++ b/core/js/tests/specs/sharedialoglinkshareview.js
@@ -235,4 +235,117 @@ describe('OC.Share.ShareDialogLinkShareView', function () {
});
+ describe('protect password by Talk', function () {
+
+ var $passwordByTalkCheckbox;
+ var $workingIcon;
+
+ beforeEach(function () {
+ // Needed to render the view
+ configModel.isShareWithLinkAllowed.returns(true);
+
+ // "Enable" Talk
+ window.oc_appswebroots['spreed'] = window.oc_webroot + '/apps/files/';
+
+ shareModel.set({
+ linkShares: [{
+ id: 123,
+ password: 'password'
+ }]
+ });
+ view.render();
+
+ $passwordByTalkCheckbox = view.$el.find('.passwordByTalkCheckbox');
+ $workingIcon = $passwordByTalkCheckbox.prev('.icon-loading-small');
+
+ sinon.stub(shareModel, 'saveLinkShare');
+
+ expect($workingIcon.hasClass('hidden')).toBeTruthy();
+ });
+
+ afterEach(function () {
+ shareModel.saveLinkShare.restore();
+ });
+
+ it('is shown if Talk is enabled and there is a password set', function() {
+ expect($passwordByTalkCheckbox.length).toBeTruthy();
+ });
+
+ it('is not shown if Talk is enabled but there is no password set', function() {
+ // Changing the password value also triggers the rendering
+ shareModel.set({
+ linkShares: [{
+ id: 123
+ }]
+ });
+
+ $passwordByTalkCheckbox = view.$el.find('.passwordByTalkCheckbox');
+
+ expect($passwordByTalkCheckbox.length).toBeFalsy();
+ });
+
+ it('is not shown if there is a password set but Talk is not enabled', function() {
+ // "Disable" Talk
+ delete window.oc_appswebroots['spreed'];
+
+ view.render();
+
+ $passwordByTalkCheckbox = view.$el.find('.passwordByTalkCheckbox');
+
+ expect($passwordByTalkCheckbox.length).toBeFalsy();
+ });
+
+ it('checkbox is checked when the setting is enabled', function () {
+ shareModel.set({
+ linkShares: [{
+ id: 123,
+ password: 'password',
+ sendPasswordByTalk: true
+ }]
+ });
+ view.render();
+
+ $passwordByTalkCheckbox = view.$el.find('.passwordByTalkCheckbox');
+
+ expect($passwordByTalkCheckbox.is(':checked')).toEqual(true);
+ });
+
+ it('checkbox is not checked when the setting is disabled', function () {
+ expect($passwordByTalkCheckbox.is(':checked')).toEqual(false);
+ });
+
+ it('enables the setting if clicked when unchecked', function () {
+ // Simulate the click by checking the checkbox and then triggering
+ // the "change" event.
+ $passwordByTalkCheckbox.prop('checked', true);
+ $passwordByTalkCheckbox.change();
+
+ expect($workingIcon.hasClass('hidden')).toBeFalsy();
+ expect(shareModel.saveLinkShare.withArgs({ sendPasswordByTalk: true, cid: 123 }).calledOnce).toBeTruthy();
+ });
+
+ it('disables the setting if clicked when checked', function () {
+ shareModel.set({
+ linkShares: [{
+ id: 123,
+ password: 'password',
+ sendPasswordByTalk: true
+ }]
+ });
+ view.render();
+
+ $passwordByTalkCheckbox = view.$el.find('.passwordByTalkCheckbox');
+ $workingIcon = $passwordByTalkCheckbox.prev('.icon-loading-small');
+
+ // Simulate the click by unchecking the checkbox and then triggering
+ // the "change" event.
+ $passwordByTalkCheckbox.prop('checked', false);
+ $passwordByTalkCheckbox.change();
+
+ expect($workingIcon.hasClass('hidden')).toBeFalsy();
+ expect(shareModel.saveLinkShare.withArgs({ sendPasswordByTalk: false, cid: 123 }).calledOnce).toBeTruthy();
+ });
+
+ });
+
});
diff --git a/core/js/tests/specs/shareitemmodelSpec.js b/core/js/tests/specs/shareitemmodelSpec.js
index 3b4dc5a960f..e8016950094 100644
--- a/core/js/tests/specs/shareitemmodelSpec.js
+++ b/core/js/tests/specs/shareitemmodelSpec.js
@@ -169,7 +169,8 @@ describe('OC.Share.ShareItemModel', function() {
storage: 1,
token: 'tehtoken',
uid_owner: 'root',
- hide_download: 1
+ hide_download: 1,
+ send_password_by_talk: true
}
]));
@@ -189,6 +190,7 @@ describe('OC.Share.ShareItemModel', function() {
expect(linkShares.length).toEqual(1);
var linkShare = linkShares[0];
expect(linkShare.hideDownload).toEqual(true);
+ expect(linkShare.sendPasswordByTalk).toEqual(true);
// TODO: check more attributes
});
@@ -293,7 +295,8 @@ describe('OC.Share.ShareItemModel', function() {
storage: 1,
token: 'tehtoken',
uid_owner: 'root',
- hide_download: 0
+ hide_download: 0,
+ send_password_by_talk: false
}, {
displayname_owner: 'root',
expiration: '2015-10-15 00:00:00',
@@ -312,7 +315,8 @@ describe('OC.Share.ShareItemModel', function() {
storage: 1,
token: 'anothertoken',
uid_owner: 'root',
- hide_download: 1
+ hide_download: 1,
+ send_password_by_talk: true
}]
));
OC.currentUser = 'root';
@@ -327,6 +331,7 @@ describe('OC.Share.ShareItemModel', function() {
var linkShare = linkShares[0];
expect(linkShare.token).toEqual('tehtoken');
expect(linkShare.hideDownload).toEqual(false);
+ expect(linkShare.sendPasswordByTalk).toEqual(false);
// TODO: check child too
});
@@ -588,6 +593,7 @@ describe('OC.Share.ShareItemModel', function() {
hideDownload: false,
password: '',
passwordChanged: false,
+ sendPasswordByTalk: false,
permissions: OC.PERMISSION_READ,
expireDate: '',
shareType: OC.Share.SHARE_TYPE_LINK
@@ -612,6 +618,7 @@ describe('OC.Share.ShareItemModel', function() {
hideDownload: false,
password: '',
passwordChanged: false,
+ sendPasswordByTalk: false,
permissions: OC.PERMISSION_READ,
expireDate: '2015-07-24 00:00:00',
shareType: OC.Share.SHARE_TYPE_LINK
diff --git a/core/l10n/ca.js b/core/l10n/ca.js
index abb25a9a00f..87db749cf63 100644
--- a/core/l10n/ca.js
+++ b/core/l10n/ca.js
@@ -179,6 +179,7 @@ OC.L10N.register(
"Note to recipient" : "Nota a destinatari",
"Unshare" : "Deixa de compartir",
"Share link" : "Enllaç de compartició",
+ "Password protect by Talk" : "Contrasenya protegida per Talk",
"Could not unshare" : "No pot descompartir",
"Shared with you and the group {group} by {owner}" : "Compartit amb vos i amb el grup {group} per {owner}",
"Shared with you and {circle} by {owner}" : "Compartit amb tu i {circle} per {owner}",
@@ -197,7 +198,6 @@ OC.L10N.register(
"Can create" : "Pot crear",
"Can change" : "Pot modificar",
"Can delete" : "Pot esborrar",
- "Password protect by Talk" : "Contrasenya protegida per Talk",
"Access control" : "Control d'accés",
"{shareInitiatorDisplayName} shared via link" : "{shareInitiatorDisplayName} compartida per enllaç",
"Error while sharing" : "Error en compartir",
@@ -409,7 +409,6 @@ OC.L10N.register(
"Back to log in" : "Torna a l'accés",
"You are about to grant %s access to your %s account." : "Estàs a punt d'autoritzar a %s a accedir al teu compte %s.",
"Depending on your configuration, this button could also work to trust the domain:" : "Depenent de la teva configuració, aquest botó també podria funcionar per confiar en el domini:",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "Esperant cron per acabar (torna a comprovar en 5 segons) …",
"Copy URL" : "Copiar URL",
"Enable" : "Habilitar",
"{sharee} (conversation)" : "{sharee} (conversation)",
diff --git a/core/l10n/ca.json b/core/l10n/ca.json
index ed25e166fab..f5155827daa 100644
--- a/core/l10n/ca.json
+++ b/core/l10n/ca.json
@@ -177,6 +177,7 @@
"Note to recipient" : "Nota a destinatari",
"Unshare" : "Deixa de compartir",
"Share link" : "Enllaç de compartició",
+ "Password protect by Talk" : "Contrasenya protegida per Talk",
"Could not unshare" : "No pot descompartir",
"Shared with you and the group {group} by {owner}" : "Compartit amb vos i amb el grup {group} per {owner}",
"Shared with you and {circle} by {owner}" : "Compartit amb tu i {circle} per {owner}",
@@ -195,7 +196,6 @@
"Can create" : "Pot crear",
"Can change" : "Pot modificar",
"Can delete" : "Pot esborrar",
- "Password protect by Talk" : "Contrasenya protegida per Talk",
"Access control" : "Control d'accés",
"{shareInitiatorDisplayName} shared via link" : "{shareInitiatorDisplayName} compartida per enllaç",
"Error while sharing" : "Error en compartir",
@@ -407,7 +407,6 @@
"Back to log in" : "Torna a l'accés",
"You are about to grant %s access to your %s account." : "Estàs a punt d'autoritzar a %s a accedir al teu compte %s.",
"Depending on your configuration, this button could also work to trust the domain:" : "Depenent de la teva configuració, aquest botó també podria funcionar per confiar en el domini:",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "Esperant cron per acabar (torna a comprovar en 5 segons) …",
"Copy URL" : "Copiar URL",
"Enable" : "Habilitar",
"{sharee} (conversation)" : "{sharee} (conversation)",
diff --git a/core/l10n/cs.js b/core/l10n/cs.js
index a344d987435..b41ab810398 100644
--- a/core/l10n/cs.js
+++ b/core/l10n/cs.js
@@ -179,6 +179,7 @@ OC.L10N.register(
"Note to recipient" : "Poznámka pro příjemce",
"Unshare" : "Zrušit sdílení",
"Share link" : "Odkaz pro sdílení",
+ "Password protect by Talk" : "Ochrana heslem pomocí Talk",
"Could not unshare" : "Nelze zrušit sdílení",
"Shared with you and the group {group} by {owner}" : "S Vámi a skupinou {group} sdílí {owner}",
"Shared with you and {circle} by {owner}" : "Sdíleno s vámi a {circle} od {owner}",
@@ -197,7 +198,6 @@ OC.L10N.register(
"Can create" : "Může vytvářet",
"Can change" : "Může měnit",
"Can delete" : "Může mazat",
- "Password protect by Talk" : "Ochrana heslem pomocí Talk",
"Access control" : "Řízení přístupu",
"{shareInitiatorDisplayName} shared via link" : "{shareInitiatorDisplayName} nasdílel(a) prostřednictvím odkazu",
"Error while sharing" : "Chyba při sdílení",
@@ -408,7 +408,6 @@ OC.L10N.register(
"Back to log in" : "Zpět na přihlášení",
"You are about to grant %s access to your %s account." : "Chystáte se povolit %s přístup k vašemu %s účtu.",
"Depending on your configuration, this button could also work to trust the domain:" : "V závislosti na vaší konfiguraci by pro označení domény za důvěryhodnou mohlo fungovat i toto tlačítko:",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "Čekání na dokončení cronu (zkontroluje znovu za 5 sekund)…",
"Copy URL" : "Kopírovat URL",
"Enable" : "Povolit",
"{sharee} (conversation)" : "{sharee} (konverzace)",
diff --git a/core/l10n/cs.json b/core/l10n/cs.json
index 8e25242fac6..b484ec296a8 100644
--- a/core/l10n/cs.json
+++ b/core/l10n/cs.json
@@ -177,6 +177,7 @@
"Note to recipient" : "Poznámka pro příjemce",
"Unshare" : "Zrušit sdílení",
"Share link" : "Odkaz pro sdílení",
+ "Password protect by Talk" : "Ochrana heslem pomocí Talk",
"Could not unshare" : "Nelze zrušit sdílení",
"Shared with you and the group {group} by {owner}" : "S Vámi a skupinou {group} sdílí {owner}",
"Shared with you and {circle} by {owner}" : "Sdíleno s vámi a {circle} od {owner}",
@@ -195,7 +196,6 @@
"Can create" : "Může vytvářet",
"Can change" : "Může měnit",
"Can delete" : "Může mazat",
- "Password protect by Talk" : "Ochrana heslem pomocí Talk",
"Access control" : "Řízení přístupu",
"{shareInitiatorDisplayName} shared via link" : "{shareInitiatorDisplayName} nasdílel(a) prostřednictvím odkazu",
"Error while sharing" : "Chyba při sdílení",
@@ -406,7 +406,6 @@
"Back to log in" : "Zpět na přihlášení",
"You are about to grant %s access to your %s account." : "Chystáte se povolit %s přístup k vašemu %s účtu.",
"Depending on your configuration, this button could also work to trust the domain:" : "V závislosti na vaší konfiguraci by pro označení domény za důvěryhodnou mohlo fungovat i toto tlačítko:",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "Čekání na dokončení cronu (zkontroluje znovu za 5 sekund)…",
"Copy URL" : "Kopírovat URL",
"Enable" : "Povolit",
"{sharee} (conversation)" : "{sharee} (konverzace)",
diff --git a/core/l10n/de.js b/core/l10n/de.js
index 396eedb3397..dcc44dd903f 100644
--- a/core/l10n/de.js
+++ b/core/l10n/de.js
@@ -163,10 +163,13 @@ OC.L10N.register(
"Not supported!" : "Nicht unterstützt!",
"Press ⌘-C to copy." : "Zum Kopieren ⌘-C drücken.",
"Press Ctrl-C to copy." : "Zum Kopieren Strg-C drücken.",
+ "Unable to create a link share" : "Link zum Teilen kann nicht erstellt werden",
+ "Unable to toggle this option" : "Option kann nicht umgeschaltet werden",
"Resharing is not allowed" : "Das Weiterverteilen ist nicht erlaubt",
"Share to {name}" : "Mit {name} teilen",
"Link" : "Link",
"Hide download" : "Download verbergen",
+ "Password protection enforced" : "Passwortschutz erzwungen",
"Password protect" : "Passwortschutz",
"Allow editing" : "Bearbeitung erlauben",
"Email link to person" : "Link per E-Mail verschicken",
@@ -174,12 +177,18 @@ OC.L10N.register(
"Allow upload and editing" : "Hochladen und Bearbeiten erlauben",
"Read only" : "Schreibgeschützt",
"File drop (upload only)" : "Dateien ablegen (nur Hochladen)",
+ "Expiration date enforced" : "Ablaufdatum erzwungen",
"Set expiration date" : "Setze ein Ablaufdatum",
"Expiration" : "Ablaufdatum",
"Expiration date" : "Ablaufdatum",
"Note to recipient" : "Notiz an Empfänger",
"Unshare" : "Freigabe aufheben",
+ "Delete share link" : "Freigabe-Link löschen",
+ "Add another link" : "Weiteren Link hinzufügen",
+ "Password protection for links is mandatory" : "Passwortschutz für Links ist zwingend",
"Share link" : "Link teilen",
+ "New share link" : "Neuer Freigabelink",
+ "Password protect by Talk" : "Passwortgeschützt von Talk",
"Could not unshare" : "Freigabe konnte nicht aufgehoben werden",
"Shared with you and the group {group} by {owner}" : "{owner} hat dies mit Dir und der Gruppe {group} geteilt",
"Shared with you and {circle} by {owner}" : "Von {owner} mit Dir und {circle} geteilt",
@@ -198,7 +207,6 @@ OC.L10N.register(
"Can create" : "kann erstellen",
"Can change" : "kann ändern",
"Can delete" : "kann löschen",
- "Password protect by Talk" : "Passwortgeschützt von Talk",
"Access control" : "Zugriffskontrolle",
"{shareInitiatorDisplayName} shared via link" : "{shareInitiatorDisplayName} mittels Link geteilt",
"Error while sharing" : "Fehler beim Teilen",
@@ -413,7 +421,6 @@ OC.L10N.register(
"Back to log in" : "Zur Anmeldung wechseln",
"You are about to grant %s access to your %s account." : "Du bist dabei, %s Zugriff auf Dein %s-Konto zu gewähren.",
"Depending on your configuration, this button could also work to trust the domain:" : "Abhängig von Deiner Konfiguration kann diese Schaltfläche verwandt werden, um die Domain als vertrauenswürdig einzustufen:",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "Warte auf das Beenden von Cron (neue Prüfung in 5 Sekunden)…",
"Copy URL" : "URL kopieren",
"Enable" : "Aktivieren",
"{sharee} (conversation)" : "{sharee} (conversation)",
diff --git a/core/l10n/de.json b/core/l10n/de.json
index a062478f4f1..2761bbe65d0 100644
--- a/core/l10n/de.json
+++ b/core/l10n/de.json
@@ -161,10 +161,13 @@
"Not supported!" : "Nicht unterstützt!",
"Press ⌘-C to copy." : "Zum Kopieren ⌘-C drücken.",
"Press Ctrl-C to copy." : "Zum Kopieren Strg-C drücken.",
+ "Unable to create a link share" : "Link zum Teilen kann nicht erstellt werden",
+ "Unable to toggle this option" : "Option kann nicht umgeschaltet werden",
"Resharing is not allowed" : "Das Weiterverteilen ist nicht erlaubt",
"Share to {name}" : "Mit {name} teilen",
"Link" : "Link",
"Hide download" : "Download verbergen",
+ "Password protection enforced" : "Passwortschutz erzwungen",
"Password protect" : "Passwortschutz",
"Allow editing" : "Bearbeitung erlauben",
"Email link to person" : "Link per E-Mail verschicken",
@@ -172,12 +175,18 @@
"Allow upload and editing" : "Hochladen und Bearbeiten erlauben",
"Read only" : "Schreibgeschützt",
"File drop (upload only)" : "Dateien ablegen (nur Hochladen)",
+ "Expiration date enforced" : "Ablaufdatum erzwungen",
"Set expiration date" : "Setze ein Ablaufdatum",
"Expiration" : "Ablaufdatum",
"Expiration date" : "Ablaufdatum",
"Note to recipient" : "Notiz an Empfänger",
"Unshare" : "Freigabe aufheben",
+ "Delete share link" : "Freigabe-Link löschen",
+ "Add another link" : "Weiteren Link hinzufügen",
+ "Password protection for links is mandatory" : "Passwortschutz für Links ist zwingend",
"Share link" : "Link teilen",
+ "New share link" : "Neuer Freigabelink",
+ "Password protect by Talk" : "Passwortgeschützt von Talk",
"Could not unshare" : "Freigabe konnte nicht aufgehoben werden",
"Shared with you and the group {group} by {owner}" : "{owner} hat dies mit Dir und der Gruppe {group} geteilt",
"Shared with you and {circle} by {owner}" : "Von {owner} mit Dir und {circle} geteilt",
@@ -196,7 +205,6 @@
"Can create" : "kann erstellen",
"Can change" : "kann ändern",
"Can delete" : "kann löschen",
- "Password protect by Talk" : "Passwortgeschützt von Talk",
"Access control" : "Zugriffskontrolle",
"{shareInitiatorDisplayName} shared via link" : "{shareInitiatorDisplayName} mittels Link geteilt",
"Error while sharing" : "Fehler beim Teilen",
@@ -411,7 +419,6 @@
"Back to log in" : "Zur Anmeldung wechseln",
"You are about to grant %s access to your %s account." : "Du bist dabei, %s Zugriff auf Dein %s-Konto zu gewähren.",
"Depending on your configuration, this button could also work to trust the domain:" : "Abhängig von Deiner Konfiguration kann diese Schaltfläche verwandt werden, um die Domain als vertrauenswürdig einzustufen:",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "Warte auf das Beenden von Cron (neue Prüfung in 5 Sekunden)…",
"Copy URL" : "URL kopieren",
"Enable" : "Aktivieren",
"{sharee} (conversation)" : "{sharee} (conversation)",
diff --git a/core/l10n/de_DE.js b/core/l10n/de_DE.js
index 56645a543a4..912b2f3abc2 100644
--- a/core/l10n/de_DE.js
+++ b/core/l10n/de_DE.js
@@ -163,10 +163,13 @@ OC.L10N.register(
"Not supported!" : "Nicht unterstützt!",
"Press ⌘-C to copy." : "Zum Kopieren ⌘-C drücken.",
"Press Ctrl-C to copy." : "Zum Kopieren Strg-C drücken.",
+ "Unable to create a link share" : "Link zum Teilen kann nicht erstellt werden",
+ "Unable to toggle this option" : "Option kann nicht umgeschaltet werden",
"Resharing is not allowed" : "Das Weiterverteilen ist nicht erlaubt",
"Share to {name}" : "Mit {name} teilen",
"Link" : "Link",
"Hide download" : "Download verbergen",
+ "Password protection enforced" : "Passwortschutz erzwungen",
"Password protect" : "Passwortschutz",
"Allow editing" : "Bearbeitung erlauben",
"Email link to person" : "Link per E-Mail verschicken",
@@ -174,12 +177,18 @@ OC.L10N.register(
"Allow upload and editing" : "Hochladen und Bearbeiten erlauben",
"Read only" : "Schreibgeschützt",
"File drop (upload only)" : "Dateien ablegen (nur Hochladen)",
+ "Expiration date enforced" : "Ablaufdatum erzwungen",
"Set expiration date" : "Ein Ablaufdatum setzen",
"Expiration" : "Ablauf",
"Expiration date" : "Ablaufdatum",
"Note to recipient" : "Notiz an Empfänger",
"Unshare" : "Freigabe aufheben",
+ "Delete share link" : "Freigabe-Link löschen",
+ "Add another link" : "Weiteren Link hinzufügen",
+ "Password protection for links is mandatory" : "Passwortschutz für Links ist zwingend",
"Share link" : "Link teilen",
+ "New share link" : "Neuer Freigabelink",
+ "Password protect by Talk" : "Passwortgeschützt von Talk",
"Could not unshare" : "Freigabe konnte nicht aufgehoben werden",
"Shared with you and the group {group} by {owner}" : "Von {owner} mit Ihnen und der Gruppe {group} geteilt.",
"Shared with you and {circle} by {owner}" : "Von {owner} mit Ihnen und {circle} geteilt",
@@ -198,7 +207,6 @@ OC.L10N.register(
"Can create" : "kann erstellen",
"Can change" : "kann ändern",
"Can delete" : "kann löschen",
- "Password protect by Talk" : "Passwortgeschützt von Talk",
"Access control" : "Zugriffskontrolle",
"{shareInitiatorDisplayName} shared via link" : "{shareInitiatorDisplayName} mittels Link geteilt",
"Error while sharing" : "Fehler beim Teilen",
@@ -413,7 +421,6 @@ OC.L10N.register(
"Back to log in" : "Zur Anmeldung wechseln",
"You are about to grant %s access to your %s account." : "Sie sind dabei, %s Zugriff auf Ihr %s-Konto zu gewähren.",
"Depending on your configuration, this button could also work to trust the domain:" : "Abhängig von Ihrer Konfiguration kann diese Schaltfläche verwandt werden, um die Domain als vertrauenswürdig einzustufen:",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "Warte auf das Beenden von Cron (neue Prüfung in 5 Sekunden)…",
"Copy URL" : "URL kopieren",
"Enable" : "Aktivieren",
"{sharee} (conversation)" : "{sharee} (conversation)",
diff --git a/core/l10n/de_DE.json b/core/l10n/de_DE.json
index 2d79e9efd37..ac6100469de 100644
--- a/core/l10n/de_DE.json
+++ b/core/l10n/de_DE.json
@@ -161,10 +161,13 @@
"Not supported!" : "Nicht unterstützt!",
"Press ⌘-C to copy." : "Zum Kopieren ⌘-C drücken.",
"Press Ctrl-C to copy." : "Zum Kopieren Strg-C drücken.",
+ "Unable to create a link share" : "Link zum Teilen kann nicht erstellt werden",
+ "Unable to toggle this option" : "Option kann nicht umgeschaltet werden",
"Resharing is not allowed" : "Das Weiterverteilen ist nicht erlaubt",
"Share to {name}" : "Mit {name} teilen",
"Link" : "Link",
"Hide download" : "Download verbergen",
+ "Password protection enforced" : "Passwortschutz erzwungen",
"Password protect" : "Passwortschutz",
"Allow editing" : "Bearbeitung erlauben",
"Email link to person" : "Link per E-Mail verschicken",
@@ -172,12 +175,18 @@
"Allow upload and editing" : "Hochladen und Bearbeiten erlauben",
"Read only" : "Schreibgeschützt",
"File drop (upload only)" : "Dateien ablegen (nur Hochladen)",
+ "Expiration date enforced" : "Ablaufdatum erzwungen",
"Set expiration date" : "Ein Ablaufdatum setzen",
"Expiration" : "Ablauf",
"Expiration date" : "Ablaufdatum",
"Note to recipient" : "Notiz an Empfänger",
"Unshare" : "Freigabe aufheben",
+ "Delete share link" : "Freigabe-Link löschen",
+ "Add another link" : "Weiteren Link hinzufügen",
+ "Password protection for links is mandatory" : "Passwortschutz für Links ist zwingend",
"Share link" : "Link teilen",
+ "New share link" : "Neuer Freigabelink",
+ "Password protect by Talk" : "Passwortgeschützt von Talk",
"Could not unshare" : "Freigabe konnte nicht aufgehoben werden",
"Shared with you and the group {group} by {owner}" : "Von {owner} mit Ihnen und der Gruppe {group} geteilt.",
"Shared with you and {circle} by {owner}" : "Von {owner} mit Ihnen und {circle} geteilt",
@@ -196,7 +205,6 @@
"Can create" : "kann erstellen",
"Can change" : "kann ändern",
"Can delete" : "kann löschen",
- "Password protect by Talk" : "Passwortgeschützt von Talk",
"Access control" : "Zugriffskontrolle",
"{shareInitiatorDisplayName} shared via link" : "{shareInitiatorDisplayName} mittels Link geteilt",
"Error while sharing" : "Fehler beim Teilen",
@@ -411,7 +419,6 @@
"Back to log in" : "Zur Anmeldung wechseln",
"You are about to grant %s access to your %s account." : "Sie sind dabei, %s Zugriff auf Ihr %s-Konto zu gewähren.",
"Depending on your configuration, this button could also work to trust the domain:" : "Abhängig von Ihrer Konfiguration kann diese Schaltfläche verwandt werden, um die Domain als vertrauenswürdig einzustufen:",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "Warte auf das Beenden von Cron (neue Prüfung in 5 Sekunden)…",
"Copy URL" : "URL kopieren",
"Enable" : "Aktivieren",
"{sharee} (conversation)" : "{sharee} (conversation)",
diff --git a/core/l10n/es.js b/core/l10n/es.js
index d35849ea7a2..7b3d3334574 100644
--- a/core/l10n/es.js
+++ b/core/l10n/es.js
@@ -163,9 +163,13 @@ OC.L10N.register(
"Not supported!" : "¡No se puede!",
"Press ⌘-C to copy." : "Presiona ⌘-C para copiar.",
"Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.",
+ "Unable to create a link share" : "No se ha podido crear el enlace compartido",
+ "Unable to toggle this option" : "No se ha podido cambiar esta opción",
"Resharing is not allowed" : "No se permite compartir de nuevo",
"Share to {name}" : "Compartir a {name}",
"Link" : "Enlace",
+ "Hide download" : "Esconder descarga",
+ "Password protection enforced" : "Protección con contraseña forzada",
"Password protect" : "Protección con contraseña",
"Allow editing" : "Permitir edición",
"Email link to person" : "Enviar enlace por correo electrónico a una persona",
@@ -173,12 +177,18 @@ OC.L10N.register(
"Allow upload and editing" : "Permitir la subida y la edición",
"Read only" : "Solo lectura",
"File drop (upload only)" : "Entrega de archivos (solo subida)",
+ "Expiration date enforced" : "Fecha de expiración forzada",
"Set expiration date" : "Establecer fecha de caducidad",
"Expiration" : "Caduca el: ",
"Expiration date" : "Fecha de caducidad",
"Note to recipient" : "Nota al destinatario",
"Unshare" : "Dejar de compartir",
+ "Delete share link" : "Eliminar enlace compartido",
+ "Add another link" : "Añadir otro enlace",
+ "Password protection for links is mandatory" : "La protección con contraseña es obligatoria",
"Share link" : "Compartir enlace",
+ "New share link" : "Nuevo enlace compartido",
+ "Password protect by Talk" : "Protegido con contraseña por Talk",
"Could not unshare" : "No se puede quitar el comparto",
"Shared with you and the group {group} by {owner}" : "Compartido contigo y el grupo {group} por {owner}",
"Shared with you and {circle} by {owner}" : "Compartido contigo y {circle} por {owner}",
@@ -197,7 +207,6 @@ OC.L10N.register(
"Can create" : "Puede crear",
"Can change" : "Puede cambiar",
"Can delete" : "Puede eliminar",
- "Password protect by Talk" : "Protegido con contraseña por Talk",
"Access control" : "Control de acceso",
"{shareInitiatorDisplayName} shared via link" : "{shareInitiatorDisplayName} compartido por medio de un link",
"Error while sharing" : "Error al compartir",
@@ -210,6 +219,8 @@ OC.L10N.register(
"An error occurred. Please try again" : "Ha ocurrido un error. Por favor inténtelo de nuevo",
"{sharee} (remote group)" : "{sharee} (grupo remoto)",
"{sharee} ({type}, {owner})" : "{sharee} ({type}, {owner})",
+ "Home" : "Inicio",
+ "Other" : "Otro",
"Share" : "Compartir",
"Name or email address..." : "Nombre o dirección de correo electrónico...",
"Name or federated cloud ID..." : "Nombre o ID de nube federada...",
@@ -295,6 +306,7 @@ OC.L10N.register(
"Skip to main content" : "Saltar al contenido principal",
"Skip to navigation of app" : "Saltar a la navegación de la app",
"More apps" : "Más aplicaciones",
+ "More" : "Más",
"More apps menu" : "Menú de otras apps",
"Search" : "Buscar",
"Reset search" : "Resetear búsqueda",
@@ -409,7 +421,6 @@ OC.L10N.register(
"Back to log in" : "Volver al registro",
"You are about to grant %s access to your %s account." : "Estás a punto de conceder a %s acceso a tu cuenta de %s",
"Depending on your configuration, this button could also work to trust the domain:" : "Dependiendo de tu configuración, este botón también podría servir para confiar en el dominio:",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "Esperando a que termine el cron (se vuelve a comprobar en 5 segundos)",
"Copy URL" : "Copiar URL",
"Enable" : "Habilitar",
"{sharee} (conversation)" : "{sharee} (conversación)",
diff --git a/core/l10n/es.json b/core/l10n/es.json
index 4999bcc231f..82f6ec04105 100644
--- a/core/l10n/es.json
+++ b/core/l10n/es.json
@@ -161,9 +161,13 @@
"Not supported!" : "¡No se puede!",
"Press ⌘-C to copy." : "Presiona ⌘-C para copiar.",
"Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.",
+ "Unable to create a link share" : "No se ha podido crear el enlace compartido",
+ "Unable to toggle this option" : "No se ha podido cambiar esta opción",
"Resharing is not allowed" : "No se permite compartir de nuevo",
"Share to {name}" : "Compartir a {name}",
"Link" : "Enlace",
+ "Hide download" : "Esconder descarga",
+ "Password protection enforced" : "Protección con contraseña forzada",
"Password protect" : "Protección con contraseña",
"Allow editing" : "Permitir edición",
"Email link to person" : "Enviar enlace por correo electrónico a una persona",
@@ -171,12 +175,18 @@
"Allow upload and editing" : "Permitir la subida y la edición",
"Read only" : "Solo lectura",
"File drop (upload only)" : "Entrega de archivos (solo subida)",
+ "Expiration date enforced" : "Fecha de expiración forzada",
"Set expiration date" : "Establecer fecha de caducidad",
"Expiration" : "Caduca el: ",
"Expiration date" : "Fecha de caducidad",
"Note to recipient" : "Nota al destinatario",
"Unshare" : "Dejar de compartir",
+ "Delete share link" : "Eliminar enlace compartido",
+ "Add another link" : "Añadir otro enlace",
+ "Password protection for links is mandatory" : "La protección con contraseña es obligatoria",
"Share link" : "Compartir enlace",
+ "New share link" : "Nuevo enlace compartido",
+ "Password protect by Talk" : "Protegido con contraseña por Talk",
"Could not unshare" : "No se puede quitar el comparto",
"Shared with you and the group {group} by {owner}" : "Compartido contigo y el grupo {group} por {owner}",
"Shared with you and {circle} by {owner}" : "Compartido contigo y {circle} por {owner}",
@@ -195,7 +205,6 @@
"Can create" : "Puede crear",
"Can change" : "Puede cambiar",
"Can delete" : "Puede eliminar",
- "Password protect by Talk" : "Protegido con contraseña por Talk",
"Access control" : "Control de acceso",
"{shareInitiatorDisplayName} shared via link" : "{shareInitiatorDisplayName} compartido por medio de un link",
"Error while sharing" : "Error al compartir",
@@ -208,6 +217,8 @@
"An error occurred. Please try again" : "Ha ocurrido un error. Por favor inténtelo de nuevo",
"{sharee} (remote group)" : "{sharee} (grupo remoto)",
"{sharee} ({type}, {owner})" : "{sharee} ({type}, {owner})",
+ "Home" : "Inicio",
+ "Other" : "Otro",
"Share" : "Compartir",
"Name or email address..." : "Nombre o dirección de correo electrónico...",
"Name or federated cloud ID..." : "Nombre o ID de nube federada...",
@@ -293,6 +304,7 @@
"Skip to main content" : "Saltar al contenido principal",
"Skip to navigation of app" : "Saltar a la navegación de la app",
"More apps" : "Más aplicaciones",
+ "More" : "Más",
"More apps menu" : "Menú de otras apps",
"Search" : "Buscar",
"Reset search" : "Resetear búsqueda",
@@ -407,7 +419,6 @@
"Back to log in" : "Volver al registro",
"You are about to grant %s access to your %s account." : "Estás a punto de conceder a %s acceso a tu cuenta de %s",
"Depending on your configuration, this button could also work to trust the domain:" : "Dependiendo de tu configuración, este botón también podría servir para confiar en el dominio:",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "Esperando a que termine el cron (se vuelve a comprobar en 5 segundos)",
"Copy URL" : "Copiar URL",
"Enable" : "Habilitar",
"{sharee} (conversation)" : "{sharee} (conversación)",
diff --git a/core/l10n/fi.js b/core/l10n/fi.js
index 375b53dd3f8..c26b742721e 100644
--- a/core/l10n/fi.js
+++ b/core/l10n/fi.js
@@ -359,7 +359,6 @@ OC.L10N.register(
"Back to log in" : "Palaa kirjautumiseen",
"You are about to grant %s access to your %s account." : "Olet antamassa lupaa laitteelle %s päästä sinun %s tilille.",
"Depending on your configuration, this button could also work to trust the domain:" : "Asetuksista riippuen, ylläpitäjänä saatat pystyä alla olevalla painikkeella lisäämään tämän verkkotunnuksen luotetuksi.",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "Odotetaan cronin valmistuvan (tarkista uudelleen 5 sekunnin päästä) …",
"Copy URL" : "Kopioi osoite",
"Enable" : "Ota käyttöön"
},
diff --git a/core/l10n/fi.json b/core/l10n/fi.json
index eb879ddbddc..a8e48345f4b 100644
--- a/core/l10n/fi.json
+++ b/core/l10n/fi.json
@@ -357,7 +357,6 @@
"Back to log in" : "Palaa kirjautumiseen",
"You are about to grant %s access to your %s account." : "Olet antamassa lupaa laitteelle %s päästä sinun %s tilille.",
"Depending on your configuration, this button could also work to trust the domain:" : "Asetuksista riippuen, ylläpitäjänä saatat pystyä alla olevalla painikkeella lisäämään tämän verkkotunnuksen luotetuksi.",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "Odotetaan cronin valmistuvan (tarkista uudelleen 5 sekunnin päästä) …",
"Copy URL" : "Kopioi osoite",
"Enable" : "Ota käyttöön"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
diff --git a/core/l10n/fr.js b/core/l10n/fr.js
index fa1a68d2b2a..0378c04f7aa 100644
--- a/core/l10n/fr.js
+++ b/core/l10n/fr.js
@@ -163,6 +163,7 @@ OC.L10N.register(
"Not supported!" : "Non supporté!",
"Press ⌘-C to copy." : "Appuyez sur ⌘-C pour copier.",
"Press Ctrl-C to copy." : "Appuyez sur Ctrl-C pour copier.",
+ "Unable to create a link share" : "Impossible de créer un lien de partage",
"Resharing is not allowed" : "Le repartage n'est pas autorisé",
"Share to {name}" : "Partager avec {name}",
"Link" : "Lien",
@@ -178,7 +179,11 @@ OC.L10N.register(
"Expiration date" : "Date d'expiration",
"Note to recipient" : "Note au destinataire",
"Unshare" : "Ne plus partager",
+ "Delete share link" : "Supprimer le lien de partage",
+ "Add another link" : "Ajouter un autre lien",
"Share link" : "Partager par lien public",
+ "New share link" : "Nouveau lien de partage",
+ "Password protect by Talk" : "Mot de passe protégé par Talk",
"Could not unshare" : "Impossible d'arrêter de partager",
"Shared with you and the group {group} by {owner}" : "Partagé avec vous et le groupe {group} par {owner}",
"Shared with you and {circle} by {owner}" : "Partagé avec vous et {circle} par {owner}",
@@ -197,7 +202,6 @@ OC.L10N.register(
"Can create" : "Peut créer",
"Can change" : "Peut modifier",
"Can delete" : "Peut supprimer",
- "Password protect by Talk" : "Mot de passe protégé par Talk",
"Access control" : "Contrôle d'accès",
"{shareInitiatorDisplayName} shared via link" : "{shareInitiatorDisplayName} a partagé via un lien",
"Error while sharing" : "Erreur lors de la mise en partage",
@@ -210,6 +214,7 @@ OC.L10N.register(
"An error occurred. Please try again" : "Une erreur est survenue. Merci de réessayer",
"{sharee} (remote group)" : "{sharee} (groupe distant)",
"{sharee} ({type}, {owner})" : "{sharee} ({type}, {owner})",
+ "Other" : "Divers",
"Share" : "Partager",
"Name or email address..." : "Nom ou adresse mail...",
"Name or federated cloud ID..." : "Nom ou ID du cloud fédéré...",
@@ -295,6 +300,7 @@ OC.L10N.register(
"Skip to main content" : "Passer au contenu principal",
"Skip to navigation of app" : "Passer à la navigation d'application",
"More apps" : "Plus d'applications",
+ "More" : "Plus",
"More apps menu" : "Menu des autres applications",
"Search" : "Rechercher",
"Reset search" : "Réinitialiser la recherche",
@@ -409,7 +415,6 @@ OC.L10N.register(
"Back to log in" : "Retour à la page de connexion",
"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\".",
"Depending on your configuration, this button could also work to trust the domain:" : "En fonction de votre configuration, ce bouton peut aussi fonctionner pour approuver ce domaine :",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "En attente que la tâche cron se termine (vérification dans 5 secondes)...",
"Copy URL" : "Copier l'adresse URL",
"Enable" : "Activer",
"{sharee} (conversation)" : "{sharee} (discussion)",
diff --git a/core/l10n/fr.json b/core/l10n/fr.json
index f77c64466a9..78052b136e8 100644
--- a/core/l10n/fr.json
+++ b/core/l10n/fr.json
@@ -161,6 +161,7 @@
"Not supported!" : "Non supporté!",
"Press ⌘-C to copy." : "Appuyez sur ⌘-C pour copier.",
"Press Ctrl-C to copy." : "Appuyez sur Ctrl-C pour copier.",
+ "Unable to create a link share" : "Impossible de créer un lien de partage",
"Resharing is not allowed" : "Le repartage n'est pas autorisé",
"Share to {name}" : "Partager avec {name}",
"Link" : "Lien",
@@ -176,7 +177,11 @@
"Expiration date" : "Date d'expiration",
"Note to recipient" : "Note au destinataire",
"Unshare" : "Ne plus partager",
+ "Delete share link" : "Supprimer le lien de partage",
+ "Add another link" : "Ajouter un autre lien",
"Share link" : "Partager par lien public",
+ "New share link" : "Nouveau lien de partage",
+ "Password protect by Talk" : "Mot de passe protégé par Talk",
"Could not unshare" : "Impossible d'arrêter de partager",
"Shared with you and the group {group} by {owner}" : "Partagé avec vous et le groupe {group} par {owner}",
"Shared with you and {circle} by {owner}" : "Partagé avec vous et {circle} par {owner}",
@@ -195,7 +200,6 @@
"Can create" : "Peut créer",
"Can change" : "Peut modifier",
"Can delete" : "Peut supprimer",
- "Password protect by Talk" : "Mot de passe protégé par Talk",
"Access control" : "Contrôle d'accès",
"{shareInitiatorDisplayName} shared via link" : "{shareInitiatorDisplayName} a partagé via un lien",
"Error while sharing" : "Erreur lors de la mise en partage",
@@ -208,6 +212,7 @@
"An error occurred. Please try again" : "Une erreur est survenue. Merci de réessayer",
"{sharee} (remote group)" : "{sharee} (groupe distant)",
"{sharee} ({type}, {owner})" : "{sharee} ({type}, {owner})",
+ "Other" : "Divers",
"Share" : "Partager",
"Name or email address..." : "Nom ou adresse mail...",
"Name or federated cloud ID..." : "Nom ou ID du cloud fédéré...",
@@ -293,6 +298,7 @@
"Skip to main content" : "Passer au contenu principal",
"Skip to navigation of app" : "Passer à la navigation d'application",
"More apps" : "Plus d'applications",
+ "More" : "Plus",
"More apps menu" : "Menu des autres applications",
"Search" : "Rechercher",
"Reset search" : "Réinitialiser la recherche",
@@ -407,7 +413,6 @@
"Back to log in" : "Retour à la page de connexion",
"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\".",
"Depending on your configuration, this button could also work to trust the domain:" : "En fonction de votre configuration, ce bouton peut aussi fonctionner pour approuver ce domaine :",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "En attente que la tâche cron se termine (vérification dans 5 secondes)...",
"Copy URL" : "Copier l'adresse URL",
"Enable" : "Activer",
"{sharee} (conversation)" : "{sharee} (discussion)",
diff --git a/core/l10n/he.js b/core/l10n/he.js
index 1177e25b12d..5370a4c00d1 100644
--- a/core/l10n/he.js
+++ b/core/l10n/he.js
@@ -171,6 +171,7 @@ OC.L10N.register(
"Expiration date" : "תאריך התפוגה",
"Unshare" : "הסר שיתוף",
"Share link" : "קישור לשיתוף",
+ "Password protect by Talk" : "הגנה בססמה על ידי Talk",
"Could not unshare" : "לא ניתן לבטל שיתוף",
"Shared with you and the group {group} by {owner}" : "שותף אתך ועם הקבוצה {group} שבבעלות {owner}",
"Shared with you by {owner}" : "שותף אתך על ידי {owner}",
@@ -186,7 +187,6 @@ OC.L10N.register(
"Can create" : "ניתן ליצור",
"Can change" : "ניתן לשנות",
"Can delete" : "ניתן למחוק",
- "Password protect by Talk" : "הגנה בססמה על ידי Talk",
"Access control" : "בקרת גישה",
"Error while sharing" : "שגיאה במהלך השיתוף",
"Share details could not be loaded for this item." : "לא ניתן היה לטעון מידע שיתוף לפריט זה",
@@ -386,7 +386,6 @@ OC.L10N.register(
"Back to log in" : "חזרה לכניסה",
"You are about to grant %s access to your %s account." : "פעולה זו תעניק הרשאת %s לחשבון שלך ב־%s.",
"Depending on your configuration, this button could also work to trust the domain:" : "בהתאם לתצורה שלך, הכפתור הזה יכול לעבוד גם כדי לתת אמון בשם המתחם:",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "בהמתנה לסיום משימת ה־cron (תתבצע בדיקה עוד 5 שניות)…",
"Enable" : "הפעלה",
"{sharee} (conversation)" : "{sharee} (דיון)",
"Please log in before granting %s access to your %s account." : "נא להיכנס בטרם מתן הרשאת %s לחשבון שלך ב־%s.",
diff --git a/core/l10n/he.json b/core/l10n/he.json
index fa83e22e3f0..983ddbd2630 100644
--- a/core/l10n/he.json
+++ b/core/l10n/he.json
@@ -169,6 +169,7 @@
"Expiration date" : "תאריך התפוגה",
"Unshare" : "הסר שיתוף",
"Share link" : "קישור לשיתוף",
+ "Password protect by Talk" : "הגנה בססמה על ידי Talk",
"Could not unshare" : "לא ניתן לבטל שיתוף",
"Shared with you and the group {group} by {owner}" : "שותף אתך ועם הקבוצה {group} שבבעלות {owner}",
"Shared with you by {owner}" : "שותף אתך על ידי {owner}",
@@ -184,7 +185,6 @@
"Can create" : "ניתן ליצור",
"Can change" : "ניתן לשנות",
"Can delete" : "ניתן למחוק",
- "Password protect by Talk" : "הגנה בססמה על ידי Talk",
"Access control" : "בקרת גישה",
"Error while sharing" : "שגיאה במהלך השיתוף",
"Share details could not be loaded for this item." : "לא ניתן היה לטעון מידע שיתוף לפריט זה",
@@ -384,7 +384,6 @@
"Back to log in" : "חזרה לכניסה",
"You are about to grant %s access to your %s account." : "פעולה זו תעניק הרשאת %s לחשבון שלך ב־%s.",
"Depending on your configuration, this button could also work to trust the domain:" : "בהתאם לתצורה שלך, הכפתור הזה יכול לעבוד גם כדי לתת אמון בשם המתחם:",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "בהמתנה לסיום משימת ה־cron (תתבצע בדיקה עוד 5 שניות)…",
"Enable" : "הפעלה",
"{sharee} (conversation)" : "{sharee} (דיון)",
"Please log in before granting %s access to your %s account." : "נא להיכנס בטרם מתן הרשאת %s לחשבון שלך ב־%s.",
diff --git a/core/l10n/hr.js b/core/l10n/hr.js
index 8ae26fa3872..d9fe5d40530 100644
--- a/core/l10n/hr.js
+++ b/core/l10n/hr.js
@@ -272,7 +272,6 @@ OC.L10N.register(
"Thank you for your patience." : "Hvala vam na strpljenju",
"Back to log in" : "Natrag na prijavu",
"You are about to grant %s access to your %s account." : "Ovim će te dopustiti %s pristup vašem %s računu.",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "Čekanje cron funkcije da završi (ponovna provjera za 5 sekundi) ...",
"Please log in before granting %s access to your %s account." : "Prijavite se prije nego dopustite %s pristup vašem %s računu.",
"Further information how to configure this can be found in the %sdocumentation%s." : "Daljnje informacije o konfiguraciji se mogu naći u %spriloženoj dokumentaciji%s."
},
diff --git a/core/l10n/hr.json b/core/l10n/hr.json
index 01dfda8c27b..2d15793dfe8 100644
--- a/core/l10n/hr.json
+++ b/core/l10n/hr.json
@@ -270,7 +270,6 @@
"Thank you for your patience." : "Hvala vam na strpljenju",
"Back to log in" : "Natrag na prijavu",
"You are about to grant %s access to your %s account." : "Ovim će te dopustiti %s pristup vašem %s računu.",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "Čekanje cron funkcije da završi (ponovna provjera za 5 sekundi) ...",
"Please log in before granting %s access to your %s account." : "Prijavite se prije nego dopustite %s pristup vašem %s računu.",
"Further information how to configure this can be found in the %sdocumentation%s." : "Daljnje informacije o konfiguraciji se mogu naći u %spriloženoj dokumentaciji%s."
},"pluralForm" :"nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;"
diff --git a/core/l10n/hu.js b/core/l10n/hu.js
index eac4d1418e3..2e6a9e93e06 100644
--- a/core/l10n/hu.js
+++ b/core/l10n/hu.js
@@ -379,7 +379,6 @@ OC.L10N.register(
"Back to log in" : "Vissza a bejelentkezéshez",
"You are about to grant %s access to your %s account." : "Hozzáférést készülsz biztosítani neki: %s ehhez a fiókodhoz: %s.",
"Depending on your configuration, this button could also work to trust the domain:" : "Beállításoktól függően ez a gomb is működhet a domain megbízhatóvá tételében:",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "Várakozás az ütemezőre, hogy befejezze a műveletet (újra próbálkozás 5 másodperc múlva)...",
"Please log in before granting %s access to your %s account." : "Kérlek lépj be mielőtt %s hozzáférést biztosítasz a %s fiókodhoz.",
"Further information how to configure this can be found in the %sdocumentation%s." : "Ennek a beállításához további infomációkat talál a %sleírásban %s."
},
diff --git a/core/l10n/hu.json b/core/l10n/hu.json
index 5003c8a9111..91cf6ada765 100644
--- a/core/l10n/hu.json
+++ b/core/l10n/hu.json
@@ -377,7 +377,6 @@
"Back to log in" : "Vissza a bejelentkezéshez",
"You are about to grant %s access to your %s account." : "Hozzáférést készülsz biztosítani neki: %s ehhez a fiókodhoz: %s.",
"Depending on your configuration, this button could also work to trust the domain:" : "Beállításoktól függően ez a gomb is működhet a domain megbízhatóvá tételében:",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "Várakozás az ütemezőre, hogy befejezze a műveletet (újra próbálkozás 5 másodperc múlva)...",
"Please log in before granting %s access to your %s account." : "Kérlek lépj be mielőtt %s hozzáférést biztosítasz a %s fiókodhoz.",
"Further information how to configure this can be found in the %sdocumentation%s." : "Ennek a beállításához további infomációkat talál a %sleírásban %s."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
diff --git a/core/l10n/is.js b/core/l10n/is.js
index 7f06ee151e8..3164cdc881c 100644
--- a/core/l10n/is.js
+++ b/core/l10n/is.js
@@ -174,6 +174,7 @@ OC.L10N.register(
"Note to recipient" : "Minnispunktur til viðtakanda",
"Unshare" : "Hætta deilingu",
"Share link" : "Deila tengli",
+ "Password protect by Talk" : "Verja með lykilorði í gegnum Talk",
"Could not unshare" : "Gat ekki hætt deilingu",
"Shared with you and the group {group} by {owner}" : "Deilt með þér og hópnum {group} af {owner}",
"Shared with you and {circle} by {owner}" : "Deilt með þér og {circle} af {owner}",
@@ -191,7 +192,6 @@ OC.L10N.register(
"Can create" : "Getur búið til",
"Can change" : "Getur skipt um",
"Can delete" : "Getur eytt",
- "Password protect by Talk" : "Verja með lykilorði í gegnum Talk",
"Access control" : "Aðgangsstýring",
"{shareInitiatorDisplayName} shared via link" : "{shareInitiatorDisplayName} deildi með tengli",
"Error while sharing" : "Villa við deilingu",
@@ -399,7 +399,6 @@ OC.L10N.register(
"Back to log in" : "Til baka í innskráningu",
"You are about to grant %s access to your %s account." : "Þú ert að fara að leyfa %s aðgang að %s notandaaðgangnum þínum.",
"Depending on your configuration, this button could also work to trust the domain:" : "Það fer eftir stillingunum þínum, þessi hnappur gæti einnig virkað til að treysta þessu léni.",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "Bíð þess að cron ljúki vinnslu (athugaðu aftur eftir 5 sekúndur) …",
"Copy URL" : "Afrita slóð",
"Enable" : "Virkja",
"{sharee} (conversation)" : "{sharee} (samtal)",
diff --git a/core/l10n/is.json b/core/l10n/is.json
index 423f7c9250d..53cafdd0f3d 100644
--- a/core/l10n/is.json
+++ b/core/l10n/is.json
@@ -172,6 +172,7 @@
"Note to recipient" : "Minnispunktur til viðtakanda",
"Unshare" : "Hætta deilingu",
"Share link" : "Deila tengli",
+ "Password protect by Talk" : "Verja með lykilorði í gegnum Talk",
"Could not unshare" : "Gat ekki hætt deilingu",
"Shared with you and the group {group} by {owner}" : "Deilt með þér og hópnum {group} af {owner}",
"Shared with you and {circle} by {owner}" : "Deilt með þér og {circle} af {owner}",
@@ -189,7 +190,6 @@
"Can create" : "Getur búið til",
"Can change" : "Getur skipt um",
"Can delete" : "Getur eytt",
- "Password protect by Talk" : "Verja með lykilorði í gegnum Talk",
"Access control" : "Aðgangsstýring",
"{shareInitiatorDisplayName} shared via link" : "{shareInitiatorDisplayName} deildi með tengli",
"Error while sharing" : "Villa við deilingu",
@@ -397,7 +397,6 @@
"Back to log in" : "Til baka í innskráningu",
"You are about to grant %s access to your %s account." : "Þú ert að fara að leyfa %s aðgang að %s notandaaðgangnum þínum.",
"Depending on your configuration, this button could also work to trust the domain:" : "Það fer eftir stillingunum þínum, þessi hnappur gæti einnig virkað til að treysta þessu léni.",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "Bíð þess að cron ljúki vinnslu (athugaðu aftur eftir 5 sekúndur) …",
"Copy URL" : "Afrita slóð",
"Enable" : "Virkja",
"{sharee} (conversation)" : "{sharee} (samtal)",
diff --git a/core/l10n/it.js b/core/l10n/it.js
index 5f118785f1b..806072518f8 100644
--- a/core/l10n/it.js
+++ b/core/l10n/it.js
@@ -163,10 +163,13 @@ OC.L10N.register(
"Not supported!" : "Non supportato!",
"Press ⌘-C to copy." : "Premi ⌘-C per copiare.",
"Press Ctrl-C to copy." : "Premi Ctrl-C per copiare.",
+ "Unable to create a link share" : "Impossibile creare un collegamento di condivisione",
+ "Unable to toggle this option" : "Impossibile attivare questa opzione",
"Resharing is not allowed" : "La ri-condivisione non è consentita",
"Share to {name}" : "Condividi con {name}",
"Link" : "Collegamento",
"Hide download" : "Nascondi scaricamento",
+ "Password protection enforced" : "Protezione con password applicata",
"Password protect" : "Proteggi con password",
"Allow editing" : "Consenti la modifica",
"Email link to person" : "Invia collegamento via email",
@@ -174,12 +177,18 @@ OC.L10N.register(
"Allow upload and editing" : "Consenti il caricamento e la modifica",
"Read only" : "Sola lettura",
"File drop (upload only)" : "Rilascia file (solo caricamento)",
+ "Expiration date enforced" : "Data di scadenza applicata",
"Set expiration date" : "Imposta data di scadenza",
"Expiration" : "Scadenza",
"Expiration date" : "Data di scadenza",
"Note to recipient" : "Nota per destinatario",
"Unshare" : "Rimuovi condivisione",
+ "Delete share link" : "Elimina collegamento di condivisione",
+ "Add another link" : "Aggiungi un altro collegamento",
+ "Password protection for links is mandatory" : "La protezione con password è obbligatoria per i collegamenti",
"Share link" : "Condividi collegamento",
+ "New share link" : "Nuovo collegamento di condivisione",
+ "Password protect by Talk" : "Protezione con password di Talk",
"Could not unshare" : "Impossibile rimuovere la condivisione",
"Shared with you and the group {group} by {owner}" : "Condiviso con te e con il gruppo {group} da {owner}",
"Shared with you and {circle} by {owner}" : "Condiviso con te e {circle} da {owner}",
@@ -198,7 +207,6 @@ OC.L10N.register(
"Can create" : "Può creare",
"Can change" : "Può cambiare",
"Can delete" : "Può eliminare",
- "Password protect by Talk" : "Protezione con password di Talk",
"Access control" : "Controllo d'accesso",
"{shareInitiatorDisplayName} shared via link" : "{shareInitiatorDisplayName} ha condiviso tramite collegamento",
"Error while sharing" : "Errore durante la condivisione",
@@ -413,7 +421,6 @@ OC.L10N.register(
"Back to log in" : "Torna alla schermata di accesso",
"You are about to grant %s access to your %s account." : "Stai per accordare a \"%s\" l'accesso al tuo account %s.",
"Depending on your configuration, this button could also work to trust the domain:" : "In base alla tua configurazione, questo pulsante può funzionare anche per rendere attendibile il dominio:",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "In attesa che cron finisca (nuovo controllo tra 5 secondi)…",
"Copy URL" : "Copia URL",
"Enable" : "Abilita",
"{sharee} (conversation)" : "{sharee} (conversation)",
diff --git a/core/l10n/it.json b/core/l10n/it.json
index 743a3be5dd5..a053f44b06e 100644
--- a/core/l10n/it.json
+++ b/core/l10n/it.json
@@ -161,10 +161,13 @@
"Not supported!" : "Non supportato!",
"Press ⌘-C to copy." : "Premi ⌘-C per copiare.",
"Press Ctrl-C to copy." : "Premi Ctrl-C per copiare.",
+ "Unable to create a link share" : "Impossibile creare un collegamento di condivisione",
+ "Unable to toggle this option" : "Impossibile attivare questa opzione",
"Resharing is not allowed" : "La ri-condivisione non è consentita",
"Share to {name}" : "Condividi con {name}",
"Link" : "Collegamento",
"Hide download" : "Nascondi scaricamento",
+ "Password protection enforced" : "Protezione con password applicata",
"Password protect" : "Proteggi con password",
"Allow editing" : "Consenti la modifica",
"Email link to person" : "Invia collegamento via email",
@@ -172,12 +175,18 @@
"Allow upload and editing" : "Consenti il caricamento e la modifica",
"Read only" : "Sola lettura",
"File drop (upload only)" : "Rilascia file (solo caricamento)",
+ "Expiration date enforced" : "Data di scadenza applicata",
"Set expiration date" : "Imposta data di scadenza",
"Expiration" : "Scadenza",
"Expiration date" : "Data di scadenza",
"Note to recipient" : "Nota per destinatario",
"Unshare" : "Rimuovi condivisione",
+ "Delete share link" : "Elimina collegamento di condivisione",
+ "Add another link" : "Aggiungi un altro collegamento",
+ "Password protection for links is mandatory" : "La protezione con password è obbligatoria per i collegamenti",
"Share link" : "Condividi collegamento",
+ "New share link" : "Nuovo collegamento di condivisione",
+ "Password protect by Talk" : "Protezione con password di Talk",
"Could not unshare" : "Impossibile rimuovere la condivisione",
"Shared with you and the group {group} by {owner}" : "Condiviso con te e con il gruppo {group} da {owner}",
"Shared with you and {circle} by {owner}" : "Condiviso con te e {circle} da {owner}",
@@ -196,7 +205,6 @@
"Can create" : "Può creare",
"Can change" : "Può cambiare",
"Can delete" : "Può eliminare",
- "Password protect by Talk" : "Protezione con password di Talk",
"Access control" : "Controllo d'accesso",
"{shareInitiatorDisplayName} shared via link" : "{shareInitiatorDisplayName} ha condiviso tramite collegamento",
"Error while sharing" : "Errore durante la condivisione",
@@ -411,7 +419,6 @@
"Back to log in" : "Torna alla schermata di accesso",
"You are about to grant %s access to your %s account." : "Stai per accordare a \"%s\" l'accesso al tuo account %s.",
"Depending on your configuration, this button could also work to trust the domain:" : "In base alla tua configurazione, questo pulsante può funzionare anche per rendere attendibile il dominio:",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "In attesa che cron finisca (nuovo controllo tra 5 secondi)…",
"Copy URL" : "Copia URL",
"Enable" : "Abilita",
"{sharee} (conversation)" : "{sharee} (conversation)",
diff --git a/core/l10n/ja.js b/core/l10n/ja.js
index 4846686d5b3..cd65ed21618 100644
--- a/core/l10n/ja.js
+++ b/core/l10n/ja.js
@@ -103,6 +103,7 @@ OC.L10N.register(
"Pending" : "保留中",
"Copy to {folder}" : "{folder}へコピー",
"Move to {folder}" : "{folder}へ移動",
+ "View changelog" : "変更履歴を確認する",
"Very weak password" : "非常に弱いパスワード",
"Weak password" : "弱いパスワード",
"So-so password" : "まずまずのパスワード",
@@ -297,6 +298,7 @@ OC.L10N.register(
"Thank you for your patience." : "しばらくお待ちください。",
"The \"Strict-Transport-Security\" HTTP header is not set to at least \"{seconds}\" seconds. For enhanced security, it is recommended to enable HSTS as described in the <a href=\"{docUrl}\" rel=\"noreferrer noopener\">security tips</a>." : "\"Strict-Transport-Security\" HTTPヘッダが、最低でも \"{seconds}\" 秒に設定されていません。セキュリティを強化するには、<a href=\"{docUrl}\" rel=\"noreferrer noopener\">セキュリティTips</a>で解説しているHSTSを有効にすることを推奨します。",
"Accessing site insecurely via HTTP. You are strongly adviced to set up your server to require HTTPS instead, as described in the <a href=\"{docUrl}\">security tips</a>." : "セキュアではないHTTP経由でアクセスしています。<a href=\"{docUrl}\">セキュリティTips</a>で述べているように、代わりにHTTPSを必要とするようサーバーを設定することを強くおすすめします。",
- "You are about to grant %s access to your %s account." : "%s アカウントに あなたのアカウント %s へのアクセスを許可"
+ "You are about to grant %s access to your %s account." : "%s アカウントに あなたのアカウント %s へのアクセスを許可",
+ "Copy URL" : "URL をコピー"
},
"nplurals=1; plural=0;");
diff --git a/core/l10n/ja.json b/core/l10n/ja.json
index 75e65c805c7..6c18c265c0a 100644
--- a/core/l10n/ja.json
+++ b/core/l10n/ja.json
@@ -101,6 +101,7 @@
"Pending" : "保留中",
"Copy to {folder}" : "{folder}へコピー",
"Move to {folder}" : "{folder}へ移動",
+ "View changelog" : "変更履歴を確認する",
"Very weak password" : "非常に弱いパスワード",
"Weak password" : "弱いパスワード",
"So-so password" : "まずまずのパスワード",
@@ -295,6 +296,7 @@
"Thank you for your patience." : "しばらくお待ちください。",
"The \"Strict-Transport-Security\" HTTP header is not set to at least \"{seconds}\" seconds. For enhanced security, it is recommended to enable HSTS as described in the <a href=\"{docUrl}\" rel=\"noreferrer noopener\">security tips</a>." : "\"Strict-Transport-Security\" HTTPヘッダが、最低でも \"{seconds}\" 秒に設定されていません。セキュリティを強化するには、<a href=\"{docUrl}\" rel=\"noreferrer noopener\">セキュリティTips</a>で解説しているHSTSを有効にすることを推奨します。",
"Accessing site insecurely via HTTP. You are strongly adviced to set up your server to require HTTPS instead, as described in the <a href=\"{docUrl}\">security tips</a>." : "セキュアではないHTTP経由でアクセスしています。<a href=\"{docUrl}\">セキュリティTips</a>で述べているように、代わりにHTTPSを必要とするようサーバーを設定することを強くおすすめします。",
- "You are about to grant %s access to your %s account." : "%s アカウントに あなたのアカウント %s へのアクセスを許可"
+ "You are about to grant %s access to your %s account." : "%s アカウントに あなたのアカウント %s へのアクセスを許可",
+ "Copy URL" : "URL をコピー"
},"pluralForm" :"nplurals=1; plural=0;"
} \ No newline at end of file
diff --git a/core/l10n/ko.js b/core/l10n/ko.js
index c8a71bf7671..65c534aae28 100644
--- a/core/l10n/ko.js
+++ b/core/l10n/ko.js
@@ -359,7 +359,6 @@ OC.L10N.register(
"Accessing site insecurely via HTTP. You are strongly adviced to set up your server to require HTTPS instead, as described in the <a href=\"{docUrl}\">security tips</a>." : "사이트에 HTTP를 통해서 보안 없이 접근하고 있습니다. <a href=\"{docUrl}\">보안 팁</a>에서 제안하는 것처럼 HTTPS를 설정하는 것을 추천합니다.",
"Back to log in" : "로그인으로 돌아가기",
"You are about to grant %s access to your %s account." : "\"%s\"에 접근하기 위해서 %s 계정을 사용하려고 합니다.",
- "Depending on your configuration, this button could also work to trust the domain:" : "설정에 따라 아래 단추는 도메인 신뢰를 추가하는 데 사용할 수 있습니다:",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "Cron이 끝날때까지 기다리는중(5초후에 다시 확인)..."
+ "Depending on your configuration, this button could also work to trust the domain:" : "설정에 따라 아래 단추는 도메인 신뢰를 추가하는 데 사용할 수 있습니다:"
},
"nplurals=1; plural=0;");
diff --git a/core/l10n/ko.json b/core/l10n/ko.json
index 5d6ee25addb..a1794a00cd8 100644
--- a/core/l10n/ko.json
+++ b/core/l10n/ko.json
@@ -357,7 +357,6 @@
"Accessing site insecurely via HTTP. You are strongly adviced to set up your server to require HTTPS instead, as described in the <a href=\"{docUrl}\">security tips</a>." : "사이트에 HTTP를 통해서 보안 없이 접근하고 있습니다. <a href=\"{docUrl}\">보안 팁</a>에서 제안하는 것처럼 HTTPS를 설정하는 것을 추천합니다.",
"Back to log in" : "로그인으로 돌아가기",
"You are about to grant %s access to your %s account." : "\"%s\"에 접근하기 위해서 %s 계정을 사용하려고 합니다.",
- "Depending on your configuration, this button could also work to trust the domain:" : "설정에 따라 아래 단추는 도메인 신뢰를 추가하는 데 사용할 수 있습니다:",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "Cron이 끝날때까지 기다리는중(5초후에 다시 확인)..."
+ "Depending on your configuration, this button could also work to trust the domain:" : "설정에 따라 아래 단추는 도메인 신뢰를 추가하는 데 사용할 수 있습니다:"
},"pluralForm" :"nplurals=1; plural=0;"
} \ No newline at end of file
diff --git a/core/l10n/lt_LT.js b/core/l10n/lt_LT.js
index 6f6f4e23f3d..28ef1045bb3 100644
--- a/core/l10n/lt_LT.js
+++ b/core/l10n/lt_LT.js
@@ -111,7 +111,7 @@ OC.L10N.register(
"Your web server is not yet properly set up to allow file synchronization, because the WebDAV interface seems to be broken." : "Jūsų svetainės serveris nėra tinkamai sukonfiguruotas, Failų sinchronizavimas negalimas, nes neveikia WebDAV interfeisas.",
"Your web server is not properly set up to resolve \"{url}\". Further information can be found in the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation</a>." : "Jūsų svetainės serveris nėra sukonfiguruotas atpažinti \"{url}\". Daugiau informacijos rasite <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">dokumentacijoje</a>.",
"Error occurred while checking server setup" : "Tikrinant serverio sąranką, įvyko klaida",
- "Shared" : "Dalinamasi",
+ "Shared" : "Bendrinama",
"Shared with" : "Pasidalinta su",
"Shared by" : "Dalinasi",
"Choose a password for the public link" : "Pasirinkite slaptažodį, skirtą nuorodai atidaryti",
@@ -134,8 +134,7 @@ OC.L10N.register(
"Expiration" : "Veikimo pabaiga",
"Expiration date" : "Veikimo pabaigos data",
"Unshare" : "Nebesidalinti",
- "Share link" : "Dalintis nuoroda",
- "Could not unshare" : "Negalima nustoti dalintis",
+ "Could not unshare" : "Nepavyko nustoti bendrinti",
"Shared with you and the group {group} by {owner}" : "{owner} pasidalino su Jumis ir {group} grupe",
"Shared with you by {owner}" : "{owner} pasidalino su Jumis ",
"Choose a password for the mail share" : "Pasirinkite slaptažodį pasidalinimui per elektroninį paštą",
@@ -163,7 +162,7 @@ OC.L10N.register(
"Name, federated cloud ID or email address..." : "Vardas, NextCloud tinklo kompiuterio ID arba elektroninio pašto adresas...",
"Name..." : "Vardas...",
"Error" : "Klaida",
- "Error removing share" : "Klaida bandant sustabdyti dalinimąsi",
+ "Error removing share" : "Klaida šalinant viešinį",
"Non-existing tag #{tag}" : "Neegzistuojanti žymė #{tag}",
"restricted" : "apribota",
"invisible" : "nematoma",
diff --git a/core/l10n/lt_LT.json b/core/l10n/lt_LT.json
index f13a21ff580..1d764f63143 100644
--- a/core/l10n/lt_LT.json
+++ b/core/l10n/lt_LT.json
@@ -109,7 +109,7 @@
"Your web server is not yet properly set up to allow file synchronization, because the WebDAV interface seems to be broken." : "Jūsų svetainės serveris nėra tinkamai sukonfiguruotas, Failų sinchronizavimas negalimas, nes neveikia WebDAV interfeisas.",
"Your web server is not properly set up to resolve \"{url}\". Further information can be found in the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation</a>." : "Jūsų svetainės serveris nėra sukonfiguruotas atpažinti \"{url}\". Daugiau informacijos rasite <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">dokumentacijoje</a>.",
"Error occurred while checking server setup" : "Tikrinant serverio sąranką, įvyko klaida",
- "Shared" : "Dalinamasi",
+ "Shared" : "Bendrinama",
"Shared with" : "Pasidalinta su",
"Shared by" : "Dalinasi",
"Choose a password for the public link" : "Pasirinkite slaptažodį, skirtą nuorodai atidaryti",
@@ -132,8 +132,7 @@
"Expiration" : "Veikimo pabaiga",
"Expiration date" : "Veikimo pabaigos data",
"Unshare" : "Nebesidalinti",
- "Share link" : "Dalintis nuoroda",
- "Could not unshare" : "Negalima nustoti dalintis",
+ "Could not unshare" : "Nepavyko nustoti bendrinti",
"Shared with you and the group {group} by {owner}" : "{owner} pasidalino su Jumis ir {group} grupe",
"Shared with you by {owner}" : "{owner} pasidalino su Jumis ",
"Choose a password for the mail share" : "Pasirinkite slaptažodį pasidalinimui per elektroninį paštą",
@@ -161,7 +160,7 @@
"Name, federated cloud ID or email address..." : "Vardas, NextCloud tinklo kompiuterio ID arba elektroninio pašto adresas...",
"Name..." : "Vardas...",
"Error" : "Klaida",
- "Error removing share" : "Klaida bandant sustabdyti dalinimąsi",
+ "Error removing share" : "Klaida šalinant viešinį",
"Non-existing tag #{tag}" : "Neegzistuojanti žymė #{tag}",
"restricted" : "apribota",
"invisible" : "nematoma",
diff --git a/core/l10n/lv.js b/core/l10n/lv.js
index 5b25f0bdfb9..de0c8198aaf 100644
--- a/core/l10n/lv.js
+++ b/core/l10n/lv.js
@@ -147,6 +147,7 @@ OC.L10N.register(
"Expiration date" : "Termiņa datums",
"Unshare" : "Pārtraukt koplietošanu",
"Share link" : "Koplietot saiti",
+ "Password protect by Talk" : "Aizsargāts ar paroli no Talk",
"Could not unshare" : "Nevarēja pārtraukt koplietošanu",
"Shared with you and the group {group} by {owner}" : "{owner} koplietoja ar jums un grupu {group}",
"Shared with you and {circle} by {owner}" : " {owner} koplietoja ar tevi un {circle}",
@@ -162,7 +163,6 @@ OC.L10N.register(
"Can create" : "Var izveidot",
"Can change" : "Var mainīt",
"Can delete" : "Var dzēst",
- "Password protect by Talk" : "Aizsargāts ar paroli no Talk",
"Access control" : "Piekļuves vadība",
"Error while sharing" : "Kļūda, daloties",
"Share details could not be loaded for this item." : "Šim nevarēja ielādēt koplietošanas detaļas.",
@@ -314,7 +314,6 @@ OC.L10N.register(
"This page will refresh itself when the %s instance is available again." : "Lapa tiks atsvaidzināta kad %s instance atkal ir pieejama.",
"Thank you for your patience." : "Paldies par jūsu pacietību.",
"Back to log in" : "Atpakaļ uz pierakstīšanos",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "Gaidām līdz cron pabeigs darbu (atkārtoti pārbaudām ik pēc 5 sekundēm) ...",
"Enable" : "Iespējot"
},
"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);");
diff --git a/core/l10n/lv.json b/core/l10n/lv.json
index 760a24e2795..7d0f6f4f4ec 100644
--- a/core/l10n/lv.json
+++ b/core/l10n/lv.json
@@ -145,6 +145,7 @@
"Expiration date" : "Termiņa datums",
"Unshare" : "Pārtraukt koplietošanu",
"Share link" : "Koplietot saiti",
+ "Password protect by Talk" : "Aizsargāts ar paroli no Talk",
"Could not unshare" : "Nevarēja pārtraukt koplietošanu",
"Shared with you and the group {group} by {owner}" : "{owner} koplietoja ar jums un grupu {group}",
"Shared with you and {circle} by {owner}" : " {owner} koplietoja ar tevi un {circle}",
@@ -160,7 +161,6 @@
"Can create" : "Var izveidot",
"Can change" : "Var mainīt",
"Can delete" : "Var dzēst",
- "Password protect by Talk" : "Aizsargāts ar paroli no Talk",
"Access control" : "Piekļuves vadība",
"Error while sharing" : "Kļūda, daloties",
"Share details could not be loaded for this item." : "Šim nevarēja ielādēt koplietošanas detaļas.",
@@ -312,7 +312,6 @@
"This page will refresh itself when the %s instance is available again." : "Lapa tiks atsvaidzināta kad %s instance atkal ir pieejama.",
"Thank you for your patience." : "Paldies par jūsu pacietību.",
"Back to log in" : "Atpakaļ uz pierakstīšanos",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "Gaidām līdz cron pabeigs darbu (atkārtoti pārbaudām ik pēc 5 sekundēm) ...",
"Enable" : "Iespējot"
},"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"
} \ No newline at end of file
diff --git a/core/l10n/nb.js b/core/l10n/nb.js
index 5a82d1ffb7a..ac5a7069436 100644
--- a/core/l10n/nb.js
+++ b/core/l10n/nb.js
@@ -179,6 +179,7 @@ OC.L10N.register(
"Note to recipient" : "Note til mottaker",
"Unshare" : "Avslutt deling",
"Share link" : "Del lenke",
+ "Password protect by Talk" : "Passord beskyttet av Talk",
"Could not unshare" : "Kunne ikke avslutte deling",
"Shared with you and the group {group} by {owner}" : "Delt med deg og gruppen {group} av {owner}",
"Shared with you and {circle} by {owner}" : "Delt med deg og {circle} av {owner}",
@@ -197,7 +198,6 @@ OC.L10N.register(
"Can create" : "Kan opprette",
"Can change" : "Kan endre",
"Can delete" : "Kan slette",
- "Password protect by Talk" : "Passord beskyttet av Talk",
"Access control" : "Tilgangskontroll",
"{shareInitiatorDisplayName} shared via link" : "{shareInitiatorDisplayName} delt via lenke",
"Error while sharing" : "Feil under deling",
@@ -409,7 +409,6 @@ OC.L10N.register(
"Back to log in" : "Tilbake til innlogging",
"You are about to grant %s access to your %s account." : "Du er i ferd med å gi %s tilgang til din %s konto.",
"Depending on your configuration, this button could also work to trust the domain:" : "Avhengig av ditt oppsett, kan denne knappen også betro domenet.",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "Venter på at cron skal bli ferdig (sjekk om 5 sekund)...",
"Copy URL" : "Kopier URL",
"Enable" : "Aktiver",
"{sharee} (conversation)" : "{sharee} (conversation)",
diff --git a/core/l10n/nb.json b/core/l10n/nb.json
index 24d21513229..f23ed4122a7 100644
--- a/core/l10n/nb.json
+++ b/core/l10n/nb.json
@@ -177,6 +177,7 @@
"Note to recipient" : "Note til mottaker",
"Unshare" : "Avslutt deling",
"Share link" : "Del lenke",
+ "Password protect by Talk" : "Passord beskyttet av Talk",
"Could not unshare" : "Kunne ikke avslutte deling",
"Shared with you and the group {group} by {owner}" : "Delt med deg og gruppen {group} av {owner}",
"Shared with you and {circle} by {owner}" : "Delt med deg og {circle} av {owner}",
@@ -195,7 +196,6 @@
"Can create" : "Kan opprette",
"Can change" : "Kan endre",
"Can delete" : "Kan slette",
- "Password protect by Talk" : "Passord beskyttet av Talk",
"Access control" : "Tilgangskontroll",
"{shareInitiatorDisplayName} shared via link" : "{shareInitiatorDisplayName} delt via lenke",
"Error while sharing" : "Feil under deling",
@@ -407,7 +407,6 @@
"Back to log in" : "Tilbake til innlogging",
"You are about to grant %s access to your %s account." : "Du er i ferd med å gi %s tilgang til din %s konto.",
"Depending on your configuration, this button could also work to trust the domain:" : "Avhengig av ditt oppsett, kan denne knappen også betro domenet.",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "Venter på at cron skal bli ferdig (sjekk om 5 sekund)...",
"Copy URL" : "Kopier URL",
"Enable" : "Aktiver",
"{sharee} (conversation)" : "{sharee} (conversation)",
diff --git a/core/l10n/nl.js b/core/l10n/nl.js
index a016b5b931f..280053215df 100644
--- a/core/l10n/nl.js
+++ b/core/l10n/nl.js
@@ -163,10 +163,13 @@ OC.L10N.register(
"Not supported!" : "Niet ondersteund!",
"Press ⌘-C to copy." : "Druk op ⌘-C om te kopiëren.",
"Press Ctrl-C to copy." : "Druk op Ctrl-C om te kopiëren.",
+ "Unable to create a link share" : "Kan deze deellink niet maken",
+ "Unable to toggle this option" : "Kan deze optie niet omschakelen",
"Resharing is not allowed" : "Verder delen is niet toegestaan",
"Share to {name}" : "Delen naar {name}",
"Link" : "Link",
"Hide download" : "Verberg download",
+ "Password protection enforced" : "Wachtwoordbeveiliging afgedwongen",
"Password protect" : "Wachtwoord beveiligd",
"Allow editing" : "Bewerken toestaan",
"Email link to person" : "Email-link naar persoon",
@@ -174,12 +177,18 @@ OC.L10N.register(
"Allow upload and editing" : "Toestaan uploaden en bewerken",
"Read only" : "Alleen lezen",
"File drop (upload only)" : "File drop (alleen uploaden)",
+ "Expiration date enforced" : "Vervaldatum afgedwongen",
"Set expiration date" : "Stel vervaldatum in",
"Expiration" : "Vervaltermijn",
"Expiration date" : "Vervaldatum",
"Note to recipient" : "Notitie voor ontvanger",
"Unshare" : "Delen stoppen",
+ "Delete share link" : "Verwijderen deellink",
+ "Add another link" : "Toevoegen andere link",
+ "Password protection for links is mandatory" : "Wachtwoordbeveiliging voor links is verplicht",
"Share link" : "Deellink",
+ "New share link" : "Nieuwe deellink",
+ "Password protect by Talk" : "Wachtwoord beveiligd door Talk",
"Could not unshare" : "Kon delen niet ongedaan maken",
"Shared with you and the group {group} by {owner}" : "Met jou en de groep {group} gedeeld door {owner}",
"Shared with you and {circle} by {owner}" : "Gedeeld met jou en {circle} door {owner}",
@@ -198,7 +207,6 @@ OC.L10N.register(
"Can create" : "Kan creëren",
"Can change" : "Kan wijzigen",
"Can delete" : "Kan verwijderen",
- "Password protect by Talk" : "Wachtwoord beveiligd door Talk",
"Access control" : "Toegangscontrole",
"{shareInitiatorDisplayName} shared via link" : "{shareInitiatorDisplayName} gedeeld via link",
"Error while sharing" : "Fout tijdens het delen",
@@ -211,6 +219,7 @@ OC.L10N.register(
"An error occurred. Please try again" : "Er trad een fout op. Probeer het opnieuw",
"{sharee} (remote group)" : "{sharee} (remote group)",
"{sharee} ({type}, {owner})" : "{sharee} ({type}, {owner})",
+ "Home" : "Startpagina",
"Other" : "Ander",
"Share" : "Delen",
"Name or email address..." : "Naam of emailadres...",
@@ -412,7 +421,6 @@ OC.L10N.register(
"Back to log in" : "Terug naar inloggen",
"You are about to grant %s access to your %s account." : "Je staat op het punt om %s toegang te verlenen to je %s account.",
"Depending on your configuration, this button could also work to trust the domain:" : "Afhankelijk van je configuratie kan deze knop ook werken om het volgende domein te vertrouwen:",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "Wachten op gereedmelding cron (over 5 seconden nieuwe check) …",
"Copy URL" : "Kopiëren URL",
"Enable" : "Inschakelen",
"{sharee} (conversation)" : "{sharee} (gesprek)",
diff --git a/core/l10n/nl.json b/core/l10n/nl.json
index 3bf30565352..09764561ef5 100644
--- a/core/l10n/nl.json
+++ b/core/l10n/nl.json
@@ -161,10 +161,13 @@
"Not supported!" : "Niet ondersteund!",
"Press ⌘-C to copy." : "Druk op ⌘-C om te kopiëren.",
"Press Ctrl-C to copy." : "Druk op Ctrl-C om te kopiëren.",
+ "Unable to create a link share" : "Kan deze deellink niet maken",
+ "Unable to toggle this option" : "Kan deze optie niet omschakelen",
"Resharing is not allowed" : "Verder delen is niet toegestaan",
"Share to {name}" : "Delen naar {name}",
"Link" : "Link",
"Hide download" : "Verberg download",
+ "Password protection enforced" : "Wachtwoordbeveiliging afgedwongen",
"Password protect" : "Wachtwoord beveiligd",
"Allow editing" : "Bewerken toestaan",
"Email link to person" : "Email-link naar persoon",
@@ -172,12 +175,18 @@
"Allow upload and editing" : "Toestaan uploaden en bewerken",
"Read only" : "Alleen lezen",
"File drop (upload only)" : "File drop (alleen uploaden)",
+ "Expiration date enforced" : "Vervaldatum afgedwongen",
"Set expiration date" : "Stel vervaldatum in",
"Expiration" : "Vervaltermijn",
"Expiration date" : "Vervaldatum",
"Note to recipient" : "Notitie voor ontvanger",
"Unshare" : "Delen stoppen",
+ "Delete share link" : "Verwijderen deellink",
+ "Add another link" : "Toevoegen andere link",
+ "Password protection for links is mandatory" : "Wachtwoordbeveiliging voor links is verplicht",
"Share link" : "Deellink",
+ "New share link" : "Nieuwe deellink",
+ "Password protect by Talk" : "Wachtwoord beveiligd door Talk",
"Could not unshare" : "Kon delen niet ongedaan maken",
"Shared with you and the group {group} by {owner}" : "Met jou en de groep {group} gedeeld door {owner}",
"Shared with you and {circle} by {owner}" : "Gedeeld met jou en {circle} door {owner}",
@@ -196,7 +205,6 @@
"Can create" : "Kan creëren",
"Can change" : "Kan wijzigen",
"Can delete" : "Kan verwijderen",
- "Password protect by Talk" : "Wachtwoord beveiligd door Talk",
"Access control" : "Toegangscontrole",
"{shareInitiatorDisplayName} shared via link" : "{shareInitiatorDisplayName} gedeeld via link",
"Error while sharing" : "Fout tijdens het delen",
@@ -209,6 +217,7 @@
"An error occurred. Please try again" : "Er trad een fout op. Probeer het opnieuw",
"{sharee} (remote group)" : "{sharee} (remote group)",
"{sharee} ({type}, {owner})" : "{sharee} ({type}, {owner})",
+ "Home" : "Startpagina",
"Other" : "Ander",
"Share" : "Delen",
"Name or email address..." : "Naam of emailadres...",
@@ -410,7 +419,6 @@
"Back to log in" : "Terug naar inloggen",
"You are about to grant %s access to your %s account." : "Je staat op het punt om %s toegang te verlenen to je %s account.",
"Depending on your configuration, this button could also work to trust the domain:" : "Afhankelijk van je configuratie kan deze knop ook werken om het volgende domein te vertrouwen:",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "Wachten op gereedmelding cron (over 5 seconden nieuwe check) …",
"Copy URL" : "Kopiëren URL",
"Enable" : "Inschakelen",
"{sharee} (conversation)" : "{sharee} (gesprek)",
diff --git a/core/l10n/pl.js b/core/l10n/pl.js
index a3e75e165be..d667c8bee64 100644
--- a/core/l10n/pl.js
+++ b/core/l10n/pl.js
@@ -176,6 +176,7 @@ OC.L10N.register(
"Note to recipient" : "Notatka dla odbiorcy",
"Unshare" : "Zatrzymaj współdzielenie",
"Share link" : "Udostępnij link",
+ "Password protect by Talk" : "Ochronę hasłem zapewnia Talk",
"Could not unshare" : "Nie udało się usunąć udostępnienia",
"Shared with you and the group {group} by {owner}" : "Udostępnione tobie i grupie {group} przez {owner}",
"Shared with you and {circle} by {owner}" : "Współdzielone z Tobą i {circle} przez {owner}",
@@ -194,7 +195,6 @@ OC.L10N.register(
"Can create" : "Może tworzyć",
"Can change" : "Może zmieniać",
"Can delete" : "Może usuwać",
- "Password protect by Talk" : "Ochronę hasłem zapewnia Talk",
"Access control" : "Kontrola dostępu",
"Error while sharing" : "Błąd podczas udostępniania",
"Share details could not be loaded for this item." : "Szczegóły udziału nie mogły zostać wczytane dla tego obiektu.",
@@ -397,7 +397,6 @@ OC.L10N.register(
"Back to log in" : "Powrót do logowania",
"You are about to grant %s access to your %s account." : "Zamierzasz udzielić %s dostępu do Twojego konta %s.",
"Depending on your configuration, this button could also work to trust the domain:" : "W zależności od Twojej konfiguracji, ten przycisk aby zaufać domenie powinien również zadziałać: ",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "Oczekiwanie na zakończenie zadania cron (ponowne sprawdzenie w ciągu 5 sekund) ...",
"Copy URL" : "Skopiuj URL",
"Enable" : "Włącz",
"{sharee} (conversation)" : "{sharee} (konwersacja)",
diff --git a/core/l10n/pl.json b/core/l10n/pl.json
index 00e3fe4ab32..271348c8a3d 100644
--- a/core/l10n/pl.json
+++ b/core/l10n/pl.json
@@ -174,6 +174,7 @@
"Note to recipient" : "Notatka dla odbiorcy",
"Unshare" : "Zatrzymaj współdzielenie",
"Share link" : "Udostępnij link",
+ "Password protect by Talk" : "Ochronę hasłem zapewnia Talk",
"Could not unshare" : "Nie udało się usunąć udostępnienia",
"Shared with you and the group {group} by {owner}" : "Udostępnione tobie i grupie {group} przez {owner}",
"Shared with you and {circle} by {owner}" : "Współdzielone z Tobą i {circle} przez {owner}",
@@ -192,7 +193,6 @@
"Can create" : "Może tworzyć",
"Can change" : "Może zmieniać",
"Can delete" : "Może usuwać",
- "Password protect by Talk" : "Ochronę hasłem zapewnia Talk",
"Access control" : "Kontrola dostępu",
"Error while sharing" : "Błąd podczas udostępniania",
"Share details could not be loaded for this item." : "Szczegóły udziału nie mogły zostać wczytane dla tego obiektu.",
@@ -395,7 +395,6 @@
"Back to log in" : "Powrót do logowania",
"You are about to grant %s access to your %s account." : "Zamierzasz udzielić %s dostępu do Twojego konta %s.",
"Depending on your configuration, this button could also work to trust the domain:" : "W zależności od Twojej konfiguracji, ten przycisk aby zaufać domenie powinien również zadziałać: ",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "Oczekiwanie na zakończenie zadania cron (ponowne sprawdzenie w ciągu 5 sekund) ...",
"Copy URL" : "Skopiuj URL",
"Enable" : "Włącz",
"{sharee} (conversation)" : "{sharee} (konwersacja)",
diff --git a/core/l10n/pt_BR.js b/core/l10n/pt_BR.js
index 0466b367ccf..8ded4df100f 100644
--- a/core/l10n/pt_BR.js
+++ b/core/l10n/pt_BR.js
@@ -163,10 +163,13 @@ OC.L10N.register(
"Not supported!" : "Não suportado!",
"Press ⌘-C to copy." : "Pressione ⌘-C para copiar.",
"Press Ctrl-C to copy." : "Pressione Ctrl-C para copiar.",
+ "Unable to create a link share" : "Não é possível criar um compartilhamento por link",
+ "Unable to toggle this option" : "Não é possível alternar esta opção",
"Resharing is not allowed" : "Não é permitido recompartilhar",
"Share to {name}" : "Compartilhar com {name}",
"Link" : "Link",
"Hide download" : "Ocultar download",
+ "Password protection enforced" : "Proteção por senha aplicada",
"Password protect" : "Proteger com senha",
"Allow editing" : "Permitir edição",
"Email link to person" : "Enviar link por e-mail",
@@ -174,12 +177,18 @@ OC.L10N.register(
"Allow upload and editing" : "Permitir envio e edição",
"Read only" : "Somente leitura",
"File drop (upload only)" : "Zona de arquivos (somente envio)",
+ "Expiration date enforced" : "Data de expiração aplicada",
"Set expiration date" : "Definir data de expiração",
"Expiration" : "Expiração",
"Expiration date" : "Data de expiração",
"Note to recipient" : "Nota para o destinatário",
"Unshare" : "Descompartilhar",
+ "Delete share link" : "Excluir link de compartilhamento",
+ "Add another link" : "Adicionar outro link",
+ "Password protection for links is mandatory" : "A proteção por senha para links é obrigatória",
"Share link" : "Compartilhar link",
+ "New share link" : "Novo link de compartilhamento",
+ "Password protect by Talk" : "Senha protegida pelo Talk",
"Could not unshare" : "Não foi possível descompartilhar",
"Shared with you and the group {group} by {owner}" : "Compartilhado com você e com o grupo {group} por {owner}",
"Shared with you and {circle} by {owner}" : "Compartilhado com você e {circle} por {owner}",
@@ -198,7 +207,6 @@ OC.L10N.register(
"Can create" : "Pode criar",
"Can change" : "Pode modificar",
"Can delete" : "Pode excluir",
- "Password protect by Talk" : "Senha protegida pelo Talk",
"Access control" : "Controle de acesso",
"{shareInitiatorDisplayName} shared via link" : "{shareInitiatorDisplayName} compartilhou por link",
"Error while sharing" : "Erro ao compartilhar",
@@ -413,7 +421,6 @@ OC.L10N.register(
"Back to log in" : "Voltar ao login",
"You are about to grant %s access to your %s account." : "Você está prestes a conceder acesso a %s à sua conta %s.",
"Depending on your configuration, this button could also work to trust the domain:" : "Dependendo de sua configuração, este botão também pode funcionar para confiar no domínio.",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "Aguardando o cron terminar (verificando de novo em 5 segundos)…",
"Copy URL" : "Copiar URL",
"Enable" : "Ativar",
"{sharee} (conversation)" : "{sharee} (conversation)",
diff --git a/core/l10n/pt_BR.json b/core/l10n/pt_BR.json
index edbdfd11eef..a625b363842 100644
--- a/core/l10n/pt_BR.json
+++ b/core/l10n/pt_BR.json
@@ -161,10 +161,13 @@
"Not supported!" : "Não suportado!",
"Press ⌘-C to copy." : "Pressione ⌘-C para copiar.",
"Press Ctrl-C to copy." : "Pressione Ctrl-C para copiar.",
+ "Unable to create a link share" : "Não é possível criar um compartilhamento por link",
+ "Unable to toggle this option" : "Não é possível alternar esta opção",
"Resharing is not allowed" : "Não é permitido recompartilhar",
"Share to {name}" : "Compartilhar com {name}",
"Link" : "Link",
"Hide download" : "Ocultar download",
+ "Password protection enforced" : "Proteção por senha aplicada",
"Password protect" : "Proteger com senha",
"Allow editing" : "Permitir edição",
"Email link to person" : "Enviar link por e-mail",
@@ -172,12 +175,18 @@
"Allow upload and editing" : "Permitir envio e edição",
"Read only" : "Somente leitura",
"File drop (upload only)" : "Zona de arquivos (somente envio)",
+ "Expiration date enforced" : "Data de expiração aplicada",
"Set expiration date" : "Definir data de expiração",
"Expiration" : "Expiração",
"Expiration date" : "Data de expiração",
"Note to recipient" : "Nota para o destinatário",
"Unshare" : "Descompartilhar",
+ "Delete share link" : "Excluir link de compartilhamento",
+ "Add another link" : "Adicionar outro link",
+ "Password protection for links is mandatory" : "A proteção por senha para links é obrigatória",
"Share link" : "Compartilhar link",
+ "New share link" : "Novo link de compartilhamento",
+ "Password protect by Talk" : "Senha protegida pelo Talk",
"Could not unshare" : "Não foi possível descompartilhar",
"Shared with you and the group {group} by {owner}" : "Compartilhado com você e com o grupo {group} por {owner}",
"Shared with you and {circle} by {owner}" : "Compartilhado com você e {circle} por {owner}",
@@ -196,7 +205,6 @@
"Can create" : "Pode criar",
"Can change" : "Pode modificar",
"Can delete" : "Pode excluir",
- "Password protect by Talk" : "Senha protegida pelo Talk",
"Access control" : "Controle de acesso",
"{shareInitiatorDisplayName} shared via link" : "{shareInitiatorDisplayName} compartilhou por link",
"Error while sharing" : "Erro ao compartilhar",
@@ -411,7 +419,6 @@
"Back to log in" : "Voltar ao login",
"You are about to grant %s access to your %s account." : "Você está prestes a conceder acesso a %s à sua conta %s.",
"Depending on your configuration, this button could also work to trust the domain:" : "Dependendo de sua configuração, este botão também pode funcionar para confiar no domínio.",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "Aguardando o cron terminar (verificando de novo em 5 segundos)…",
"Copy URL" : "Copiar URL",
"Enable" : "Ativar",
"{sharee} (conversation)" : "{sharee} (conversation)",
diff --git a/core/l10n/ru.js b/core/l10n/ru.js
index 8be04ef91cf..7bf5e82f0c4 100644
--- a/core/l10n/ru.js
+++ b/core/l10n/ru.js
@@ -179,6 +179,7 @@ OC.L10N.register(
"Note to recipient" : "Примечание для получателя",
"Unshare" : "Закрыть доступ",
"Share link" : "Общий доступ по ссылке",
+ "Password protect by Talk" : "Защита пароля Talk",
"Could not unshare" : "Невозможно закрыть общий доступ",
"Shared with you and the group {group} by {owner}" : "{owner} предоставил(а) доступ Вам и группе {group}",
"Shared with you and {circle} by {owner}" : "{owner} предоставил(а) доступ Вам и участникам круга «{circle}»",
@@ -197,7 +198,6 @@ OC.L10N.register(
"Can create" : "Можно создавать",
"Can change" : "Можно изменять",
"Can delete" : "Можно удалять",
- "Password protect by Talk" : "Защита пароля Talk",
"Access control" : "Управление доступом",
"{shareInitiatorDisplayName} shared via link" : "{shareInitiatorDisplayName} предоставил(а) доступ созданием ссылки",
"Error while sharing" : "При попытке поделиться произошла ошибка",
@@ -407,7 +407,6 @@ OC.L10N.register(
"Back to log in" : "Вернуться к диалогу входа в систему",
"You are about to grant %s access to your %s account." : "Вы собираетесь предоставить пользователю %s доступ к вашему аккаунту %s.",
"Depending on your configuration, this button could also work to trust the domain:" : "В зависимости от конфигурации, эта кнопка может сделать доверенным следующий домен:",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "Ожидание завершения работы планировщика (проверка каждые 5 секунд)…",
"Copy URL" : "Копировать ссылку",
"Enable" : "Использовать",
"{sharee} (conversation)" : "{sharee} (разговор)",
diff --git a/core/l10n/ru.json b/core/l10n/ru.json
index 37a46e013d0..74827aa3dcc 100644
--- a/core/l10n/ru.json
+++ b/core/l10n/ru.json
@@ -177,6 +177,7 @@
"Note to recipient" : "Примечание для получателя",
"Unshare" : "Закрыть доступ",
"Share link" : "Общий доступ по ссылке",
+ "Password protect by Talk" : "Защита пароля Talk",
"Could not unshare" : "Невозможно закрыть общий доступ",
"Shared with you and the group {group} by {owner}" : "{owner} предоставил(а) доступ Вам и группе {group}",
"Shared with you and {circle} by {owner}" : "{owner} предоставил(а) доступ Вам и участникам круга «{circle}»",
@@ -195,7 +196,6 @@
"Can create" : "Можно создавать",
"Can change" : "Можно изменять",
"Can delete" : "Можно удалять",
- "Password protect by Talk" : "Защита пароля Talk",
"Access control" : "Управление доступом",
"{shareInitiatorDisplayName} shared via link" : "{shareInitiatorDisplayName} предоставил(а) доступ созданием ссылки",
"Error while sharing" : "При попытке поделиться произошла ошибка",
@@ -405,7 +405,6 @@
"Back to log in" : "Вернуться к диалогу входа в систему",
"You are about to grant %s access to your %s account." : "Вы собираетесь предоставить пользователю %s доступ к вашему аккаунту %s.",
"Depending on your configuration, this button could also work to trust the domain:" : "В зависимости от конфигурации, эта кнопка может сделать доверенным следующий домен:",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "Ожидание завершения работы планировщика (проверка каждые 5 секунд)…",
"Copy URL" : "Копировать ссылку",
"Enable" : "Использовать",
"{sharee} (conversation)" : "{sharee} (разговор)",
diff --git a/core/l10n/sk.js b/core/l10n/sk.js
index a60ff6e8f6e..391ceeabd21 100644
--- a/core/l10n/sk.js
+++ b/core/l10n/sk.js
@@ -179,6 +179,7 @@ OC.L10N.register(
"Note to recipient" : "Poznámka pre príjemcu",
"Unshare" : "Zneprístupniť",
"Share link" : "Sprístupniť odkaz",
+ "Password protect by Talk" : "Chránené heslom apkou Talk",
"Could not unshare" : "Nepodarilo sa zrušiť sprístupnenie",
"Shared with you and the group {group} by {owner}" : "Sprístupnené vám a skupine {group} používateľom {owner}",
"Shared with you and {circle} by {owner}" : "Sprístupnené vám a {circle} od {owner}",
@@ -197,7 +198,6 @@ OC.L10N.register(
"Can create" : "Môže vytvárať",
"Can change" : "Môže meniť",
"Can delete" : "Môže odstraňovať",
- "Password protect by Talk" : "Chránené heslom apkou Talk",
"Access control" : "Prístupové práva",
"{shareInitiatorDisplayName} shared via link" : "{shareInitiatorDisplayName} zdieľal pomocou odkazu",
"Error while sharing" : "Chyba počas sprístupňovania",
@@ -210,6 +210,8 @@ OC.L10N.register(
"An error occurred. Please try again" : "Nastala chyba. Skúste to prosím znovu",
"{sharee} (remote group)" : "{sharee} (vzdialená skupina)",
"{sharee} ({type}, {owner})" : "{sharee} ({type}, {owner})",
+ "Home" : "Domov",
+ "Other" : "Iné",
"Share" : "Sprístupniť",
"Name or email address..." : "Meno alebo e-mailová adresa...",
"Name or federated cloud ID..." : "Meno alebo federatívny cloud ID...",
@@ -295,6 +297,7 @@ OC.L10N.register(
"Skip to main content" : "Prejsť na hlavný obsah",
"Skip to navigation of app" : "Preskočiť do navigácie apky",
"More apps" : "Viac aplikácií",
+ "More" : "Viac",
"More apps menu" : "Menu ostatných aplikácií",
"Search" : "Hľadať",
"Reset search" : "Vynuluj vyhľadávanie",
@@ -409,7 +412,6 @@ OC.L10N.register(
"Back to log in" : "Späť na prihlásenie",
"You are about to grant %s access to your %s account." : "Chystáte sa udeliť %s prístup k svojmu %s účtu.",
"Depending on your configuration, this button could also work to trust the domain:" : "V závislosti od vašej konfigurácie by toto tlačidlo mohlo fungovať tak, že dôverujete doméne:",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "Čaká sa na dokončenie cronu (skontrolujte znovu za 5 sekúnd) ...",
"Copy URL" : "Kopírovať URL",
"Enable" : "Povoliť",
"{sharee} (conversation)" : "{sharee} (rozhovor)",
diff --git a/core/l10n/sk.json b/core/l10n/sk.json
index c1dcd68d75f..4c63b47c6b9 100644
--- a/core/l10n/sk.json
+++ b/core/l10n/sk.json
@@ -177,6 +177,7 @@
"Note to recipient" : "Poznámka pre príjemcu",
"Unshare" : "Zneprístupniť",
"Share link" : "Sprístupniť odkaz",
+ "Password protect by Talk" : "Chránené heslom apkou Talk",
"Could not unshare" : "Nepodarilo sa zrušiť sprístupnenie",
"Shared with you and the group {group} by {owner}" : "Sprístupnené vám a skupine {group} používateľom {owner}",
"Shared with you and {circle} by {owner}" : "Sprístupnené vám a {circle} od {owner}",
@@ -195,7 +196,6 @@
"Can create" : "Môže vytvárať",
"Can change" : "Môže meniť",
"Can delete" : "Môže odstraňovať",
- "Password protect by Talk" : "Chránené heslom apkou Talk",
"Access control" : "Prístupové práva",
"{shareInitiatorDisplayName} shared via link" : "{shareInitiatorDisplayName} zdieľal pomocou odkazu",
"Error while sharing" : "Chyba počas sprístupňovania",
@@ -208,6 +208,8 @@
"An error occurred. Please try again" : "Nastala chyba. Skúste to prosím znovu",
"{sharee} (remote group)" : "{sharee} (vzdialená skupina)",
"{sharee} ({type}, {owner})" : "{sharee} ({type}, {owner})",
+ "Home" : "Domov",
+ "Other" : "Iné",
"Share" : "Sprístupniť",
"Name or email address..." : "Meno alebo e-mailová adresa...",
"Name or federated cloud ID..." : "Meno alebo federatívny cloud ID...",
@@ -293,6 +295,7 @@
"Skip to main content" : "Prejsť na hlavný obsah",
"Skip to navigation of app" : "Preskočiť do navigácie apky",
"More apps" : "Viac aplikácií",
+ "More" : "Viac",
"More apps menu" : "Menu ostatných aplikácií",
"Search" : "Hľadať",
"Reset search" : "Vynuluj vyhľadávanie",
@@ -407,7 +410,6 @@
"Back to log in" : "Späť na prihlásenie",
"You are about to grant %s access to your %s account." : "Chystáte sa udeliť %s prístup k svojmu %s účtu.",
"Depending on your configuration, this button could also work to trust the domain:" : "V závislosti od vašej konfigurácie by toto tlačidlo mohlo fungovať tak, že dôverujete doméne:",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "Čaká sa na dokončenie cronu (skontrolujte znovu za 5 sekúnd) ...",
"Copy URL" : "Kopírovať URL",
"Enable" : "Povoliť",
"{sharee} (conversation)" : "{sharee} (rozhovor)",
diff --git a/core/l10n/sr.js b/core/l10n/sr.js
index 854a8a3b6e4..4532fe65513 100644
--- a/core/l10n/sr.js
+++ b/core/l10n/sr.js
@@ -163,9 +163,13 @@ OC.L10N.register(
"Not supported!" : "Није подржано!",
"Press ⌘-C to copy." : "Притисни ⌘-C за копирање.",
"Press Ctrl-C to copy." : "Притисни Ctrl-C за копирање.",
+ "Unable to create a link share" : "Не могу да направим везу дељења",
+ "Unable to toggle this option" : "Не могу да укључим/искључим ову опцију",
"Resharing is not allowed" : "Поновно дељење није дозвољено",
"Share to {name}" : "Подели са {name}",
"Link" : "Веза",
+ "Hide download" : "Сакриј скидање",
+ "Password protection enforced" : "Захтевана заштита лозинком",
"Password protect" : "Заштићено лозинком",
"Allow editing" : "Дозволи уређивање",
"Email link to person" : "Пошаљи е-поштом",
@@ -173,12 +177,18 @@ OC.L10N.register(
"Allow upload and editing" : "Дозволи отпремање и уређивање",
"Read only" : "Само за читање",
"File drop (upload only)" : "Превлачење фајлова (само за отпремање)",
+ "Expiration date enforced" : "Захтевано постављање датума истека",
"Set expiration date" : "Постави датум истека",
"Expiration" : "Истиче",
"Expiration date" : "Датум истека",
"Note to recipient" : "Белешка примаоцу",
"Unshare" : "Укини дељење",
+ "Delete share link" : "Обриши везу дељења",
+ "Add another link" : "Додај још једну везу",
+ "Password protection for links is mandatory" : "За везе је обавезна заштита лозинком",
"Share link" : "Веза дељења",
+ "New share link" : "Нова веза дељења",
+ "Password protect by Talk" : "Заштити лозинком преко Talk-а",
"Could not unshare" : "Не могу да укинем дељење",
"Shared with you and the group {group} by {owner}" : "{owner} дели са вама и са групом {group}.",
"Shared with you and {circle} by {owner}" : "Дељемп са Вама и кругом {circle} од стране корисника {owner}",
@@ -197,7 +207,6 @@ OC.L10N.register(
"Can create" : "Може да направи",
"Can change" : "Може да мења",
"Can delete" : "Може да брише",
- "Password protect by Talk" : "Заштити лозинком преко Talk-а",
"Access control" : "Контрола приступа",
"{shareInitiatorDisplayName} shared via link" : "{shareInitiatorDisplayName} је поделио преко везе",
"Error while sharing" : "Грешка при дељењу",
@@ -210,6 +219,8 @@ OC.L10N.register(
"An error occurred. Please try again" : "Дошло је до грешке. Покушајте поново",
"{sharee} (remote group)" : "{sharee} (удаљена група)",
"{sharee} ({type}, {owner})" : "{sharee} ({type}, {owner})",
+ "Home" : "Почетна",
+ "Other" : "Остало",
"Share" : "Дели",
"Name or email address..." : "Име или адреса е-поште...",
"Name or federated cloud ID..." : "Име или ID здруженог облака...",
@@ -295,6 +306,7 @@ OC.L10N.register(
"Skip to main content" : "Прескочи на главни садржај",
"Skip to navigation of app" : "Прескочи на навигацију апликације",
"More apps" : "Још апликација",
+ "More" : "Још",
"More apps menu" : "Мени још апликација",
"Search" : "Претражи",
"Reset search" : "Ресетуј претрагу",
@@ -409,7 +421,6 @@ OC.L10N.register(
"Back to log in" : "Назад на пријаву",
"You are about to grant %s access to your %s account." : "Управо ћете одобрити %s приступ Вашем %s налогу.",
"Depending on your configuration, this button could also work to trust the domain:" : "У зависности од Ваше конфигурације, овим дугметом може да послужи да почнете да верујете овом домену:",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "Чекање да се заврши крон (проверите опет за 5 секунди) …",
"Copy URL" : "Копирај URL",
"Enable" : "Укључи",
"{sharee} (conversation)" : "{sharee} (разговор)",
diff --git a/core/l10n/sr.json b/core/l10n/sr.json
index 8fd071999df..62fda5015f9 100644
--- a/core/l10n/sr.json
+++ b/core/l10n/sr.json
@@ -161,9 +161,13 @@
"Not supported!" : "Није подржано!",
"Press ⌘-C to copy." : "Притисни ⌘-C за копирање.",
"Press Ctrl-C to copy." : "Притисни Ctrl-C за копирање.",
+ "Unable to create a link share" : "Не могу да направим везу дељења",
+ "Unable to toggle this option" : "Не могу да укључим/искључим ову опцију",
"Resharing is not allowed" : "Поновно дељење није дозвољено",
"Share to {name}" : "Подели са {name}",
"Link" : "Веза",
+ "Hide download" : "Сакриј скидање",
+ "Password protection enforced" : "Захтевана заштита лозинком",
"Password protect" : "Заштићено лозинком",
"Allow editing" : "Дозволи уређивање",
"Email link to person" : "Пошаљи е-поштом",
@@ -171,12 +175,18 @@
"Allow upload and editing" : "Дозволи отпремање и уређивање",
"Read only" : "Само за читање",
"File drop (upload only)" : "Превлачење фајлова (само за отпремање)",
+ "Expiration date enforced" : "Захтевано постављање датума истека",
"Set expiration date" : "Постави датум истека",
"Expiration" : "Истиче",
"Expiration date" : "Датум истека",
"Note to recipient" : "Белешка примаоцу",
"Unshare" : "Укини дељење",
+ "Delete share link" : "Обриши везу дељења",
+ "Add another link" : "Додај још једну везу",
+ "Password protection for links is mandatory" : "За везе је обавезна заштита лозинком",
"Share link" : "Веза дељења",
+ "New share link" : "Нова веза дељења",
+ "Password protect by Talk" : "Заштити лозинком преко Talk-а",
"Could not unshare" : "Не могу да укинем дељење",
"Shared with you and the group {group} by {owner}" : "{owner} дели са вама и са групом {group}.",
"Shared with you and {circle} by {owner}" : "Дељемп са Вама и кругом {circle} од стране корисника {owner}",
@@ -195,7 +205,6 @@
"Can create" : "Може да направи",
"Can change" : "Може да мења",
"Can delete" : "Може да брише",
- "Password protect by Talk" : "Заштити лозинком преко Talk-а",
"Access control" : "Контрола приступа",
"{shareInitiatorDisplayName} shared via link" : "{shareInitiatorDisplayName} је поделио преко везе",
"Error while sharing" : "Грешка при дељењу",
@@ -208,6 +217,8 @@
"An error occurred. Please try again" : "Дошло је до грешке. Покушајте поново",
"{sharee} (remote group)" : "{sharee} (удаљена група)",
"{sharee} ({type}, {owner})" : "{sharee} ({type}, {owner})",
+ "Home" : "Почетна",
+ "Other" : "Остало",
"Share" : "Дели",
"Name or email address..." : "Име или адреса е-поште...",
"Name or federated cloud ID..." : "Име или ID здруженог облака...",
@@ -293,6 +304,7 @@
"Skip to main content" : "Прескочи на главни садржај",
"Skip to navigation of app" : "Прескочи на навигацију апликације",
"More apps" : "Још апликација",
+ "More" : "Још",
"More apps menu" : "Мени још апликација",
"Search" : "Претражи",
"Reset search" : "Ресетуј претрагу",
@@ -407,7 +419,6 @@
"Back to log in" : "Назад на пријаву",
"You are about to grant %s access to your %s account." : "Управо ћете одобрити %s приступ Вашем %s налогу.",
"Depending on your configuration, this button could also work to trust the domain:" : "У зависности од Ваше конфигурације, овим дугметом може да послужи да почнете да верујете овом домену:",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "Чекање да се заврши крон (проверите опет за 5 секунди) …",
"Copy URL" : "Копирај URL",
"Enable" : "Укључи",
"{sharee} (conversation)" : "{sharee} (разговор)",
diff --git a/core/l10n/sv.js b/core/l10n/sv.js
index ed98904793e..8e126b33df4 100644
--- a/core/l10n/sv.js
+++ b/core/l10n/sv.js
@@ -124,9 +124,13 @@ OC.L10N.register(
"Not supported!" : "Stöds ej!",
"Press ⌘-C to copy." : "Tryck ned ⌘-C för att kopiera.",
"Press Ctrl-C to copy." : "Tryck ned Ctrl-C för att kopiera.",
+ "Unable to create a link share" : "Kan inte skapa länkdelning",
+ "Unable to toggle this option" : "Kan inte växla om det här alternativet",
"Resharing is not allowed" : "Dela vidare är inte tillåtet",
"Share to {name}" : "Dela till {name}",
"Link" : "Länk",
+ "Hide download" : "Dölj nedladdning",
+ "Password protection enforced" : "Lösenordsskydd obligatorisk",
"Password protect" : "Lösenordsskydda",
"Allow editing" : "Tillåt redigering",
"Email link to person" : "Skicka länken som e-postmeddelande",
@@ -134,12 +138,18 @@ OC.L10N.register(
"Allow upload and editing" : "Tillåt uppladdning och redigering",
"Read only" : "Läsbehörigheter",
"File drop (upload only)" : "Göm fillista (endast uppladdning)",
+ "Expiration date enforced" : "Förfallodatum obligatorisk",
"Set expiration date" : "Välj utgångsdatum",
"Expiration" : "Upphör",
"Expiration date" : "Utgångsdatum",
"Note to recipient" : "Notering till mottagare",
"Unshare" : "Sluta dela",
+ "Delete share link" : "Radera delad länk",
+ "Add another link" : "Lägg till en annan länk",
+ "Password protection for links is mandatory" : "Lösenordsskydd för länkar är obligatoriskt",
"Share link" : "Dela länk",
+ "New share link" : "Ny delad länk",
+ "Password protect by Talk" : "Lösenordsskydda med Talk",
"Could not unshare" : "Kunde inte ta bort delning",
"Shared with you and the group {group} by {owner}" : "Delad med dig och gruppen {group} av {owner}",
"Shared with you and {circle} by {owner}" : "Delad med dig och {circle} av {owner}",
@@ -158,7 +168,6 @@ OC.L10N.register(
"Can create" : "Kan skapa",
"Can change" : "Kan ändra",
"Can delete" : "Kan radera",
- "Password protect by Talk" : "Lösenordsskydda med Talk",
"Access control" : "Åtkomstkontroll",
"{shareInitiatorDisplayName} shared via link" : "{shareInitiatorDisplayName} delad via länk",
"Error while sharing" : "Fel vid delning",
@@ -170,6 +179,8 @@ OC.L10N.register(
"An error occurred (\"{message}\"). Please try again" : "Ett fel uppstod (\"{message}\"). Försök igen",
"An error occurred. Please try again" : "Ett fel uppstod. Vänligen försök igen",
"{sharee} ({type}, {owner})" : "{sharee} ({type}, {owner})",
+ "Home" : "Hem",
+ "Other" : "Annan",
"Share" : "Dela",
"Name or email address..." : "Namn eller e-postadress",
"Name or federated cloud ID..." : "Namn eller federerat moln-ID",
@@ -255,6 +266,7 @@ OC.L10N.register(
"Skip to main content" : "Skippa till huvudinnehållet",
"Skip to navigation of app" : "Skippa till navigering av app",
"More apps" : "Fler appar",
+ "More" : "Mer",
"Search" : "Sök",
"Reset search" : "Återställ sökning",
"Contacts" : "Kontakter",
diff --git a/core/l10n/sv.json b/core/l10n/sv.json
index 23859044868..49358261562 100644
--- a/core/l10n/sv.json
+++ b/core/l10n/sv.json
@@ -122,9 +122,13 @@
"Not supported!" : "Stöds ej!",
"Press ⌘-C to copy." : "Tryck ned ⌘-C för att kopiera.",
"Press Ctrl-C to copy." : "Tryck ned Ctrl-C för att kopiera.",
+ "Unable to create a link share" : "Kan inte skapa länkdelning",
+ "Unable to toggle this option" : "Kan inte växla om det här alternativet",
"Resharing is not allowed" : "Dela vidare är inte tillåtet",
"Share to {name}" : "Dela till {name}",
"Link" : "Länk",
+ "Hide download" : "Dölj nedladdning",
+ "Password protection enforced" : "Lösenordsskydd obligatorisk",
"Password protect" : "Lösenordsskydda",
"Allow editing" : "Tillåt redigering",
"Email link to person" : "Skicka länken som e-postmeddelande",
@@ -132,12 +136,18 @@
"Allow upload and editing" : "Tillåt uppladdning och redigering",
"Read only" : "Läsbehörigheter",
"File drop (upload only)" : "Göm fillista (endast uppladdning)",
+ "Expiration date enforced" : "Förfallodatum obligatorisk",
"Set expiration date" : "Välj utgångsdatum",
"Expiration" : "Upphör",
"Expiration date" : "Utgångsdatum",
"Note to recipient" : "Notering till mottagare",
"Unshare" : "Sluta dela",
+ "Delete share link" : "Radera delad länk",
+ "Add another link" : "Lägg till en annan länk",
+ "Password protection for links is mandatory" : "Lösenordsskydd för länkar är obligatoriskt",
"Share link" : "Dela länk",
+ "New share link" : "Ny delad länk",
+ "Password protect by Talk" : "Lösenordsskydda med Talk",
"Could not unshare" : "Kunde inte ta bort delning",
"Shared with you and the group {group} by {owner}" : "Delad med dig och gruppen {group} av {owner}",
"Shared with you and {circle} by {owner}" : "Delad med dig och {circle} av {owner}",
@@ -156,7 +166,6 @@
"Can create" : "Kan skapa",
"Can change" : "Kan ändra",
"Can delete" : "Kan radera",
- "Password protect by Talk" : "Lösenordsskydda med Talk",
"Access control" : "Åtkomstkontroll",
"{shareInitiatorDisplayName} shared via link" : "{shareInitiatorDisplayName} delad via länk",
"Error while sharing" : "Fel vid delning",
@@ -168,6 +177,8 @@
"An error occurred (\"{message}\"). Please try again" : "Ett fel uppstod (\"{message}\"). Försök igen",
"An error occurred. Please try again" : "Ett fel uppstod. Vänligen försök igen",
"{sharee} ({type}, {owner})" : "{sharee} ({type}, {owner})",
+ "Home" : "Hem",
+ "Other" : "Annan",
"Share" : "Dela",
"Name or email address..." : "Namn eller e-postadress",
"Name or federated cloud ID..." : "Namn eller federerat moln-ID",
@@ -253,6 +264,7 @@
"Skip to main content" : "Skippa till huvudinnehållet",
"Skip to navigation of app" : "Skippa till navigering av app",
"More apps" : "Fler appar",
+ "More" : "Mer",
"Search" : "Sök",
"Reset search" : "Återställ sökning",
"Contacts" : "Kontakter",
diff --git a/core/l10n/tr.js b/core/l10n/tr.js
index e0ea88ee138..dbb1505ac94 100644
--- a/core/l10n/tr.js
+++ b/core/l10n/tr.js
@@ -163,10 +163,13 @@ OC.L10N.register(
"Not supported!" : "Desteklenmiyor!",
"Press ⌘-C to copy." : "Kopyalamak için ⌘-C tuşlarına basın.",
"Press Ctrl-C to copy." : "Kopyalamak için Ctrl-C tuşlarına basın.",
+ "Unable to create a link share" : "Paylaşım bağlantısı oluşturulamadı",
+ "Unable to toggle this option" : "Bu seçenek değiştirilemedi",
"Resharing is not allowed" : "Yeniden paylaşıma izin verilmiyor",
"Share to {name}" : "{name} ile paylaş",
"Link" : "Bağlantı",
"Hide download" : "İndirmeyi gizle",
+ "Password protection enforced" : "Parola koruması dayatılıyor",
"Password protect" : "Parola koruması",
"Allow editing" : "Düzenlenebilsin",
"Email link to person" : "Bağlantıyı e-posta ile gönder",
@@ -174,12 +177,18 @@ OC.L10N.register(
"Allow upload and editing" : "Yüklenebilsin ve düzenlenebilsin",
"Read only" : "Salt okunur",
"File drop (upload only)" : "Dosya bırakma (yalnız yükleme)",
+ "Expiration date enforced" : "Son kullanma süresi dayatılıyor",
"Set expiration date" : "Son kullanma tarihini ayarla",
"Expiration" : "Son kullanma",
"Expiration date" : "Son kullanma tarihi",
"Note to recipient" : "Alıcıya not",
"Unshare" : "Paylaşımdan Kaldır",
+ "Delete share link" : "Paylaşım bağlantısını sil",
+ "Add another link" : "Başka bir bağlantı ekle",
+ "Password protection for links is mandatory" : "Bağlantı için parola koruması zorunludur",
"Share link" : "Paylaşma bağlantısı",
+ "New share link" : "Yeni paylaşım bağlantısı ",
+ "Password protect by Talk" : "Talk tarafından parola koruması",
"Could not unshare" : "Paylaşım kaldırılamadı",
"Shared with you and the group {group} by {owner}" : "{owner} tarafından sizinle ve {group} ile paylaşılmış",
"Shared with you and {circle} by {owner}" : "{owner} tarafından sizinle ve {circle} ile paylaşılmış",
@@ -198,7 +207,6 @@ OC.L10N.register(
"Can create" : "Ekleyebilir",
"Can change" : "Düzenleyebilir",
"Can delete" : "Silebilir",
- "Password protect by Talk" : "Talk tarafından parola koruması",
"Access control" : "Erişim denetimi",
"{shareInitiatorDisplayName} shared via link" : "{shareInitiatorDisplayName} bağlantı ile paylaşılmış",
"Error while sharing" : "Paylaşılırken sorun çıktı",
@@ -413,7 +421,6 @@ OC.L10N.register(
"Back to log in" : "Oturum açmaya geri dön",
"You are about to grant %s access to your %s account." : "%s erişim iznini %s hesabınız için vermek üzeresiniz.",
"Depending on your configuration, this button could also work to trust the domain:" : "Yapılandırmanıza bağlı olarak, bu düğme etki alanına güvenmek için de kullanılabilir:",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "Bitirmek için zamanlanmış görev bekleniyor (5 saniye sonra yeniden denetlenecek)…",
"Copy URL" : "Adresi Kopyala",
"Enable" : "Etkinleştir",
"{sharee} (conversation)" : "{sharee} (görüşme)",
diff --git a/core/l10n/tr.json b/core/l10n/tr.json
index 21331837970..d5ccee96d57 100644
--- a/core/l10n/tr.json
+++ b/core/l10n/tr.json
@@ -161,10 +161,13 @@
"Not supported!" : "Desteklenmiyor!",
"Press ⌘-C to copy." : "Kopyalamak için ⌘-C tuşlarına basın.",
"Press Ctrl-C to copy." : "Kopyalamak için Ctrl-C tuşlarına basın.",
+ "Unable to create a link share" : "Paylaşım bağlantısı oluşturulamadı",
+ "Unable to toggle this option" : "Bu seçenek değiştirilemedi",
"Resharing is not allowed" : "Yeniden paylaşıma izin verilmiyor",
"Share to {name}" : "{name} ile paylaş",
"Link" : "Bağlantı",
"Hide download" : "İndirmeyi gizle",
+ "Password protection enforced" : "Parola koruması dayatılıyor",
"Password protect" : "Parola koruması",
"Allow editing" : "Düzenlenebilsin",
"Email link to person" : "Bağlantıyı e-posta ile gönder",
@@ -172,12 +175,18 @@
"Allow upload and editing" : "Yüklenebilsin ve düzenlenebilsin",
"Read only" : "Salt okunur",
"File drop (upload only)" : "Dosya bırakma (yalnız yükleme)",
+ "Expiration date enforced" : "Son kullanma süresi dayatılıyor",
"Set expiration date" : "Son kullanma tarihini ayarla",
"Expiration" : "Son kullanma",
"Expiration date" : "Son kullanma tarihi",
"Note to recipient" : "Alıcıya not",
"Unshare" : "Paylaşımdan Kaldır",
+ "Delete share link" : "Paylaşım bağlantısını sil",
+ "Add another link" : "Başka bir bağlantı ekle",
+ "Password protection for links is mandatory" : "Bağlantı için parola koruması zorunludur",
"Share link" : "Paylaşma bağlantısı",
+ "New share link" : "Yeni paylaşım bağlantısı ",
+ "Password protect by Talk" : "Talk tarafından parola koruması",
"Could not unshare" : "Paylaşım kaldırılamadı",
"Shared with you and the group {group} by {owner}" : "{owner} tarafından sizinle ve {group} ile paylaşılmış",
"Shared with you and {circle} by {owner}" : "{owner} tarafından sizinle ve {circle} ile paylaşılmış",
@@ -196,7 +205,6 @@
"Can create" : "Ekleyebilir",
"Can change" : "Düzenleyebilir",
"Can delete" : "Silebilir",
- "Password protect by Talk" : "Talk tarafından parola koruması",
"Access control" : "Erişim denetimi",
"{shareInitiatorDisplayName} shared via link" : "{shareInitiatorDisplayName} bağlantı ile paylaşılmış",
"Error while sharing" : "Paylaşılırken sorun çıktı",
@@ -411,7 +419,6 @@
"Back to log in" : "Oturum açmaya geri dön",
"You are about to grant %s access to your %s account." : "%s erişim iznini %s hesabınız için vermek üzeresiniz.",
"Depending on your configuration, this button could also work to trust the domain:" : "Yapılandırmanıza bağlı olarak, bu düğme etki alanına güvenmek için de kullanılabilir:",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "Bitirmek için zamanlanmış görev bekleniyor (5 saniye sonra yeniden denetlenecek)…",
"Copy URL" : "Adresi Kopyala",
"Enable" : "Etkinleştir",
"{sharee} (conversation)" : "{sharee} (görüşme)",
diff --git a/core/l10n/vi.js b/core/l10n/vi.js
index f5226f674a0..a3d4928fff2 100644
--- a/core/l10n/vi.js
+++ b/core/l10n/vi.js
@@ -133,6 +133,7 @@ OC.L10N.register(
"Expiration date" : "Ngày kết thúc",
"Unshare" : "Bỏ chia sẻ",
"Share link" : "Chia sẻ liên kết",
+ "Password protect by Talk" : "Mật khẩu bảo vệ bằng đàm thoại",
"Could not unshare" : "Không thể chia sẻ",
"Shared with you and the group {group} by {owner}" : "Đã được chia sẽ với bạn và nhóm {group} bởi {owner}",
"Shared with you by {owner}" : "Đã được chia sẽ bởi {owner}",
@@ -147,7 +148,6 @@ OC.L10N.register(
"Can create" : "Có thể tạo",
"Can change" : "Có thể thay đổi",
"Can delete" : "Có thể xóa",
- "Password protect by Talk" : "Mật khẩu bảo vệ bằng đàm thoại",
"Access control" : "Kiểm soát truy cập",
"Error while sharing" : "Lỗi trong quá trình chia sẻ",
"Share details could not be loaded for this item." : "Các chi tiết chia sẻ không thể được nạp đối với mục này",
@@ -307,7 +307,6 @@ OC.L10N.register(
"Back to log in" : "Trở lại trang đăng nhập",
"You are about to grant %s access to your %s account." : "Bạn sắp được phép %s truy nhập tới tài khoản %s của bạn.",
"Depending on your configuration, this button could also work to trust the domain:" : "Phụ thuộc vào cấu hình của bạn, nút lệnh này có thể hoạt động để bảo đảm tin tưởng tên miền:",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "Chờ hoàn tất cron (kiểm tra lại trong 5s nữa)...",
"Enable" : "Bật"
},
"nplurals=1; plural=0;");
diff --git a/core/l10n/vi.json b/core/l10n/vi.json
index 9a405502a58..ba2e77671b2 100644
--- a/core/l10n/vi.json
+++ b/core/l10n/vi.json
@@ -131,6 +131,7 @@
"Expiration date" : "Ngày kết thúc",
"Unshare" : "Bỏ chia sẻ",
"Share link" : "Chia sẻ liên kết",
+ "Password protect by Talk" : "Mật khẩu bảo vệ bằng đàm thoại",
"Could not unshare" : "Không thể chia sẻ",
"Shared with you and the group {group} by {owner}" : "Đã được chia sẽ với bạn và nhóm {group} bởi {owner}",
"Shared with you by {owner}" : "Đã được chia sẽ bởi {owner}",
@@ -145,7 +146,6 @@
"Can create" : "Có thể tạo",
"Can change" : "Có thể thay đổi",
"Can delete" : "Có thể xóa",
- "Password protect by Talk" : "Mật khẩu bảo vệ bằng đàm thoại",
"Access control" : "Kiểm soát truy cập",
"Error while sharing" : "Lỗi trong quá trình chia sẻ",
"Share details could not be loaded for this item." : "Các chi tiết chia sẻ không thể được nạp đối với mục này",
@@ -305,7 +305,6 @@
"Back to log in" : "Trở lại trang đăng nhập",
"You are about to grant %s access to your %s account." : "Bạn sắp được phép %s truy nhập tới tài khoản %s của bạn.",
"Depending on your configuration, this button could also work to trust the domain:" : "Phụ thuộc vào cấu hình của bạn, nút lệnh này có thể hoạt động để bảo đảm tin tưởng tên miền:",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "Chờ hoàn tất cron (kiểm tra lại trong 5s nữa)...",
"Enable" : "Bật"
},"pluralForm" :"nplurals=1; plural=0;"
} \ No newline at end of file
diff --git a/core/l10n/zh_CN.js b/core/l10n/zh_CN.js
index de14f8b09b8..39b0b8a58c9 100644
--- a/core/l10n/zh_CN.js
+++ b/core/l10n/zh_CN.js
@@ -178,6 +178,7 @@ OC.L10N.register(
"Note to recipient" : "备注",
"Unshare" : "取消共享",
"Share link" : "共享链接",
+ "Password protect by Talk" : "通过 Talk 保护密码",
"Could not unshare" : "无法共享",
"Shared with you and the group {group} by {owner}" : "{owner} 共享给您及 {group} 分组",
"Shared with you and {circle} by {owner}" : "{owner} 共享给您及 {circle}",
@@ -196,7 +197,6 @@ OC.L10N.register(
"Can create" : "可以创建",
"Can change" : "可以修改",
"Can delete" : "可以删除",
- "Password protect by Talk" : "通过 Talk 保护密码",
"Access control" : "访问控制",
"{shareInitiatorDisplayName} shared via link" : "{shareInitiatorDisplayName} 通过链接共享",
"Error while sharing" : "共享时出错",
@@ -408,7 +408,6 @@ OC.L10N.register(
"Back to log in" : "返回登录",
"You are about to grant %s access to your %s account." : "你将分配 %s 访问权限给你的 %s 账户。",
"Depending on your configuration, this button could also work to trust the domain:" : "取决于配置,此按钮也可用作设置信任域名:",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "等待cron进程结束(5秒后重新检测) …",
"Copy URL" : "复制超链接",
"Enable" : "启用",
"{sharee} (conversation)" : "{sharee}(对话)",
diff --git a/core/l10n/zh_CN.json b/core/l10n/zh_CN.json
index e2806e58b00..0aa703b9dc4 100644
--- a/core/l10n/zh_CN.json
+++ b/core/l10n/zh_CN.json
@@ -176,6 +176,7 @@
"Note to recipient" : "备注",
"Unshare" : "取消共享",
"Share link" : "共享链接",
+ "Password protect by Talk" : "通过 Talk 保护密码",
"Could not unshare" : "无法共享",
"Shared with you and the group {group} by {owner}" : "{owner} 共享给您及 {group} 分组",
"Shared with you and {circle} by {owner}" : "{owner} 共享给您及 {circle}",
@@ -194,7 +195,6 @@
"Can create" : "可以创建",
"Can change" : "可以修改",
"Can delete" : "可以删除",
- "Password protect by Talk" : "通过 Talk 保护密码",
"Access control" : "访问控制",
"{shareInitiatorDisplayName} shared via link" : "{shareInitiatorDisplayName} 通过链接共享",
"Error while sharing" : "共享时出错",
@@ -406,7 +406,6 @@
"Back to log in" : "返回登录",
"You are about to grant %s access to your %s account." : "你将分配 %s 访问权限给你的 %s 账户。",
"Depending on your configuration, this button could also work to trust the domain:" : "取决于配置,此按钮也可用作设置信任域名:",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "等待cron进程结束(5秒后重新检测) …",
"Copy URL" : "复制超链接",
"Enable" : "启用",
"{sharee} (conversation)" : "{sharee}(对话)",
diff --git a/core/l10n/zh_TW.js b/core/l10n/zh_TW.js
index fcbe3615f98..98cd2a24a45 100644
--- a/core/l10n/zh_TW.js
+++ b/core/l10n/zh_TW.js
@@ -162,6 +162,7 @@ OC.L10N.register(
"Note to recipient" : "給收件人的訊息",
"Unshare" : "取消分享",
"Share link" : "分享連結",
+ "Password protect by Talk" : "密碼受 Talk 保護",
"Could not unshare" : "無法取消分享",
"Shared with you and the group {group} by {owner}" : "由 {owner} 分享給您和 {group}",
"Shared with you and {circle} by {owner}" : "{owner} 分享給你和 {circle}",
@@ -180,7 +181,6 @@ OC.L10N.register(
"Can create" : "新增",
"Can change" : "允許更動",
"Can delete" : "允許刪除",
- "Password protect by Talk" : "密碼受 Talk 保護",
"Access control" : "存取控制",
"{shareInitiatorDisplayName} shared via link" : "{shareInitiatorDisplayName} 分享了連結",
"Error while sharing" : "分享時發生錯誤",
@@ -376,7 +376,6 @@ OC.L10N.register(
"Back to log in" : "回到登入頁面",
"You are about to grant %s access to your %s account." : "您將授予「%s」存取您的 %s 帳戶",
"Depending on your configuration, this button could also work to trust the domain:" : "根據你的設定值,此按鈕也可用於信任以下網域:",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "等待 cron 結束(5 秒後重新檢查)…",
"Enable" : "啟用",
"{sharee} (conversation)" : "{sharee} (對話)",
"Please log in before granting %s access to your %s account." : "請登入後再授權 %s 存取你的 %s 帳號",
diff --git a/core/l10n/zh_TW.json b/core/l10n/zh_TW.json
index db2fe767e7e..c9ea8a54ef5 100644
--- a/core/l10n/zh_TW.json
+++ b/core/l10n/zh_TW.json
@@ -160,6 +160,7 @@
"Note to recipient" : "給收件人的訊息",
"Unshare" : "取消分享",
"Share link" : "分享連結",
+ "Password protect by Talk" : "密碼受 Talk 保護",
"Could not unshare" : "無法取消分享",
"Shared with you and the group {group} by {owner}" : "由 {owner} 分享給您和 {group}",
"Shared with you and {circle} by {owner}" : "{owner} 分享給你和 {circle}",
@@ -178,7 +179,6 @@
"Can create" : "新增",
"Can change" : "允許更動",
"Can delete" : "允許刪除",
- "Password protect by Talk" : "密碼受 Talk 保護",
"Access control" : "存取控制",
"{shareInitiatorDisplayName} shared via link" : "{shareInitiatorDisplayName} 分享了連結",
"Error while sharing" : "分享時發生錯誤",
@@ -374,7 +374,6 @@
"Back to log in" : "回到登入頁面",
"You are about to grant %s access to your %s account." : "您將授予「%s」存取您的 %s 帳戶",
"Depending on your configuration, this button could also work to trust the domain:" : "根據你的設定值,此按鈕也可用於信任以下網域:",
- "Waiting for cron to finish (checks again in 5 seconds) …" : "等待 cron 結束(5 秒後重新檢查)…",
"Enable" : "啟用",
"{sharee} (conversation)" : "{sharee} (對話)",
"Please log in before granting %s access to your %s account." : "請登入後再授權 %s 存取你的 %s 帳號",