Closed (fixed)
Project:
UIE Forum
Version:
5.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Feature request
Assigned:
Reporter:
Created:
5 Oct 2007 at 19:20 UTC
Updated:
26 Oct 2007 at 04:21 UTC
Could you please make "Recent Forum Posts" and "<strong>[ Sticky ]</strong> " translatable.
uieforum.module
line 227 or 283 in function uieforum_block($op='list', $delta=0, $edit = array())
$UIEForumTitle ='Recent Forum Posts'; or
$block['subject'] = $UIEForumTitle;
change to
$UIEForumTitle = t('Recent Forum Posts'); or
$block['subject'] = t($UIEForumTitle);
line 2291 in function _uieforum_GenerateThreadRow($Thread)
$topic = $sticky ? '<strong>[ Sticky ]</strong> ' : '';
change to
$topic = $sticky ? t('<strong>[ Sticky ]</strong> ') : '';
Would be fine :-)
Comments
Comment #1
daniel.hunt commentedDone and ready to commit :)
Comment #2
(not verified) commented