|
71 | 71 | title="<?php p($l->t('Open documentation'));?>" |
72 | 72 | href="<?php p(link_to_docs('admin-background-jobs')); ?>"></a> |
73 | 73 |
|
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> |
75 | 75 | <form action="#"> |
76 | 76 | <fieldset> |
77 | 77 | <legend class="hidden-visually"><?php p($l->t('Pick background job setting'));?></legend> |
|
81 | 81 | print_unescaped('checked="checked"'); |
82 | 82 | } ?>> |
83 | 83 | <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> |
85 | 85 | </p> |
86 | 86 | <p> |
87 | 87 | <input type="radio" name="mode" value="webcron" class="radio" |
88 | 88 | id="backgroundjobs_webcron" <?php if ($_['backgroundjobs_mode'] === "webcron") { |
89 | 89 | print_unescaped('checked="checked"'); |
90 | 90 | } ?>> |
91 | 91 | <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> |
93 | 93 | </p> |
94 | 94 | <p> |
95 | 95 | <input type="radio" name="mode" value="cron" class="radio" |
|
99 | 99 | if (!$_['cli_based_cron_possible']) { |
100 | 100 | print_unescaped('disabled'); |
101 | 101 | }?>> |
102 | | - <label for="backgroundjobs_cron">Cron</label><br/> |
| 102 | + <label for="backgroundjobs_cron">Cron (<?php p($l->t("Recommended")); ?>)</label><br/> |
103 | 103 | <em><?php p($l->t("Use system cron service to call the cron.php file every 5 minutes. Recommended for all instances.")); ?> |
104 | 104 | <?php if ($_['cli_based_cron_possible']) { |
105 | 105 | p($l->t('The cron.php needs to be executed by the system user "%s".', [$_['cli_based_cron_user']])); |
|
0 commit comments