Update of /cvsroot/phpwiki/phpwiki/templates
In directory usw-pr-cvs1:/tmp/cvs-serv26141/phpwiki/templates
Modified Files:
browse.html
Log Message:
joined a few text fragments for improved localization-ability & slightly simplify php code in html templates
Index: browse.html
===================================================================
RCS file: /cvsroot/phpwiki/phpwiki/templates/browse.html,v
retrieving revision 1.29
retrieving revision 1.30
diff -C2 -r1.29 -r1.30
*** browse.html 2001/12/16 11:46:44 1.29
--- browse.html 2001/12/19 15:54:29 1.30
***************
*** 33,37 ****
<?php if (! $IS_CURRENT) { ?>
<p><strong>$_("Note:")</strong> $_("You are viewing an old revision of this page.")
! $_("Click") <a href="${BROWSE}${PAGEURL}">$_("here")</a> $_("to view the current version.")</p>
<hr class="ignore" noshade="noshade" />
<?php } ?>
--- 33,37 ----
<?php if (! $IS_CURRENT) { ?>
<p><strong>$_("Note:")</strong> $_("You are viewing an old revision of this page.")
! <a href="${BROWSE}${PAGEURL}">$_("View the current version")</a>.</p>
<hr class="ignore" noshade="noshade" />
<?php } ?>
***************
*** 48,54 ****
<td>
<?php if ($IS_CURRENT) { ?>
! $_("Last edited on") ${LASTMODIFIED}
<?php } else { ?>
! $_("Version") ${VERSION} $_(", saved on") ${LASTMODIFIED}
<?php } ?>
</td>
--- 48,54 ----
<td>
<?php if ($IS_CURRENT) { ?>
! <?php printf(_("Last edited on %s."),"${LASTMODIFIED}"); ?>
<?php } else { ?>
! <?php printf(_("Version %s, saved on %s."),"${VERSION}","${LASTMODIFIED}"); ?>
<?php } ?>
</td>
***************
*** 95,99 ****
<td align="right">
<?php if ($user->is_authenticated()) { ?>
! $_("You are signed in as") <?php echo LinkWikiWord($USERID); ?>
| <a class="wikiaction" href="${ACTION}logout">$_("SignOut")</a>
<?php } else { ?>
--- 95,99 ----
<td align="right">
<?php if ($user->is_authenticated()) { ?>
! <?php printf(_("You are signed in as %s"), LinkWikiWord($USERID)); ?>
| <a class="wikiaction" href="${ACTION}logout">$_("SignOut")</a>
<?php } else { ?>
|