Files
librenms-librenms/lang/zh-CN/exceptions.php
sogadm 3313949ea7 Massive changes to the Chinese interface translation. (#16009)
* Chinese translation fixes

Chinese translation fixes

* Update settings.php

Chinese translation fixes

* [Chinese Translation]

Massive changes to the Chinese interface translation.

* [Chinese Translation]

Massive changes to the Chinese interface translation.

* Update validation.php

Fix syntax errors

* Update validation.php

Fix syntax errors

* Chinese

Massive changes to the Chinese interface translation.

* Update auth.php

* Update bgp.php

* Update commands.php

* Update commands.php

* Update components.php

* Update components.php

* Update device.php

* Update exceptions.php

* Update install.php

* Update inventory.php

* Update map.php

* Update modules.php

* Update pagination.php

* Update passwords.php

* Update plugins.php

* Update poller.php

* Update port.php

* Update preferences.php

* Update sensors.php

* Update settings.php

* Update syslog.php

* Update validation.php

* Update widgets.php

* Update settings.php

* Update settings.php

* Update settings.php
2024-05-03 18:19:59 -05:00

47 lines
2.1 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
return [
'database_connect' => [
'title' => '连接数据库错误',
],
'database_inconsistent' => [
'title' => '数据库不一致',
'header' => '在数据库错误期间发现数据库不一致,请修复后继续。',
],
'dusk_unsafe' => [
'title' => '在生产环境中运行Dusk不安全',
'message' => '运行":command"以移除Dusk或者如果您是开发者请设置适当的APP_ENV',
],
'file_write_failed' => [
'title' => '错误:无法写入文件',
'message' => '无法写入文件(:file)。请检查权限以及适用的SELinux/AppArmor设置。',
],
'host_exists' => [
'hostname_exists' => '设备:hostname已存在',
'ip_exists' => '无法添加:hostname已有设备:existing使用此IP:ip',
'sysname_exists' => '因重复sysName: :sysname已有设备:hostname',
],
'host_unreachable' => [
'unpingable' => '无法ping通:hostname (:ip)',
'unsnmpable' => '无法连接到:hostname请检查SNMP详情及可达性',
'unresolvable' => '主机名未解析为IP地址',
'no_reply_community' => 'SNMP :version: 使用团体名:credentials无响应',
'no_reply_credentials' => 'SNMP :version: 使用凭据:credentials无响应',
],
'ldap_missing' => [
'title' => '缺少PHP LDAP支持',
'message' => 'PHP不支持LDAP请安装或启用PHP LDAP扩展',
],
'maximum_execution_time_exceeded' => [
'title' => '最大执行时间超过:seconds秒|最大执行时间超过:seconds秒',
'message' => '页面加载超出了PHP中配置的最大执行时间。请在php.ini中增加max_execution_time或提升服务器硬件性能',
],
'unserializable_route_cache' => [
'title' => '由PHP版本不匹配导致的错误',
'message' => '您的Web服务器运行的PHP版本(:web_version)与CLI版本(:cli_version)不匹配',
],
'snmp_version_unsupported' => [
'message' => '不支持的SNMP版本":snmpver"必须是v1、v2c或v3',
],
];