diff options
author | canyonknight <canyonknight@gmail.com> | 2013-01-22 02:14:56 +0000 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2013-01-30 09:25:27 +0100 |
commit | e4ad05533f2929bc8291923a8d4bef1c8fc55675 (patch) | |
tree | 559427dfe9d698cd71bd007f747501357128a04f | |
parent | 07edcdab17f78ef39c3b975ea3cdbac38de8a800 (diff) | |
download | aurweb-e4ad05533f2929bc8291923a8d4bef1c8fc55675.tar.xz |
pkg_details.php: Add missing translatable string
Signed-off-by: canyonknight <canyonknight@gmail.com>
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
-rw-r--r-- | web/template/pkg_details.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/template/pkg_details.php b/web/template/pkg_details.php index b5d8a9f..0973448 100644 --- a/web/template/pkg_details.php +++ b/web/template/pkg_details.php @@ -137,7 +137,7 @@ if ($row["SubmitterUID"]): <td><?= htmlspecialchars($submitter) ?></td> <?php endif; ?> <?php else: ?> - <td>None</td> + <td><?= __('None') ?></td> <?php endif; ?> </tr> <tr> @@ -155,7 +155,7 @@ if ($row["MaintainerUID"]): <td><?= htmlspecialchars($maintainer) ?></td> <?php endif; ?> <?php else: ?> - <td>None</td> + <td><?= __('None') ?></td> <?php endif; ?> </tr> <tr> |