From: <var...@us...> - 2016-03-18 16:24:59
|
Revision: 9822 http://sourceforge.net/p/phpwiki/code/9822 Author: vargenau Date: 2016-03-18 16:24:57 +0000 (Fri, 18 Mar 2016) Log Message: ----------- Remove access keys Modified Paths: -------------- trunk/themes/MonoBook/templates/actionbar.tmpl trunk/themes/Sidebar/templates/actionbar.tmpl Modified: trunk/themes/MonoBook/templates/actionbar.tmpl =================================================================== --- trunk/themes/MonoBook/templates/actionbar.tmpl 2016-03-18 16:21:00 UTC (rev 9821) +++ trunk/themes/MonoBook/templates/actionbar.tmpl 2016-03-18 16:24:57 UTC (rev 9822) @@ -12,7 +12,7 @@ <?php $talk = new WikiPageName('Talk:'.$pagename); ?> <?php echo ActionButton(array(), $isActionPage ? _("Action Page") : _("Article"), - $talk->getParent(), array('class'=>$isBrowse ? "selected" : "", 'title' => "View the page [alt-c]")) ?> + $talk->getParent(), array('class'=>$isBrowse ? "selected" : "", 'title' => "View the page")) ?> <?php if (!$isActionPage) { ?> <?php if ($dbh->isWikiPage($talk->getName())) { ?> <?php echo ActionButton(array('action'=>'browse'), _("Discussion"), $talk->getName()) ?> @@ -24,19 +24,19 @@ <?php } ?> <?php } else { $talk = new WikiPageName($pagename); ?> - <?php echo ActionButton(array(),$isActionPage ? _("Action Page") : _("Article"), $talk->getParent(), array('title' => "View the page [alt-c]")) ?> + <?php echo ActionButton(array(),$isActionPage ? _("Action Page") : _("Article"), $talk->getParent(), array('title' => "View the page")) ?> <?php echo ActionButton(array(),_("Discussion"), $talk->getName(), array('class'=>$isBrowse ? "selected" : "")) ?> <?php } ?> <?php if (($isAdmin or mayAccessPage('edit', $pagename)) and $revision) { ?> <?php echo ActionButton("edit", $dbh->isWikiPage($page->getName()) ? ($revision->isCurrent() ? _("Edit") : _("Edit Old Revision")) : _("Create Page"), false, - array('id' => 'btn-edit', 'title' => "You can edit this page. Please use the preview button before saving. [alt-e]")) ?> + array('id' => 'btn-edit', 'title' => "You can edit this page. Please use the preview button before saving.")) ?> <?php } else { ?> <?php echo ActionButton("viewsource", _("View Source")) ?> <?php } ?> <?php if ($dbh->isWikiPage($page->getName())) { ?> - <?php echo ActionButton(_("PageHistory"),_("History"),false,array('title'=>"Past versions of this page. [alt-h]")) ?> + <?php echo ActionButton(_("PageHistory"),_("History"),false,array('title'=>"Past versions of this page.")) ?> <?php if (!empty($revision) and ($isAdmin or mayAccessPage('purge', $pagename))) { ?> <?php echo ActionButton("purge") ?> @@ -51,7 +51,7 @@ <?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 [alt-l]")) ?> + array('title'=>"Add/Remove this to/from the list of pages you're monitoring for changes")) ?> <?php } ?> </ul> </div> Modified: trunk/themes/Sidebar/templates/actionbar.tmpl =================================================================== --- trunk/themes/Sidebar/templates/actionbar.tmpl 2016-03-18 16:21:00 UTC (rev 9821) +++ trunk/themes/Sidebar/templates/actionbar.tmpl 2016-03-18 16:24:57 UTC (rev 9822) @@ -11,23 +11,23 @@ <div class="portlet" id="p-cactions"> <ul> <?php if ($request->getArg('action') != "") { ?> - <?php echo ActionButton("browse", _("View Page"), false, array('title' => _("View Page")." [alt-c]")) ?> + <?php echo ActionButton("browse", _("View Page"), false, array('title' => _("View Page"))) ?> <?php } else { ?> <li class="selected"><a class="named-wiki" name="browse"><?php echo _("View Page") ?></a></li> <?php } ?> <?php if (($isAdmin or $mayEdit) and $revision) { ?> - <?php echo ActionButton("edit", $dbh->isWikiPage($page->getName()) ? ($revision->isCurrent() ? _("Edit") : _("Edit Old Revision")) : _("Create Page"), false, array('id' => 'btn-edit', 'title' => _("You can edit this page. Please use the preview button before saving.")." [alt-e]")) ?> + <?php echo ActionButton("edit", $dbh->isWikiPage($page->getName()) ? ($revision->isCurrent() ? _("Edit") : _("Edit Old Revision")) : _("Create Page"), false, array('id' => 'btn-edit', 'title' => _("You can edit this page. Please use the preview button before saving."))) ?> <?php if (ENABLE_WYSIWYG) { ?> <?php echo Button(array("action" => "edit", "mode"=> "wysiwyg"), _("Wysiwyg Editor"), false, array('id' => 'btn-wysiwyg-edit')) ?> <?php } ?> <?php } elseif ($page->exists()) { ?> <?php echo ActionButton("viewsource", _("View Source")) ?> <?php } ?> - <?php echo ActionButton(_("PageHistory"),_("History"),false,array('title'=>_("Past versions of this page.")." [alt-h]")) ?> + <?php echo ActionButton(_("PageHistory"),_("History"),false,array('title'=>_("Past versions of this page."))) ?> <?php echo ActionButton("diff") ?> <?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")." [alt-l]")) ?> + array('title'=>_("Add/Remove this to/from the list of pages you're monitoring for changes"))) ?> <?php } ?> </ul> </div> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |