mirror of
https://github.com/tips-of-mine/GLPI-Plugin-SOC-Case-Management.git
synced 2025-06-28 05:38:42 +02:00
Add multilanguage support to GLPI SOC Plugin
This commit is contained in:
@ -24,7 +24,7 @@ class PluginSocCase extends CommonDBTM {
|
||||
* @return string
|
||||
*/
|
||||
static function getTypeName($nb = 0) {
|
||||
return _n('SOC Case', 'SOC Cases', $nb);
|
||||
return _n('SOC Case', 'SOC Cases', $nb, 'soc');
|
||||
}
|
||||
|
||||
/**
|
||||
@ -56,7 +56,7 @@ class PluginSocCase extends CommonDBTM {
|
||||
self::SEVERITY_CRITICAL => __('Critical', 'soc'),
|
||||
self::SEVERITY_HIGH => __('High', 'soc'),
|
||||
self::SEVERITY_MEDIUM => __('Medium', 'soc'),
|
||||
self::SEVERITY_MEDIUM => __('Low', 'soc')
|
||||
self::SEVERITY_LOW => __('Low', 'soc')
|
||||
];
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user