[Rebranding] Some missing string in extension
This commit is contained in:
parent
cb11f0333e
commit
d8f63e9963
|
@ -134,7 +134,13 @@ function dbmgr_extension_main () {
|
|||
ui_print_page_header (__('Database interface'), "images/gm_db.png", false, false, true);
|
||||
|
||||
echo '<div class="notify">';
|
||||
echo "This is an advanced extension to interface with Pandora FMS database directly from WEB console using native SQL sentences. Please note that <b>you can damage</b> your Pandora FMS installation if you don't know </b>exactly</b> what are you are doing, this means that you can severily damage your setup using this extension. This extension is intended to be used <b>only by experienced users</b> with a depth knowledge of Pandora FMS internals.";
|
||||
echo __("This is an advanced extension to interface with %s database directly from WEB console
|
||||
using native SQL sentences. Please note that <b>you can damage</b> your %s installation
|
||||
if you don't know </b>exactly</b> what are you are doing,
|
||||
this means that you can severily damage your setup using this extension.
|
||||
This extension is intended to be used <b>only by experienced users</b>
|
||||
with a depth knowledge of %s internals.",
|
||||
get_product_name(), get_product_name(), get_product_name());
|
||||
echo '</div>';
|
||||
|
||||
echo "<br />";
|
||||
|
|
|
@ -338,8 +338,9 @@ function resource_exportation_extension_main() {
|
|||
ui_print_page_header (__('Resource exportation'), "images/extensions.png", false, "", true, "" );
|
||||
|
||||
echo "<div class=notify>";
|
||||
echo __("This extension makes exportation of resource template more easy. " .
|
||||
"Here you can export as a resource template in Pandora FMS 3.x format (.ptr). ");
|
||||
echo __("This extension makes exportation of resource template more easy.") .
|
||||
" " .
|
||||
__("You can export resource templates in .ptr format.");
|
||||
echo "</div>";
|
||||
|
||||
echo "<br /><br />";
|
||||
|
|
|
@ -855,11 +855,12 @@ function resource_registration_extension_main() {
|
|||
}
|
||||
|
||||
echo "<div class=notify>";
|
||||
printf(__("This extension makes registration of resource template more easy. " .
|
||||
"Here you can upload a resource template in Pandora FMS 3.x format (.ptr). " .
|
||||
"Please refer to documentation on how to obtain and use Pandora FMS resources. " .
|
||||
"<br><br>You can get more resurces in our <a href='%s'>Public Resource Library</a>") ,
|
||||
"http://pandorafms.org/index.php?sec=community&sec2=repository&lng=en");
|
||||
echo __("This extension makes registering resource templates easier.") . " " .
|
||||
__("Here you can upload a resource template in .ptr format.") . " " .
|
||||
__("Please refer to our documentation for more information on how to obtain and use Pandora FMS' resources.") . " " .
|
||||
"<br> <br>" .
|
||||
__("You can get more resurces in our <a href='http://pandorafms.org/index.php?sec=community&sec2=repository&lng=en'>Public Resource Library</a>")
|
||||
;
|
||||
echo "</div>";
|
||||
|
||||
echo "<br /><br />";
|
||||
|
|
Loading…
Reference in New Issue