From e80db2c3c727ce22211e4dc7de65fbcb9c489974 Mon Sep 17 00:00:00 2001 From: Karsten Heiken Date: Fri, 16 Sep 2011 13:50:29 +0200 Subject: [PATCH] Use corrent plural sentences in dashboard --- application/controllers/dashboard.php | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/application/controllers/dashboard.php b/application/controllers/dashboard.php index 9732d15..ab586fd 100644 --- a/application/controllers/dashboard.php +++ b/application/controllers/dashboard.php @@ -51,30 +51,37 @@ class Dashboard extends MY_Controller { $tpl['recent_buttons'] = array( array( 'count' => $this->job->countUnseenResults(), - 'text' => _('Jobs finished'), + 'text' => sprintf(ngettext('%d Job finished', '%d Jobs finished', + $this->job->countUnseenResults()), $this->job->countUnseenResults()), 'id' => 'jobs_finished', - 'title' => sprintf(_('%d jobs finished recently'), 3), + 'title' => sprintf(ngettext('%d job finished recently', '%d jobs finished recently', + $this->job->countUnseenResults()), $this->job->countUnseenResults()), 'target' => '#', ), array( 'count' => 0, - 'text' => _('Newly shared projects'), + 'text' => sprintf(ngettext('Newly shared project', 'Newly shared projects', 0), 0), 'id' => 'shared_projects', - 'title' => sprintf(_('You were invited to join %d projects'), 2), + 'title' => sprintf(ngettext('You were invited to join %d project', + 'You were invited to join %d projects', 0), 0), 'target' => '#', ), array( 'count' => $this->job->countRunning(), - 'text' => _('Job running'), + 'text' => sprintf(ngettext('Job running', 'Jobs running', + $this->job->countRunning()), $this->job->countRunning()), 'id' => 'jobs_running', - 'title' => sprintf(_('There is %d job currently running'), 1), + 'title' => sprintf(ngettext('There is %d job currently running', 'There are %d jobs currently running', + $this->job->countRunning()), $this->job->countRunning()), 'target' => '#', ), array( 'count' => $this->job->countPending(), - 'text' => _('Jobs pending'), + 'text' => sprintf(ngettext('Job pending', 'Jobs pending', + $this->job->countPending()), $this->job->countPending()), 'id' => 'jobs_pending', - 'title' => sprintf(_('There are %2 job currently pending'), 1), + 'title' => sprintf(ngettext('There is %d job currently pending', 'There are %d jobs currently pending', + $this->job->countPending()), $this->job->countPending()), 'target' => '#', ), );