Skip to content

Commit 99bc672

Browse files
committed
address review
Signed-off-by: szaimen <[email protected]>
1 parent d5a3198 commit 99bc672

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

apps/settings/templates/settings/admin/server.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
title="<?php p($l->t('Open documentation'));?>"
7272
href="<?php p(link_to_docs('admin-background-jobs')); ?>"></a>
7373

74-
<p class="settings-hint"><?php p($l->t('For Nextcloud to work correctly, it\'s important to configure background jobs correctly. \'Cron\' is the recommended setting. Please see the documentation for more information.'));?></p>
74+
<p class="settings-hint"><?php p($l->t('For the server to work properly, it\'s important to configure background jobs correctly. \'Cron\' is the recommended setting. Please see the documentation for more information.'));?></p>
7575
<form action="#">
7676
<fieldset>
7777
<legend class="hidden-visually"><?php p($l->t('Pick background job setting'));?></legend>
@@ -81,15 +81,15 @@
8181
print_unescaped('checked="checked"');
8282
} ?>>
8383
<label for="backgroundjobs_ajax">AJAX</label><br/>
84-
<em><?php p($l->t("Execute one task with each page loaded. Usecase: Single user instance.")); ?></em>
84+
<em><?php p($l->t("Execute one task with each page loaded. Use case: Single user instance.")); ?></em>
8585
</p>
8686
<p>
8787
<input type="radio" name="mode" value="webcron" class="radio"
8888
id="backgroundjobs_webcron" <?php if ($_['backgroundjobs_mode'] === "webcron") {
8989
print_unescaped('checked="checked"');
9090
} ?>>
9191
<label for="backgroundjobs_webcron">Webcron</label><br/>
92-
<em><?php p($l->t("cron.php is registered at a webcron service to call cron.php every 5 minutes over HTTP. Usecase: Very small instance (1-5 users depending on the usage).")); ?></em>
92+
<em><?php p($l->t("cron.php is registered at a webcron service to call cron.php every 5 minutes over HTTP. Use case: Very small instance (1-5 users depending on the usage).")); ?></em>
9393
</p>
9494
<p>
9595
<input type="radio" name="mode" value="cron" class="radio"
@@ -99,7 +99,7 @@
9999
if (!$_['cli_based_cron_possible']) {
100100
print_unescaped('disabled');
101101
}?>>
102-
<label for="backgroundjobs_cron">Cron</label><br/>
102+
<label for="backgroundjobs_cron">Cron (<?php p($l->t("Recommended")); ?>)</label><br/>
103103
<em><?php p($l->t("Use system cron service to call the cron.php file every 5 minutes. Recommended for all instances.")); ?>
104104
<?php if ($_['cli_based_cron_possible']) {
105105
p($l->t('The cron.php needs to be executed by the system user "%s".', [$_['cli_based_cron_user']]));

0 commit comments

Comments
 (0)