openrat-cms

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

commit 040cf18589ab615619e0011b9d76820b3e9f451e
parent 2be9076b6af7decb82c985ff13d3e05c6d88866b
Author: dankert <devnull@localhost>
Date:   Sun, 28 Nov 2004 22:28:54 +0100

Anpassen an neue Sprachdatei-Konventionen

Diffstat:
themes/default/pages/html/folder/new.tpl.php | 12++++++------
themes/default/pages/html/folder/prop.tpl.php | 18+++++++++---------
themes/default/pages/html/folder/show.tpl.php | 12++++++------
3 files changed, 21 insertions(+), 21 deletions(-)

diff --git a/themes/default/pages/html/folder/new.tpl.php b/themes/default/pages/html/folder/new.tpl.php @@ -10,7 +10,7 @@ <table class="main" width="90%" cellspacing="0" cellpadding="4"> <tr> - <th colspan="4"><?php echo lang('NEW') ?></th> + <th colspan="4"><?php echo lang('GLOBAL_NEW') ?></th> </tr> <?php $nr = 0 ?> @@ -22,7 +22,7 @@ { ?> <tr> <td class="f1"> - <input type="radio" name="type" value="page" onClick="document.forms[0].pagename.focus();"><?php echo lang('PAGE') ?> + <input type="radio" name="type" value="page" onClick="document.forms[0].pagename.focus();"><?php echo lang('GLOBAL_PAGE') ?> </td> <td class="f1"> <?php echo Html::selectBox('templateid',$templates) ?> @@ -42,7 +42,7 @@ { ?> <tr> <td class="f1"> - <input type="radio" name="type" value="file" onClick="document.forms[0].file.focus();"><?php echo lang('FILE') ?> + <input type="radio" name="type" value="file" onClick="document.forms[0].file.focus();"><?php echo lang('GLOBAL_FILE') ?> </td> <td class="f1"> <input type="file" name="file" onFocus="document.forms[0].type[<?php echo $nr++ ?>].checked=true;" tabindex="<?php echo $tab++ ?>"> @@ -54,7 +54,7 @@ { ?> <tr> <td class="f1"> - <input type="radio" name="type" value="folder" onClick="document.forms[0].foldername.focus();"><?php echo lang('FOLDER') ?> + <input type="radio" name="type" value="folder" onClick="document.forms[0].foldername.focus();"><?php echo lang('GLOBAL_FOLDER') ?> </td> <td class="f1"> <input type="text" name="foldername" size="20" value="" onFocus="document.forms[0].type[<?php echo $nr++ ?>].checked=true;" tabindex="<?php echo $tab++ ?>"> @@ -66,7 +66,7 @@ { ?> <tr> <td class="f1"> - <input type="radio" name="type" value="link" onClick="document.forms[0].linkname.focus();"><?php echo lang('link') ?> + <input type="radio" name="type" value="link" onClick="document.forms[0].linkname.focus();"><?php echo lang('GLOBAL_LINK') ?> </td> <td class="f1"> <input type="text" name="linkname" size="20" value="" onFocus="document.forms[0].type[<?php echo $nr++ ?>].checked=true;" tabindex="<?php echo $tab++ ?>"> @@ -76,7 +76,7 @@ <tr> <td colspan="5" class="act"> - <input type="submit" class="submit" value="<?php echo lang('NEW') ?>"> + <input type="submit" class="submit" value="<?php echo lang('GLOBAL_NEW') ?>"> </td> </tr> diff --git a/themes/default/pages/html/folder/prop.tpl.php b/themes/default/pages/html/folder/prop.tpl.php @@ -10,37 +10,37 @@ <table class="main" width="90%" cellspacing="0" cellpadding="4"> <tr> - <th colspan="2"><?php echo lang('PROP') ?></th> + <th colspan="2"><?php echo lang('GLOBAL_PROP') ?></th> </tr> <tr> -<td width="50%" rowspan="2" class="f1"><?php echo lang('name') ?></a></td> +<td width="50%" rowspan="2" class="f1"><?php echo lang('GLOBAL_name') ?></a></td> <td width="50%" class="f1"><input class="name" type="text" name="name" size="50" value="<?php echo $name ?>"></td> </tr> <tr> -<td width="50%" class="help"><?php echo lang('HELP_NAME') ?></td> +<td width="50%" class="help"><?php echo lang('GLOBAL_NAME_DESC') ?></td> </tr> <tr> -<td width="50%" rowspan="2" class="f1"><?php echo lang('filename') ?></a></td> +<td width="50%" rowspan="2" class="f1"><?php echo lang('GLOBAL_filename') ?></a></td> <td width="50%" class="f1"><input class="filename" type="text" name="filename" size="50" value="<?php echo $filename ?>"></td> </tr> <tr> -<td width="50%" class="help"><?php echo lang('HELP_FILENAME') ?></td> +<td width="50%" class="help"><?php echo lang('GLOBAL_FILENAME_DESC') ?></td> </tr> <tr> -<td width="50%" class="f2"><?php echo lang('description') ?></a></td> +<td width="50%" class="f2"><?php echo lang('GLOBAL_description') ?></a></td> <td width="50%" class="f2"><textarea class="desc" cols="40" rows="10" name="desc"><?php echo $desc ?></textarea></td> </tr> <?php if($delete) { ?> <tr> -<td width="50%" class="f2"><?php echo lang('delete') ?></a></td> +<td width="50%" class="f2"><?php echo lang('GLOBAL_delete') ?></a></td> <td width="50%" class="f2"><?php echo Html::checkBox('delete') ?></td> </tr> <?php } ?> <tr> -<td class="act"><input type="submit" class="submit" value="<?php echo lang('SAVE') ?>"></td> -<td class="act"><input type="reset" class="reset" value="<?php echo lang('UNDO') ?>" onClick="document.forms[0].name.focus();"></td> +<td class="act"><input type="submit" class="submit" value="<?php echo lang('GLOBAL_SAVE') ?>"></td> +<td class="act"><input type="reset" class="reset" value="<?php echo lang('GLOBAL_UNDO') ?>" onClick="document.forms[0].name.focus();"></td> </tr> </table> diff --git a/themes/default/pages/html/folder/show.tpl.php b/themes/default/pages/html/folder/show.tpl.php @@ -7,14 +7,14 @@ <input type="hidden" name="action" value="folder" /> <input type="hidden" name="subaction" value="multiple" /> -<?php $table_title_text = lang('FOLDER'); +<?php $table_title_text = lang('GLOBAL_FOLDER'); $table_title_colspan = 7; include( $tpl_dir.'table_open.tpl.php'); $writable = isset($folder); ?> <tr> -<td colspan="7" class="help"><?php echo lang('HELP_FOLDER') ?></td> +<td colspan="7" class="help"><?php echo lang('GLOBAL_FOLDER_DESC') ?></td> </tr> @@ -31,9 +31,9 @@ ?> <tr> <td width="5%" class="help" >&nbsp;</td> -<td width="60%" class="help" ><?php if ($sortable) { ?><a href="<?php echo $orderbytype_url ?>" title="<?php echo lang('FOLDER_ORDERBYTYPE' ) ?>"><?php } ?><?php echo lang('GLOBAL_TYPE') ?><?php if ($sortable) { ?></a><?php } ?> / <?php if ($sortable) { ?><a href="<?php echo $orderbyname_url ?>" title="<?php echo lang('FOLDER_ORDERBYNAME') ?>"><?php } ?><?php echo lang('GLOBAL_NAME') ?><?php if ($sortable) { ?></a><?php } ?></td> -<td width="20%" class="help" ><?php if ($sortable) { ?><a href="<?php echo $orderbylastchange_url ?>" title="<?php echo lang('FOLDER_ORDERBYLASTCHANGE') ?>"><?php } ?><?php echo lang('LASTCHANGE' ) ?><?php if ($sortable) { ?></a><?php } ?></td> -<td width="30%" class="help" colspan="4"><?php if ($sortable) { ?><a href="<?php echo $flip_url ?>" title="<?php echo lang('FOLDER_FLIP') ?>"><?php } ?><?php echo lang('FOLDER_ORDER') ?><?php if ($sortable) { ?></a><?php } ?></td> +<td width="60%" class="help" ><?php if ($sortable) { ?><a href="<?php echo $orderbytype_url ?>" title="<?php echo lang('FOLDER_ORDERBYTYPE' ) ?>"><?php } ?><?php echo lang('GLOBAL_TYPE' ) ?><?php if ($sortable) { ?></a><?php } ?> / <?php if ($sortable) { ?><a href="<?php echo $orderbyname_url ?>" title="<?php echo lang('FOLDER_ORDERBYNAME') ?>"><?php } ?><?php echo lang('GLOBAL_NAME') ?><?php if ($sortable) { ?></a><?php } ?></td> +<td width="20%" class="help" ><?php if ($sortable) { ?><a href="<?php echo $orderbylastchange_url ?>" title="<?php echo lang('FOLDER_ORDERBYLASTCHANGE') ?>"><?php } ?><?php echo lang('GLOBAL_LASTCHANGE') ?><?php if ($sortable) { ?></a><?php } ?></td> +<td width="30%" class="help" colspan="4"><?php if ($sortable) { ?><a href="<?php echo $flip_url ?>" title="<?php echo lang('FOLDER_FLIP') ?>"><?php } ?><?php echo lang('FOLDER_ORDER' ) ?><?php if ($sortable) { ?></a><?php } ?></td> </tr> <?php $f1=true; @@ -75,7 +75,7 @@ <?php echo lang('GLOBAL_LINK') ?> <?php echo lang('GLOBAL_TO') ?> <br/> <input type="radio" name="type" value="delete" /> - <?php echo lang('DELETE') ?> + <?php echo lang('GLOBAL_DELETE') ?> </td><td> <?php echo Html::selectBox('targetobjectid',$folder,$act_objectid) ?> </td><td>