Fix locales

This commit is contained in:
2021-12-23 16:25:00 +01:00
parent 3c461d4570
commit 72fe3d8335
2 changed files with 3 additions and 3 deletions

View File

@@ -58,7 +58,7 @@ class PluginRemotesupportConfig extends CommonDBTM {
echo "<tr>";
echo "<td >" . __('Run Mode:') . "</td>";
echo "<td>";
Dropdown::showFromArray('run_mode', array('None' => 'None','Serial'=>'Serial','Parallel' => 'Parallel'), array('value' => $my_config['run_mode']));
Dropdown::showFromArray('run_mode', array('None' => __('None'),'Serial'=>__('Serial'),'Parallel' => __('Parallel')), array('value' => $my_config['run_mode']));
echo "</td>";
echo "<td >" . __('EasyNoVNC Installed:') . "</td>";
echo "<td>";

View File

@@ -178,7 +178,7 @@ class PluginRemotesupportRemotesupport extends CommonDBTM
$ids = [];
$cids = self::getContactArray();
foreach ($checked as $s) {
$comp = new Computer();
@@ -198,6 +198,6 @@ class PluginRemotesupportRemotesupport extends CommonDBTM
public static function cronInfo($name)
{
return [
'description' => "Agent search remotesupport"];
'description' => __('Agent search remotesupport')];
}
}