openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit efea4e8de5f0bc5337b4396f499ce9d4371e9dbb
parent de3a5d1b5346e6673516014981ea32a635ef1053
Author: dankert <devnull@localhost>
Date:   Sun, 28 Nov 2004 23:39:53 +0100

Anpassen an neue Sprachdatei-Konventionen

Diffstat:
themes/default/pages/html/user/groups.tpl.php | 8++++----
themes/default/pages/html/user/pw.tpl.php | 8++++----
2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/themes/default/pages/html/user/groups.tpl.php b/themes/default/pages/html/user/groups.tpl.php @@ -11,21 +11,21 @@ <table class="main" width="60%" cellspacing="0" cellpadding="4"> <tr> - <th colspan="2"><?php echo lang('MEMBERSHIPS') ?></th> + <th colspan="2"><?php echo lang('USER_MEMBERSHIPS') ?></th> </tr> <?php $f1=true; foreach( $memberships as $id=>$name ) { ?> <tr> <td width="70%" class="<?php if($f1==true) {echo'f1'; }else{echo'f2'; }?>"><img src="<?php echo $image_dir.'icon_group.png' ?>" align="left"><?php echo $name ?></td> -<td width="30%" class="<?php if($f1==true) {echo'f1';$f1=false;}else{echo'f2';$f1=true;}?>"><a href="<?php echo Html::url(array('action'=>'user','subaction'=>'delgroup','groupid'=>$id)) ?>"><?php echo lang('DELETE') ?></a></td> +<td width="30%" class="<?php if($f1==true) {echo'f1';$f1=false;}else{echo'f2';$f1=true;}?>"><a href="<?php echo Html::url(array('action'=>'user','subaction'=>'delgroup','groupid'=>$id)) ?>"><?php echo lang('GLOBAL_DELETE') ?></a></td> </tr> <?php } if ( count($memberships) == 0 ) { ?> <tr> -<td colspan="2" class="f1"><?php echo lang('NOT_FOUND') ?></td> +<td colspan="2" class="f1"><?php echo lang('GLOBAL_NOT_FOUND') ?></td> </tr> <?php } ?> @@ -34,7 +34,7 @@ <tr> <td width="70%" class="act"><?php echo Html::selectBox('groupid',$groups) ?></a></td> - <td width="30%" class="act"><input type="submit" class="submit" value="<?php echo lang('ADD') ?>"></td> + <td width="30%" class="act"><input type="submit" class="submit" value="<?php echo lang('GLOBAL_ADD') ?>"></td> </tr> </table> diff --git a/themes/default/pages/html/user/pw.tpl.php b/themes/default/pages/html/user/pw.tpl.php @@ -11,14 +11,14 @@ <table class="main" width="90%" cellspacing="0" cellpadding="4"> <tr> - <th colspan="2"><?php echo lang('PASSWORD') ?></th> + <th colspan="2"><?php echo lang('USER_PASSWORD') ?></th> </tr> <tr> -<td width="50%" class="f1"><?php echo lang('new_password') ?></a></td> +<td width="50%" class="f1"><?php echo lang('USER_new_password') ?></a></td> <td width="50%" class="f1"><input type="password" name="password1"></td> </tr> <tr> -<td width="50%" class="f2"><?php echo lang('new_password_repeat') ?></a></td> +<td width="50%" class="f2"><?php echo lang('USER_new_password_repeat') ?></a></td> <td width="50%" class="f2"><input type="password" name="password2"></td> </tr> <tr> @@ -26,7 +26,7 @@ <td width="50%" class="f2"><?php echo Html::checkBox('mail',false,true) ?></td> </tr> <tr> -<td class="act" colspan="2"><input type="submit" class="submit" value="<?php echo lang('SAVE') ?>"></td> +<td class="act" colspan="2"><input type="submit" class="submit" value="<?php echo lang('GLOBAL_SAVE') ?>"></td> </tr> </table>