Analogpoint |
09-13-2007 02:54 AM |
I've installed this, and I like it quite a bit. Just one minor adjustment is due. The phrase qpipm_quote_post_in_pm should be adjusted to allow for translating. Not all languages are going to put the username at the end of the sentence, so the phrase should be:
Quote:
"Quote this post in a PM to {1}"
|
Instead of
Quote:
"Quote this post in a PM to"
|
And close the <phrase> tag in the template:
From this:
Code:
<if condition="$show['pmlink']">
<tr><td class="vbmenu_option"><a href="private.php?$session[sessionurl]do=newpm&u=$post[userid]&postid=$post[postid]"><phrase 1="$post[username]">$vbphrase[qpipm_quote_post_in_pm] $post[username]</a></td></tr>
</if>
To this:
Code:
<if condition="$show['pmlink']">
<tr><td class="vbmenu_option"><a href="private.php?$session[sessionurl]do=newpm&u=$post[userid]&postid=$post[postid]"><phrase 1="$post[username]">$vbphrase[qpipm_quote_post_in_pm]</phrase></a></td></tr>
</if>
And maybe I've got OCD, but I'd rather see you use $vbphrase[reply_prefix] instead of creating two new phrases qpipm_re_post and qpipm_re_thread.
|