Skip to content

Commit 47b53c2

Browse files
committed
add new translation key
1 parent 48e3eeb commit 47b53c2

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

SystemSettings.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ private function createNumberOfQueueWorkerSetting()
194194
$field->title = Piwik::translate('QueuedTracking_NumberOfQueueWorkersFieldTitle');
195195
$field->uiControl = FieldConfig::UI_CONTROL_TEXT;
196196
$field->uiControlAttributes = array('size' => 5);
197-
$field->inlineHelp = Piwik::translate('QueuedTracking_NumberOfQueueWorkersFieldHelp') . '</br>';
197+
$field->inlineHelp = Piwik::translate('QueuedTracking_NumberOfQueueWorkersFieldHelpNew') . '</br>';
198198
$this->assignValueIsIntValidator($field);
199199
$field->validators[] = new NumberRange(1, 4096);
200200
});

lang/en.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"RedisTimeoutFieldTitle": "Redis timeout",
1111
"RedisTimeoutFieldHelp": "Redis connection timeout in seconds. “0.0” meaning unlimited. Can be a float eg “2.5” for a connection timeout of 2.5 seconds.",
1212
"NumberOfQueueWorkersFieldTitle": "Number of queue workers",
13-
"NumberOfQueueWorkersFieldHelp": "Number of allowed maximum queue workers. Accepts a number between 1 and 16. Best practice is to set the number of CPUs you want to make available for queue processing. Be aware you need to make sure to start the workers manually. We recommend to not use 9-15 workers, rather use 8 or 16 as the queue might not be distributed evenly into different queues."
13+
"NumberOfQueueWorkersFieldHelp": "Number of allowed maximum queue workers. Accepts a number between 1 and 16. Best practice is to set the number of CPUs you want to make available for queue processing. Be aware you need to make sure to start the workers manually. We recommend to not use 9-15 workers, rather use 8 or 16 as the queue might not be distributed evenly into different queues.",
1414
"NumberOfQueueWorkersFieldHelpNew": "Number of allowed maximum queue workers. Accepts a number between 1 and 4096. Best practice is to set the number of CPUs you want to make available for queue processing. Be aware you need to make sure to start the workers manually. We recommend to not use 9-15 workers, rather use 8 or 16 as the queue might not be distributed evenly into different queues.",
1515
"RedisPasswordFieldTitle": "Redis password",
1616
"RedisPasswordFieldHelp": "Password set on the Redis server, if any. Redis can be instructed to require a password before allowing clients to execute commands.",

0 commit comments

Comments
 (0)