librenms/lang/zh-TW/poller.php
Jellyfrog 0a351b49fd
Laravel 9.x Shift (#14504)
* Move `resources/lang` folder

* Shift registered middleware

* Remove `fruitcake/laravel-cors` dependency

* Streamline `$commands` property

* Upgrade to Flysystem 3.0

* Shift core files

* Convert `optional()` to nullsafe operator

* Remove unnecessary `$model` property

* Convert route options to fluent methods

Laravel 8 adopts the tuple syntax for controller actions. Since the old options array is incompatible with this syntax, Shift converted them to use modern, fluent methods.

* Convert deprecated `$dates` property to `$casts`

* Shift config files

* Default config files

In an effort to make upgrading the constantly changing config files
easier, Shift defaulted them and merged your true customizations -
where ENV variables may not be used.

* Bump Laravel dependencies

* Use `<env>` tags for configuration

`<env>` tags have a lower precedence than system environment variables making it easier to overwrite PHPUnit configuration values in additional environments, such a CI.

Review this blog post for more details on configuration precedence when testing Laravel: https://jasonmccreary.me/articles/laravel-testing-configuration-precedence/

* Fix error provider

* Match new symfony syntax

* Match upstream syntax

* Fix route syntax

* generate composer.lock

* Sync back configs

* routes

* composer

* Fix more flare

* fix cors

* sync lang

* Apply fixes from StyleCI (#14517)

Co-authored-by: StyleCI Bot <bot@styleci.io>

* bump larastan

* update packages

* wip

* Temporarily lower phpstan level

* Update phpstan.neon

* wip

* wip

* wip

* Apply fixes from StyleCI (#14592)

Co-authored-by: StyleCI Bot <bot@styleci.io>

* test

* Update CiHelper.php

* Update test.yml

* Update CiHelper.php

* Update CiHelper.php

* Apply fixes from StyleCI (#14616)

Co-authored-by: StyleCI Bot <bot@styleci.io>

* test?

* fix phpstan problems

* dont run snmpsim on github ci

* Fix whitespace

* More whitespace

* More whitespace ???

* I think the space broke it

* fix the reset of the whitespace

* hard code auth guard

---------

Co-authored-by: Shift <shift@laravelshift.com>
Co-authored-by: StyleCI Bot <bot@styleci.io>
Co-authored-by: Tony Murray <murraytony@gmail.com>
2023-04-17 06:51:35 -05:00

105 lines
4.6 KiB
PHP

<?php
return [
'settings' => [
'settings' => [
'poller_groups' => [
'description' => '指派群組',
'help' => 'This node will only take action on devices in these poller groups.',
],
'poller_enabled' => [
'description' => '啟用輪詢器',
'help' => 'Enable poller workers on this node.',
],
'poller_workers' => [
'description' => '輪詢器工作',
'help' => 'Amount of poller workers to spawn on this node.',
],
'poller_frequency' => [
'description' => '輪詢器頻率 (警告!)',
'help' => 'How often to poll devices on this node. Warning! Changing this without fixing rrd files will break graphs. See docs for more info.',
],
'poller_down_retry' => [
'description' => '裝置斷線重試',
'help' => 'If a device is down when polling is attempted on this node. This is the amount of time to wait before retrying.',
],
'discovery_enabled' => [
'description' => '啟用探索',
'help' => 'Enable discovery workers on this node.',
],
'discovery_workers' => [
'description' => '探索工作',
'help' => 'Amount of discovery workers to run on this node. Setting too high can cause overload.',
],
'discovery_frequency' => [
'description' => '探索頻率',
'help' => 'How often to run device discovery on this node. Default is 4 times a day.',
],
'services_enabled' => [
'description' => '啟用服務',
'help' => 'Enable services workers on this node.',
],
'services_workers' => [
'description' => '服務工作',
'help' => 'Amount of services workers on this node.',
],
'services_frequency' => [
'description' => '服務頻率',
'help' => 'How often to run services on this node. This should match poller frequency.',
],
'billing_enabled' => [
'description' => '啟用計費',
'help' => 'Enable billing workers on this node.',
],
'billing_frequency' => [
'description' => '計費頻率',
'help' => 'How often to collect billing data on this node.',
],
'billing_calculate_frequency' => [
'description' => '計費頻率',
'help' => 'How often to calculate bill usage on this node.',
],
'alerting_enabled' => [
'description' => '啟用警報',
'help' => 'Enable the alerting worker on this node.',
],
'alerting_frequency' => [
'description' => '警報頻率',
'help' => 'How often alert rules are checked on this node. Note that data is only updated based on poller frequency.',
],
'ping_enabled' => [
'description' => '啟用 Fast Ping',
'help' => 'Fast Ping just pings devices to check if they are up or down',
],
'ping_frequency' => [
'description' => 'Ping 頻率',
'help' => 'How often to check ping on this node. Warning! If you change this you must make additional changes. Check the Fast Ping docs.',
],
'update_enabled' => [
'description' => '啟用每日維護',
'help' => 'Run daily.sh maintenance script and restart the dispatcher service afterwards.',
],
'update_frequency' => [
'description' => '維護頻率',
'help' => 'How often to run daily maintenance on this node. Default is 1 Day. It is highly suggested not to change this.',
],
'loglevel' => [
'description' => '記錄層級',
'help' => 'Log level of the dispatch service.',
],
'watchdog_enabled' => [
'description' => '啟用看門狗',
'help' => 'Watchdog monitors the log file and restarts the service it it has not been updated',
],
'watchdog_log' => [
'description' => '看門狗記錄檔',
'help' => 'Default is the LibreNMS log file.',
],
],
'units' => [
'seconds' => '秒',
'workers' => '工作數',
],
],
];