summaryrefslogtreecommitdiff
path: root/inc/template.php
diff options
context:
space:
mode:
authorAnika Henke <anika@selfthinker.org>2012-01-29 18:25:52 +0000
committerAnika Henke <anika@selfthinker.org>2012-01-29 18:25:52 +0000
commit61917024a6e927db44aff03e4d7ea5a64bd3ec08 (patch)
tree96ad4e8ca1d3090165d49f53ccb38f893afc70d7 /inc/template.php
parent5371328c2ade9ee2c2e09db62992fe4cfaadbbf1 (diff)
downloadrpg-61917024a6e927db44aff03e4d7ea5a64bd3ec08.tar.gz
rpg-61917024a6e927db44aff03e4d7ea5a64bd3ec08.tar.bz2
added 5 new language strings for action tools and skip link (needs translations)
This is in preparation for the new default template. This also updates the tpl_actiondropdown() to use most of them.
Diffstat (limited to 'inc/template.php')
-rw-r--r--inc/template.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/inc/template.php b/inc/template.php
index 024bf985c..ca4b6327d 100644
--- a/inc/template.php
+++ b/inc/template.php
@@ -1270,7 +1270,7 @@ function tpl_actiondropdown($empty='',$button='&gt;'){
echo '<select name="do" class="edit quickselect">';
echo '<option value="">'.$empty.'</option>';
- echo '<optgroup label=" &mdash; ">';
+ echo '<optgroup label="'.$lang['page_tools'].'">';
$act = tpl_get_action('edit');
if($act) echo '<option value="'.$act['params']['do'].'">'.$lang['btn_'.$act['type']].'</option>';
@@ -1284,7 +1284,7 @@ function tpl_actiondropdown($empty='',$button='&gt;'){
if($act) echo '<option value="'.$act['params']['do'].'">'.$lang['btn_'.$act['type']].'</option>';
echo '</optgroup>';
- echo '<optgroup label=" &mdash; ">';
+ echo '<optgroup label="'.$lang['site_tools'].'">';
$act = tpl_get_action('recent');
if($act) echo '<option value="'.$act['params']['do'].'">'.$lang['btn_'.$act['type']].'</option>';
@@ -1292,7 +1292,7 @@ function tpl_actiondropdown($empty='',$button='&gt;'){
if($act) echo '<option value="'.$act['params']['do'].'">'.$lang['btn_'.$act['type']].'</option>';
echo '</optgroup>';
- echo '<optgroup label=" &mdash; ">';
+ echo '<optgroup label="'.$lang['user_tools'].'">';
$act = tpl_get_action('login');
if($act) echo '<option value="'.$act['params']['do'].'">'.$lang['btn_'.$act['type']].'</option>';