2010-09-06 Miguel de Dios <miguel.dedios@artica.es>

* extensions/plugin_registration.php: fixed the translation string previous
	to form.
	Fixes: #3053312



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3222 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
mdtrooper 2010-09-07 15:33:04 +00:00
parent e53be02bc6
commit 98894ac946
2 changed files with 10 additions and 3 deletions

View File

@ -1,3 +1,9 @@
2010-09-06 Miguel de Dios <miguel.dedios@artica.es>
* extensions/plugin_registration.php: fixed the translation string previous
to form.
Fixes: #3053312
2010-09-06 Miguel de Dios <miguel.dedios@artica.es>
* operation/events/sound_events.php: fixed the location of image in the

View File

@ -24,7 +24,7 @@ function pluginreg_extension_main () {
print_page_header (__('Plugin registration'), "images/extensions.png", false, "", true, "" );
echo "<div class=notify>";
echo __("This extension makes registration of server plugins more easy. Here you can upload a server plugin in Pandora FMS 3.x zipped format (.pspz). Please refer to documentation on how to obtain and use Pandora FMS Server Plugins.<br><br>You can get more plugins in our <a href='http://pandorafms.org/index.php?sec=community&sec2=repository&lng=en'>Public Resource Library</A>");
printf(__("This extension makes registration of server plugins more easy. Here you can upload a server plugin in Pandora FMS 3.x zipped format (.pspz). Please refer to documentation on how to obtain and use Pandora FMS Server Plugins.<br><br>You can get more plugins in our <a href='%s'>Public Resource Library</a>") , "http://pandorafms.org/index.php?sec=community&sec2=repository&lng=en");
echo "</div>";
echo "<br><br>";
@ -33,9 +33,10 @@ function pluginreg_extension_main () {
// Upload form
echo "<form name='submit_plugin' method='post' enctype='multipart/form-data'>";
echo '<table class="databox" id="table1" width="50%" border="0" cellpadding="4" cellspacing="4">';
echo "<tr><td class='datos'><input type='file' name='plugin_upload'>";
echo "<td class='datos'><input type=submit class='sub next' value='".__('Upload')."'>";
echo "<tr><td class='datos'><input type='file' name='plugin_upload' />";
echo "<td class='datos'><input type='submit' class='sub next' value='".__('Upload')."' />";
echo "</form></table>";
return;
}