Use corrent plural sentences in dashboard

This commit is contained in:
Karsten Heiken
2011-09-16 13:50:29 +02:00
parent c30c68d3eb
commit e80db2c3c7

View File

@@ -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' => '#',
),
);