|
From: <var...@us...> - 2022-01-05 16:09:19
|
Revision: 10824
http://sourceforge.net/p/phpwiki/code/10824
Author: vargenau
Date: 2022-01-05 16:09:17 +0000 (Wed, 05 Jan 2022)
Log Message:
-----------
Less strings
Modified Paths:
--------------
trunk/themes/Portland/templates/actionbar.tmpl
Modified: trunk/themes/Portland/templates/actionbar.tmpl
===================================================================
--- trunk/themes/Portland/templates/actionbar.tmpl 2022-01-05 16:07:40 UTC (rev 10823)
+++ trunk/themes/Portland/templates/actionbar.tmpl 2022-01-05 16:09:17 UTC (rev 10824)
@@ -1,7 +1,7 @@
<?php
- if ($revision and (!$page->get('locked') || $user->isAdmin()))
+ if ($revision && (!$page->get('locked') || $user->isAdmin()))
$EditB = Button("edit",
- $revision->isCurrent() ? _("EditText") : _("Edit Old Revision"));
+ $revision->isCurrent() ? _("Edit") : _("Edit Old Revision"));
else
$EditB = Button("viewsource", _("View Source"));
$EditB = fmt("%s of this page", $EditB);
@@ -9,9 +9,9 @@
?>
<?php echo $EditB ?>
<a href="<?php echo WikiURL($revision,array('action'=>'diff'))?>"><?php echo $WikiTheme->getLastModifiedMessage($revision) ?></a>
- <?php echo $SEP?><?php echo Button(__("PageHistory"), _("Page History")) ?>
- <?php echo $SEP?><?php echo Button(__("PageInfo"), _("Page Info")) ?>
+<?php echo $SEP?><?php echo Button(__("PageHistory"), _("Page History")) ?>
+<?php echo $SEP?><?php echo Button(__("PageInfo"), _("Page Info")) ?>
<?php if (defined('DEBUG') && DEBUG || $user->isAdmin()) { ?>
- <?php echo $SEP?><?php echo Button(__("DebugBackendInfo"), _("Debug Backend Info")) ?> <?php // For debugging only, really ?>
+<?php echo $SEP?><?php echo Button(__("DebugBackendInfo"), _("Debug Backend Info")) ?>
<?php } ?>
<br />
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|