diff options
author | Safa AlFulaij <safa1996alfulaij@gmail.com> | 2016-07-14 08:52:26 +0200 |
---|---|---|
committer | Lukas Fleischer <lfleischer@archlinux.org> | 2016-07-24 18:51:12 +0200 |
commit | b089747774b495126bf4e2b4ec0b63bd0c2af5c4 (patch) | |
tree | de513d552e99311eb1d9685672451a9b25f05eba /web/template/pkgreq_results.php | |
parent | e55b529813feb806fd139ccbf47be87970d95b74 (diff) | |
download | aur-b089747774b495126bf4e2b4ec0b63bd0c2af5c4.tar.gz aur-b089747774b495126bf4e2b4ec0b63bd0c2af5c4.tar.xz |
Fix plural string
Even though the singular form never occurs, we need to use _n() here to
obtain the correct behavior for languages with multiple plural forms.
Signed-off-by: Safa AlFulaij <safa1996alfulaij@gmail.com>
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
Diffstat (limited to 'web/template/pkgreq_results.php')
-rw-r--r-- | web/template/pkgreq_results.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/template/pkgreq_results.php b/web/template/pkgreq_results.php index 24ee877a..b27963be 100644 --- a/web/template/pkgreq_results.php +++ b/web/template/pkgreq_results.php @@ -39,7 +39,7 @@ if (!$due) { $time_left = $idle_time - (time() - intval($row['RequestTS'])); if ($time_left > 48 * 3600) { - $time_left_fmt = __("~%d days left", round($time_left / (24 * 3600))); + $time_left_fmt = _n("~%d day left", "~%d days left", round($time_left / (24 * 3600))); } elseif ($time_left > 3600) { $time_left_fmt = _n("~%d hour left", "~%d hours left", round($time_left / 3600)); } else { |