diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2012-11-04 17:05:12 +0100 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2012-11-04 17:08:35 +0100 |
commit | 73656e17bd93132dc6864c4730a549f538fbf6bd (patch) | |
tree | 3a92661a83eb8ac4c466aa763ae9498fe291d504 | |
parent | 274182a424e9ccce8966832bd457c4140bb1ceea (diff) | |
download | aur-73656e17bd93132dc6864c4730a549f538fbf6bd.tar.gz aur-73656e17bd93132dc6864c4730a549f538fbf6bd.tar.xz |
pkg_details.php: Remove plural from the adopt/disown button
Fixes FS#32455.
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 30d920f8..cdf2764c 100644 --- a/web/template/pkg_details.php +++ b/web/template/pkg_details.php @@ -69,10 +69,10 @@ $sources = package_sources($row["ID"]); </div> <p> <?php if ($row["MaintainerUID"] === NULL): ?> - <input type="submit" class="button" name="do_Adopt" value="<?= __("Adopt Packages") ?>" /> + <input type="submit" class="button" name="do_Adopt" value="<?= __("Adopt Package") ?>" /> <?php elseif ($uid == $row["MaintainerUID"] || $atype == "Trusted User" || $atype == "Developer"): ?> - <input type="submit" class="button" name="do_Disown" value="<?= __("Disown Packages") ?>" /> + <input type="submit" class="button" name="do_Disown" value="<?= __("Disown Package") ?>" /> <?php endif; ?> </p> </form> |