From: <var...@us...> - 2014-12-05 14:54:10
|
Revision: 9425 http://sourceforge.net/p/phpwiki/code/9425 Author: vargenau Date: 2014-12-05 14:54:07 +0000 (Fri, 05 Dec 2014) Log Message: ----------- ActionPage --> Action Page Modified Paths: -------------- trunk/locale/po/fr.po trunk/themes/MonoBook/templates/actionbar.tmpl Modified: trunk/locale/po/fr.po =================================================================== --- trunk/locale/po/fr.po 2014-12-05 14:45:24 UTC (rev 9424) +++ trunk/locale/po/fr.po 2014-12-05 14:54:07 UTC (rev 9425) @@ -4582,14 +4582,14 @@ #, php-format msgid "Check for necessary %s updates" -msgstr "" +msgstr "Vérification des mises à jour nécessaires pour %s" msgid "ActionPage" -msgstr "" +msgstr "Pages d'action" #, php-format msgid "Check for necessary theme %s updates" -msgstr "" +msgstr "Vérification des mises à jour nécessaires pour le thème %s" msgid "rename to Help: pages" msgstr "" Modified: trunk/themes/MonoBook/templates/actionbar.tmpl =================================================================== --- trunk/themes/MonoBook/templates/actionbar.tmpl 2014-12-05 14:45:24 UTC (rev 9424) +++ trunk/themes/MonoBook/templates/actionbar.tmpl 2014-12-05 14:54:07 UTC (rev 9425) @@ -11,7 +11,7 @@ <?php if (!string_ends_with($pagename, '/'._("Discussion"))) { ?> <?php $talk = new WikiPageName('Talk:'.$pagename); ?> <?php echo ActionButton(array(), - $isActionPage ? _("ActionPage") : _("Article"), + $isActionPage ? _("Action Page") : _("Article"), $talk->getParent(), array('class'=>$isBrowse ? "selected" : "", 'title' => "View the page [alt-c]")) ?> <?php if (!$isActionPage) { ?> <?php if ($dbh->isWikiPage($talk->getName())) { ?> @@ -24,7 +24,7 @@ <?php } ?> <?php } else { $talk = new WikiPageName($pagename); ?> - <?php echo ActionButton(array(),$isActionPage ? _("ActionPage") : _("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 [alt-c]")) ?> <?php echo ActionButton(array(),_("Discussion"), $talk->getName(), array('class'=>$isBrowse ? "selected" : "")) ?> <?php } ?> <?php if (($isAdmin or mayAccessPage('edit', $pagename)) and $revision) { ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |