fix: #7894, translate log in to view

v1.18.x
Barış Soner Uşaklı 5 years ago
parent 3c6c40b177
commit 2a5fe2b8f4

@ -21,6 +21,7 @@
"last_reply_time": "Last reply",
"reply-as-topic": "Reply as topic",
"guest-login-reply": "Log in to reply",
"login-to-view": "🔒 Log in to view",
"edit": "Edit",
"delete": "Delete",
"purge": "Purge",

@ -8,7 +8,8 @@ define('forum/topic/posts', [
'forum/topic/images',
'navigator',
'components',
], function (pagination, infinitescroll, postTools, images, navigator, components) {
'translator',
], function (pagination, infinitescroll, postTools, images, navigator, components, translator) {
var Posts = { };
Posts.onNewPost = function (data) {
@ -309,14 +310,16 @@ define('forum/topic/posts', [
var loginEl = document.createElement('a');
loginEl.className = 'login-required';
loginEl.href = config.relative_path + '/login';
loginEl.appendChild(document.createTextNode('🔒 Log in to view'));
posts.each(function (idx, postEl) {
$(postEl).find('[component="post/content"] img').each(function (idx, imgEl) {
imgEl = $(imgEl);
if (imgEl.attr('src').startsWith(config.relative_path + config.upload_url)) {
imgEl.replaceWith(loginEl.cloneNode(true));
}
translator.translate('[[topic:login-to-view]]', function (translated) {
loginEl.appendChild(document.createTextNode(translated));
posts.each(function (idx, postEl) {
$(postEl).find('[component="post/content"] img').each(function (idx, imgEl) {
imgEl = $(imgEl);
if (imgEl.attr('src').startsWith(config.relative_path + config.upload_url)) {
imgEl.replaceWith(loginEl.cloneNode(true));
}
});
});
});
}

Loading…
Cancel
Save