How to enable Zabbix3.0 support for Chinese && Sinicization

## zabbix does not support revision to Chinese
Insert picture description here
## How to enable zabbix to enable Chinese support The
reason is that zabbix has turned off the support for Chinese, we need to modify locales.inc.php under zabbix, this file is in /usr/share/ zabbix/include/

# vim include/locales.inc.php
function getLocales() {
    
    
        return array(
                'en_GB' => array('name' => _('English (en_GB)'),        'display' => true),
                'en_US' => array('name' => _('English (en_US)'),        'display' => true),
                'bg_BG' => array('name' => _('Bulgarian (bg_BG)'),      'display' => true),
                'zh_CN' => array('name' => _('Chinese (zh_CN)'),        'display' => true),
                //原本这里为false,请改为true
                ...........余下代码省略掉........
        );
}

## Then there is Chinese support under the zabbix homepage
Follow the operation one and two to set it to Chinese

Guess you like

Origin blog.csdn.net/Lovely_Xiaoguo/article/details/103019468