From d637b5e48be6692790288d301029a70793a908a2 Mon Sep 17 00:00:00 2001 From: basst85 Date: Wed, 15 Jan 2014 12:45:06 +0100 Subject: [PATCH] Translate "Reply to (username)..." in textarea --- twister_formatpost.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twister_formatpost.js b/twister_formatpost.js index fdebfdc..9e9e257 100644 --- a/twister_formatpost.js +++ b/twister_formatpost.js @@ -90,7 +90,7 @@ function postToElem( post, kind ) { replyTo += "@" + mentions[i] + " "; } } - elem.find(".post-area-new textarea").attr("placeholder","Reply to " + replyTo + "..."); + elem.find(".post-area-new textarea").attr("placeholder", polyglot.t("reply_to", { fullname: replyTo })+ "..."); elem.find(".post-area-new textarea").attr("data-reply-to",replyTo); postData.attr("data-reply-to",replyTo);