fix non localized said: in quotes

This commit is contained in:
Sam 2013-07-16 17:22:54 +10:00
parent 943f88fb88
commit ff7d9cac38
4 changed files with 3 additions and 3 deletions

View File

@ -254,7 +254,7 @@ Discourse.BBCode = {
// Arguments for formatting
args = {
username: username,
username: I18n.t('user.said',{username: username}),
params: params,
quote: content,
avatarImg: opts.lookupAvatar ? opts.lookupAvatar(username) : void 0

View File

@ -3,7 +3,6 @@
<div class='quote-controls'></div>
{{{avatarImg}}}
{{username}}
said:
</div>
<blockquote>{{{quote}}}</blockquote>
</aside>

View File

@ -168,6 +168,7 @@ en:
"13": "Inbox"
user:
said: "{{username}} said:"
profile: Profile
mute: Mute
edit: Edit Preferences

View File

@ -1,6 +1,6 @@
<table cellspacing="0" cellpadding="0" style="border: 1px solid #eee; -webkit-border-radius: 10px;">
<tr>
<th style="text-align:left; background-color: #eee; padding: 5px">{{{avatarImg}}} {{username}} said:</th>
<th style="text-align:left; background-color: #eee; padding: 5px">{{{avatarImg}}} {{username}}</th>
</tr>
<tr>
<td style="padding: 10px; background-color: #f9f9f9">{{{quote}}}</td>