diff options
Diffstat (limited to 'templates/show_add_shout.inc.php')
-rw-r--r-- | templates/show_add_shout.inc.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/show_add_shout.inc.php b/templates/show_add_shout.inc.php index 99d43390..e0eda1a0 100644 --- a/templates/show_add_shout.inc.php +++ b/templates/show_add_shout.inc.php @@ -27,18 +27,18 @@ */ ?> -<?php show_box_top(_('Post to Shoutbox'), 'box box_add_shout'); ?> +<?php show_box_top(T_('Post to Shoutbox'), 'box box_add_shout'); ?> <form method="post" enctype="multipart/form-data" action="<?php echo Config::get('web_path'); ?>/shout.php?action=add_shout"> <table class="tabledata" cellpadding="0" cellspacing="0"> <tr> - <td><strong><?php echo _('Comment:'); ?></strong> + <td><strong><?php echo T_('Comment:'); ?></strong> </tr> <tr> <td><textarea rows="5" cols="70" name="comment"></textarea></td> </tr> <?php if (Access::check('interface','50')) { ?> <tr> - <td><input type="checkbox" name="sticky" /> <strong><?php echo _('Make Sticky'); ?></strong></td> + <td><input type="checkbox" name="sticky" /> <strong><?php echo T_('Make Sticky'); ?></strong></td> </tr> <?php } ?> <tr> @@ -46,7 +46,7 @@ <?php echo Core::form_register('add_shout'); ?> <input type="hidden" name="object_id" value="<?php echo $object->id; ?>" /> <input type="hidden" name="object_type" value="<?php echo strtolower(get_class($object)); ?>" /> - <input type="submit" value="<?php echo _('Create'); ?>" /> + <input type="submit" value="<?php echo T_('Create'); ?>" /> </td> </tr> </table> |