diff --git a/inc/config.class.php b/inc/config.class.php
index 18b3309..b1545b7 100644
--- a/inc/config.class.php
+++ b/inc/config.class.php
@@ -58,7 +58,7 @@ class PluginRemotesupportConfig extends CommonDBTM {
echo "
";
echo "| " . __('Run Mode:') . " | ";
echo "";
- 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 " | ";
echo "" . __('EasyNoVNC Installed:') . " | ";
echo "";
diff --git a/inc/remotesupport.class.php b/inc/remotesupport.class.php
index 936a315..841fafc 100644
--- a/inc/remotesupport.class.php
+++ b/inc/remotesupport.class.php
@@ -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')];
}
}
|