diff options
author | Lukas Fleischer <lfleischer@archlinux.org> | 2016-01-28 22:59:59 +0100 |
---|---|---|
committer | Lukas Fleischer <lfleischer@archlinux.org> | 2016-01-28 23:00:08 +0100 |
commit | 700df4f32fdf013f8ba7b067ab6054a47affc4d4 (patch) | |
tree | 08efb9e83fff4fc53e3906e757d8fccac1330e96 /web | |
parent | 2121982862f25488a0e0fae58b387c2cd4b1f208 (diff) | |
download | aur-700df4f32fdf013f8ba7b067ab6054a47affc4d4.tar.gz aur-700df4f32fdf013f8ba7b067ab6054a47affc4d4.tar.xz |
Include parentheses in translatable string
This string is easier to understand with the extra parentheses.
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
Diffstat (limited to 'web')
-rw-r--r-- | web/template/pkgbase_actions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/template/pkgbase_actions.php b/web/template/pkgbase_actions.php index 85b1c3b7..237e712f 100644 --- a/web/template/pkgbase_actions.php +++ b/web/template/pkgbase_actions.php @@ -8,7 +8,7 @@ </li> <li><a href="<?= $snapshot_uri ?>"><?= __('Download snapshot') ?></a> <li><a href="https://wiki.archlinux.org/index.php/Special:Search?search=<?= urlencode($row['Name']) ?>"><?= __('Search wiki') ?></a></li> - <li><span class="flagged"><?= $row["OutOfDateTS"] !== NULL ? html_action_link($base_uri . 'flag-comment/', __('Flagged out-of-date %s', "(${out_of_date_time})")) : "" ?></span></li> + <li><span class="flagged"><?= $row["OutOfDateTS"] !== NULL ? html_action_link($base_uri . 'flag-comment/', __('Flagged out-of-date (%s)', "$out_of_date_time")) : "" ?></span></li> <?php if ($row["OutOfDateTS"] === NULL): ?> <li><?= html_action_link($base_uri . 'flag/', __('Flag package out-of-date')) ?></li> <?php elseif (($row["OutOfDateTS"] !== NULL) && has_credential(CRED_PKGBASE_UNFLAG, $unflaggers)): ?> |