#9242 fixed the text string so that it is taken into account in the translation

This commit is contained in:
Jorge Rincon 2023-05-17 11:19:57 +02:00
parent e478e2b9ba
commit eee080e623
1 changed files with 1 additions and 5 deletions

View File

@ -93,10 +93,6 @@ if (is_metaconsole() === true) {
}
}
$str = 'This extension makes registering server plugins an easier task.';
$str .= ' Here you can upload a server plugin in .pspz zipped format.';
$str .= ' Please refer to the official documentation on how to obtain and use Server Plugins.';
$output = '<div class="new_task">';
$output .= '<div class="image_task">';
$output .= html_print_image(
@ -108,7 +104,7 @@ $output .= '</div>';
$output .= '<div class="text_task">';
$output .= '<h3>'.__('Plugin registration').'</h3>';
$output .= '<p id="description_task">';
$output .= __($str);
$output .= __('This extension makes registering server plugins an easier task. Here you can upload a server plugin in .pspz zipped format. Please refer to the official documentation on how to obtain and use Server Plugins.');
$output .= '<br><br>';
$output .= __('You can get more plugins in our');
$output .= '<a href="https://pandorafms.com/Library/Library/">';