From: <var...@us...> - 2017-07-06 10:23:11
|
Revision: 10019 http://sourceforge.net/p/phpwiki/code/10019 Author: vargenau Date: 2017-07-06 10:23:09 +0000 (Thu, 06 Jul 2017) Log Message: ----------- It's pages, not files Modified Paths: -------------- trunk/lib/plugin/WikiAdminPurge.php trunk/lib/plugin/WikiAdminRemove.php trunk/lib/plugin/WikiAdminSearchReplace.php trunk/lib/plugin/WikiAdminSetAcl.php Modified: trunk/lib/plugin/WikiAdminPurge.php =================================================================== --- trunk/lib/plugin/WikiAdminPurge.php 2017-05-30 15:41:35 UTC (rev 10018) +++ trunk/lib/plugin/WikiAdminPurge.php 2017-07-06 10:23:09 UTC (rev 10019) @@ -153,12 +153,12 @@ $button_label = _("Yes"); $header->pushContent(HTML::legend(_("Confirm purge"))); $header->pushContent(HTML::p(HTML::strong( - _("Are you sure you want to permanently purge the following files?")))); + _("Are you sure you want to permanently purge the following pages?")))); } else { $pagelist = new PageList_Selectable($args['info'], $args['exclude'], array()); $pagelist->addPageList($pages); $button_label = _("Permanently purge selected pages"); - $header->pushContent(HTML::legend(_("Select the files to purge"))); + $header->pushContent(HTML::legend(_("Select the pages to purge"))); } $buttons = HTML::p(Button('submit:admin_purge[purge]', $button_label, 'wikiadmin'), Modified: trunk/lib/plugin/WikiAdminRemove.php =================================================================== --- trunk/lib/plugin/WikiAdminRemove.php 2017-05-30 15:41:35 UTC (rev 10018) +++ trunk/lib/plugin/WikiAdminRemove.php 2017-07-06 10:23:09 UTC (rev 10019) @@ -207,7 +207,7 @@ $button_label = _("Yes"); $header->pushContent(HTML::legend(_("Confirm removal"))); $header->pushContent(HTML::p(HTML::strong( - _("Are you sure you want to remove the selected files?")))); + _("Are you sure you want to remove the selected pages?")))); } else { $pagelist = new PageList_Selectable($args['info'], $args['exclude'], array('types' => @@ -215,7 +215,7 @@ => new _PageList_Column_remove('remove', _("Remove"))))); $pagelist->addPageList($pages); $button_label = _("Remove selected pages"); - $header->pushContent(HTML::legend(_("Select the files to remove"))); + $header->pushContent(HTML::legend(_("Select the pages to remove"))); if ($args['min_age'] > 0) { $header->pushContent( fmt("Also pages which have been deleted at least %s days.", Modified: trunk/lib/plugin/WikiAdminSearchReplace.php =================================================================== --- trunk/lib/plugin/WikiAdminSearchReplace.php 2017-05-30 15:41:35 UTC (rev 10018) +++ trunk/lib/plugin/WikiAdminSearchReplace.php 2017-07-06 10:23:09 UTC (rev 10019) @@ -132,7 +132,7 @@ $button_label = _("Replace"); $header->pushContent( HTML::p(HTML::strong( - _("Are you sure you want to replace text in the selected files?")))); + _("Are you sure you want to replace text in the selected pages?")))); $this->replaceForm($header, $post_args); } else { $pagelist = new PageList_Selectable($args['info'], $args['exclude'], $columns); Modified: trunk/lib/plugin/WikiAdminSetAcl.php =================================================================== --- trunk/lib/plugin/WikiAdminSetAcl.php 2017-05-30 15:41:35 UTC (rev 10018) +++ trunk/lib/plugin/WikiAdminSetAcl.php 2017-07-06 10:23:09 UTC (rev 10019) @@ -207,7 +207,7 @@ $header = $this->setaclForm($header, $post_args, $pages); $header->pushContent( HTML::p(HTML::strong( - _("Are you sure you want to permanently change access rights to the selected files?")))); + _("Are you sure you want to permanently change access rights to the selected pages?")))); } else { $pagelist = new PageList_Selectable($args['info'], $args['exclude'], @@ -269,9 +269,9 @@ $header->pushContent(HTML::strong(_("ACL") . _(": ")), HTML::samp($perm->asAclLines()), HTML::br()); $header->pushContent(HTML::p(HTML::strong(_("Description") . _(": ")), - _("Selected Grant checkboxes allow access, unselected checkboxes deny access."), - _("To ignore delete the line."), - _("To add check 'Add' near the dropdown list.") + _("Selected Grant checkboxes allow access, unselected checkboxes deny access.") + .' '._("To ignore delete the line.") + .' '._("To add check 'Add' near the dropdown list.") )); $header->pushContent($table); // This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |