Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions includes/arrays.php
Original file line number Diff line number Diff line change
Expand Up @@ -277,11 +277,11 @@
'name' => [
'method' => 'textbox',
'friendly_name' => __('Name'),
'description' => __('A Useful Name for this CA chain.'),
'description' => __('A Useful Name for this CA chain.', 'servcheck'),
'value' => '|arg1:name|',
'max_length' => '100',
'size' => '100',
'default' => __('New CA')
'default' => __('New CA', 'servcheck')
],
'cert' => [
'friendly_name' => __('CA Chain', 'servcheck'),
Expand All @@ -301,34 +301,34 @@
'name' => [
'method' => 'textbox',
'friendly_name' => __('Name'),
'description' => __('A Useful Name for this Proxy.'),
'description' => __('A Useful Name for this Proxy.', 'servcheck'),
'value' => '|arg1:name|',
'max_length' => '40',
'size' => '40',
'default' => __('New Proxy')
'default' => __('New Proxy', 'servcheck')
],
'hostname' => [
'method' => 'textbox',
'friendly_name' => __('Hostname'),
'description' => __('The Proxy Hostname.'),
'description' => __('The Proxy Hostname.', 'servcheck'),
'value' => '|arg1:hostname|',
'max_length' => '64',
'size' => '40',
'default' => ''
],
'http_port' => [
'method' => 'textbox',
'friendly_name' => __('HTTP Port'),
'description' => __('The HTTP Proxy Port.'),
'friendly_name' => __('HTTP Port', 'servcheck'),
'description' => __('The HTTP Proxy Port.', 'servcheck'),
'value' => '|arg1:http_port|',
'max_length' => '5',
'size' => '5',
'default' => '80'
],
'https_port' => [
'method' => 'textbox',
'friendly_name' => __('HTTPS Port'),
'description' => __('The HTTPS Proxy Port.'),
'friendly_name' => __('HTTPS Port', 'servcheck'),
'description' => __('The HTTPS Proxy Port.', 'servcheck'),
'value' => '|arg1:https_port|',
'max_length' => '5',
'size' => '5',
Expand Down Expand Up @@ -411,8 +411,8 @@
],
'ipaddress' => [
'method' => 'textbox',
'friendly_name' => __('Resolve DNS to Address'),
'description' => __('Enter an IP Address to force DNS name to resolve to. Leaving blank will use DNS Resolution instead.'),
'friendly_name' => __('Resolve DNS to Address', 'servcheck'),
'description' => __('Enter an IP Address to force DNS name to resolve to. Leaving blank will use DNS Resolution instead.', 'servcheck'),
'value' => '|arg1:ipaddress|',
'max_length' => '46',
'size' => '40',
Expand Down Expand Up @@ -925,7 +925,7 @@
'rest_cookie' => __('REST API test with cookie auth. Prepare credential first.', 'servcheck'),
'snmp_get' => __('Try SNMP get method. Output for specified OID is returned. Credential is required, you have to prepare SNMP v.1,2 or v3 credential first.', 'servcheck'),
'snmp_walk' => __('Try SNMP walk method. Output for specified OID is returned. Credential is required, you have to prepare SNMP v.1,2 or v3 credential first.', 'servcheck'),
'ssh_command' => __('Use ssh and connect to remote host. After login run specified command and return output. Username and password or private key is possible.', 'srvcheck'),
'ssh_command' => __('Use ssh and connect to remote host. After login run specified command and return output. Username and password or private key is possible.', 'servcheck'),
'ssh_sftp' => __('SFTP protocol on port 22, username and password and path are required. Try to do directory listing of path.', 'servcheck'),
];

Expand Down
4 changes: 2 additions & 2 deletions setup.php
Original file line number Diff line number Diff line change
Expand Up @@ -704,8 +704,8 @@ function servcheck_config_settings() {
]
],
'servcheck_test_max_duration' => [
'friendly_name' => __('Maximum test duration in seconds', 'intropage'),
'description' => __('The default value for tests where runtime testing is not enabled. If enabled, the max. duration is calculated as the duration threshold + 2 seconds.'),
'friendly_name' => __('Maximum test duration in seconds', 'servcheck'),
'description' => __('The default value for tests where runtime testing is not enabled. If enabled, the max. duration is calculated as the duration threshold + 2 seconds.', 'servcheck'),
'method' => 'textbox',
'max_length' => 2,
'default' => '3',
Expand Down
Loading