Add translation keys

This commit is contained in:
yflory
2019-07-16 17:29:55 +02:00
parent 65d76a9241
commit 9b45f0dd79
4 changed files with 60 additions and 8 deletions

View File

@@ -115,18 +115,48 @@ define([
// Display the notification
content.getFormatText = function () {
return 'Edit access request: ' + msg.content.title + ' - ' + msg.content.user.displayName;
}; // XXX
return Messages._getKey('requestEdit_request', [msg.content.title, msg.content.displayName]);
};
// if not archived, add handlers
content.handler = function () {
UI.confirm("Give edit rights?", function (yes) {
var metadataMgr = common.getMetadataMgr();
var priv = metadataMgr.getPrivateData();
var link = h('a', {
href: '#'
}, Messages.requestEdit_viewPad);
var verified = h('p.cp-notifications-requestedit-verified');
if (priv.friends && priv.friends[msg.author]) {
var f = priv.friends[msg.author];
var $verified = $(verified);
$verified.append(h('span.fa.fa-certificate'));
var $avatar = $(h('span.cp-avatar')).appendTo($verified);
$verified.append(h('p', Messages._getKey('requestEdit_verified', [f.displayName])));
common.displayAvatar($avatar, f.avatar, f.displayName);
}
var div = h('div', [
h('p', Messages._getKey('requestEdit_confirm', [msg.content.title, msg.content.displayName])),
verified,
link
]);
$(link).click(function (e) {
e.preventDefault();
e.stopPropagation();
common.openURL(msg.content.href);
});
UI.confirm(div, function (yes) {
if (!yes) { return; }
common.getSframeChannel().event('EV_GIVE_ACCESS', {
channel: msg.content.channel,
user: msg.content.user
});
defaultDismiss(common, data)();
}, {
ok: Messages.friendRequest_accept,
cancel: Messages.friendRequest_decline
});
};
@@ -146,8 +176,8 @@ define([
// Display the notification
content.getFormatText = function () {
return 'Edit access received: ' + msg.content.title + ' from ' + msg.content.user.displayName;
}; // XXX
return Messages._getKey('requestEdit_accepted', [msg.content.title, msg.content.displayName]);
};
// if not archived, add handlers
content.handler = function () {