From: <var...@us...> - 2022-01-05 16:07:41
|
Revision: 10823 http://sourceforge.net/p/phpwiki/code/10823 Author: vargenau Date: 2022-01-05 16:07:40 +0000 (Wed, 05 Jan 2022) Log Message: ----------- Translate title Modified Paths: -------------- trunk/themes/MonoBook/templates/actionbar.tmpl Modified: trunk/themes/MonoBook/templates/actionbar.tmpl =================================================================== --- trunk/themes/MonoBook/templates/actionbar.tmpl 2022-01-05 16:05:57 UTC (rev 10822) +++ trunk/themes/MonoBook/templates/actionbar.tmpl 2022-01-05 16:07:40 UTC (rev 10823) @@ -48,10 +48,9 @@ <?php } ?> <?php } ?> - - <?php if ( $user->isSignedIn() ) { ?> - <?php echo ActionButton(_("WatchPage"), _("Watch"), false, - array('title'=>"Add/Remove this to/from the list of pages you're monitoring for changes")) ?> + <?php if ($user->isSignedIn()) { ?> + <?php echo ActionButton(__("WatchPage"), _("Watch"), false, + array('title'=>_("Add/Remove this to/from the list of pages you're monitoring for changes"))) ?> <?php } ?> </ul> </div> @@ -61,7 +60,7 @@ <h2><?php echo _("Special Actions") ?></h2> <div class="pBody"> <ul> - <?php if ( $user->isSignedIn() ) { ?> + <?php if ($user->isSignedIn()) { ?> <?php if ($isAdmin or mayAccessPage('change', $pagename)) { ?> <?php if (ENABLE_PAGEPERM and mayAccessPage('change', $pagename)) { ?> <?php echo ActionButton('chown') ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |