From: Carsten K. <car...@us...> - 2001-12-19 15:54:37
|
Update of /cvsroot/phpwiki/phpwiki/templates In directory usw-pr-cvs1:/tmp/cvs-serv26167/phpwiki/templates Modified Files: editpage.html Log Message: joined a few text fragments for improved localization-ability & slightly simplify php code in html templates Index: editpage.html =================================================================== RCS file: /cvsroot/phpwiki/phpwiki/templates/editpage.html,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -r1.30 -r1.31 *** editpage.html 2001/12/19 03:46:32 1.30 --- editpage.html 2001/12/19 15:54:34 1.31 *************** *** 69,75 **** <td align="right"> <?php if ($user->is_authenticated()) { ?> ! $_("You are signed in as") <?php echo LinkWikiWord($USERID); ?> <?php } else { ?> ! $_("Author will be logged as") <i>${USERID}</i> | <a class="wikiaction" href="${ACTION}login">$_("SignIn")<small>*</small></a> <br><small>*backup and reload after signing in</small> --- 69,75 ---- <td align="right"> <?php if ($user->is_authenticated()) { ?> ! <?php printf(_("You are signed in as %s."), LinkWikiWord($USERID)); ?> <?php } else { ?> ! <?php printf(_("Author will be logged as %s."),"<em>${USERID}</em>"); ?> | <a class="wikiaction" href="${ACTION}login">$_("SignIn")<small>*</small></a> <br><small>*backup and reload after signing in</small> *************** *** 78,84 **** </tr></table> <p style="clear: both; padding: 2ex 0ex 0ex;"> ! $_("You can change the size of the editing area in") ! <?php echo LinkExistingWikiWord(_("UserPreferences")); ?>. ! $_("See") <?php echo LinkExistingWikiWord(_("GoodStyle")) ?> $_("tips for editing.") </p> <hr noshade="noshade" /> --- 78,83 ---- </tr></table> <p style="clear: both; padding: 2ex 0ex 0ex;"> ! <?php printf(_("You can change the size of the editing area in %s."), LinkExistingWikiWord(_("UserPreferences"))); ?> ! <?php printf(_("See %s tips for editing."),LinkExistingWikiWord(_("GoodStyle"))); ?> </p> <hr noshade="noshade" /> |