Update confirmation modal text for starting delayed jobs immediately

This commit is contained in:
Winnie Hellmann 2018-10-22 21:43:47 +02:00
parent 53be95daf4
commit 8ab27e64fe
2 changed files with 2 additions and 2 deletions

View file

@ -34,7 +34,7 @@ export default {
if (action.scheduledAt) {
const confirmationMessage = sprintf(
s__(
"DelayedJobs|Are you sure you want to run %{jobName} immediately? This job will run automatically after it's timer finishes.",
"DelayedJobs|Are you sure you want to run %{jobName} immediately? Otherwise this job will run automatically after it's timer finishes.",
),
{ jobName: action.name },
);

View file

@ -28,7 +28,7 @@ export default {
if (action.scheduled_at) {
const confirmationMessage = sprintf(
s__(
"DelayedJobs|Are you sure you want to run %{jobName} immediately? This job will run automatically after it's timer finishes.",
"DelayedJobs|Are you sure you want to run %{jobName} immediately? Otherwise this job will run automatically after it's timer finishes.",
),
{ jobName: action.name },
);