How do I go about changing the severity level names so they are more in line on how we do business? I'm looking at changing how it outputs in the UI as we'll as what is sent out via actions. Thanks
Ad Widget
Collapse
Changing Severity Level Names
Collapse
X
-
In UI, it can easily be done by editing locales;
They are in include/locales/en_gb.inc.php
Just edit these lines:
Messages in actions are not localized, so you will have to modify them in Zabbix source code and recompile. You'll find them in src/libs/zbxcommon/str.c file.Code:'S_NOT_CLASSIFIED'=> 'Not classified', 'S_INFORMATION'=> 'Information', 'S_WARNING'=> 'Warning', 'S_AVERAGE'=> 'Average', 'S_HIGH'=> 'High', 'S_DISASTER'=> 'Disaster',
Regards,
Alixen -
As a maintainer of french translation, I regret that only GUI frontend can be localized. If zabbix_server internal messages could be translated, it would be easy to adapt them to any language (even "corporate speak"
)
AlixenComment
Comment