From ef42aeedd5c4752dc99cb2bb066e9641e2f911c8 Mon Sep 17 00:00:00 2001 From: Karsten Heiken Date: Wed, 28 Sep 2011 13:01:33 +0200 Subject: [PATCH] Change notification text when a job finishes --- application/controllers/ajax.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/controllers/ajax.php b/application/controllers/ajax.php index 6b4f6c9..344c9f1 100644 --- a/application/controllers/ajax.php +++ b/application/controllers/ajax.php @@ -66,7 +66,7 @@ class Ajax extends MY_Controller { $experiment = anchor('experiments/detail/' . $job['experiment_id'], $job['experiment_name']); $project = anchor('projects/detail/' . $job['project_id'], $job['project_name']); - $this->messages->add(sprintf(_('The job for %s in project %s is ready.'), $experiment, $project), 'success'); + $this->messages->add(sprintf(_('The job for %s in project %s just finished.'), $experiment, $project), 'success'); } }