From: <var...@us...> - 2011-01-21 08:58:01
|
Revision: 7849 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7849&view=rev Author: vargenau Date: 2011-01-21 08:57:55 +0000 (Fri, 21 Jan 2011) Log Message: ----------- Strings easier to translate Modified Paths: -------------- trunk/lib/plugin/WikiAdminChown.php trunk/lib/plugin/WikiAdminMarkup.php Modified: trunk/lib/plugin/WikiAdminChown.php =================================================================== --- trunk/lib/plugin/WikiAdminChown.php 2011-01-20 13:19:57 UTC (rev 7848) +++ trunk/lib/plugin/WikiAdminChown.php 2011-01-21 08:57:55 UTC (rev 7849) @@ -195,8 +195,7 @@ } function chownForm(&$header, $post_args) { - $header->pushContent(_("Change owner")." "); - $header->pushContent(' '._("to").': '); + $header->pushContent(_("Change owner to: ")); $header->pushContent(HTML::input(array('name' => 'admin_chown[user]', 'value' => $post_args['user'], 'size' => 40))); Modified: trunk/lib/plugin/WikiAdminMarkup.php =================================================================== --- trunk/lib/plugin/WikiAdminMarkup.php 2011-01-20 13:19:57 UTC (rev 7848) +++ trunk/lib/plugin/WikiAdminMarkup.php 2011-01-21 08:57:55 UTC (rev 7849) @@ -187,8 +187,7 @@ } function chmarkupForm(&$header, $post_args) { - $header->pushContent(_("Change markup")." "); - $header->pushContent(' '._("to").': '); + $header->pushContent(_("Change markup to: ")); $header->pushContent(HTML::input(array('name' => 'admin_markup[markup]', 'value' => $post_args['markup']))); return $header; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |