diff options
author | Lukas Fleischer <lfleischer@archlinux.org> | 2015-07-21 14:41:54 +0200 |
---|---|---|
committer | Lukas Fleischer <lfleischer@archlinux.org> | 2015-08-08 12:59:24 +0200 |
commit | c751921affdcc8e67df2c04cb00de2d0c58e1927 (patch) | |
tree | 0efcb88e60415c9ef1727bd433fb14665661bb63 /web/template/stats | |
parent | e610360c95682bbaa359e1bf3d3abffb97a9820b (diff) | |
download | aur-c751921affdcc8e67df2c04cb00de2d0c58e1927.tar.gz aur-c751921affdcc8e67df2c04cb00de2d0c58e1927.tar.xz |
Do not use the term "unsupported" for AUR packages
We no longer use the term [unsupported] to refer to the "repository" of
AUR packages. Update texts and variable names accordingly.
Fixes FS#45381.
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
Diffstat (limited to 'web/template/stats')
-rw-r--r-- | web/template/stats/general_stats_table.php | 2 | ||||
-rw-r--r-- | web/template/stats/user_table.php | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/web/template/stats/general_stats_table.php b/web/template/stats/general_stats_table.php index 5b598321..9dcc3aaf 100644 --- a/web/template/stats/general_stats_table.php +++ b/web/template/stats/general_stats_table.php @@ -3,7 +3,7 @@ <table> <tr> <td class="stat-desc"><?= __("Packages"); ?></td> - <td><?= $unsupported_count; ?></td> + <td><?= $pkg_count; ?></td> </tr> <tr> <td class="stat-desc"><?= __("Orphan Packages"); ?></td> diff --git a/web/template/stats/user_table.php b/web/template/stats/user_table.php index 284d5b9e..e7b00834 100644 --- a/web/template/stats/user_table.php +++ b/web/template/stats/user_table.php @@ -8,9 +8,9 @@ $username = username_from_sid($_COOKIE["AURSID"]); <tr> <td> <a href="<?= get_uri('/packages/'); ?>?SeB=m&K=<?= $username; ?>"> -<?= __("Packages in unsupported"); ?></a> +<?= __("Packages"); ?></a> </td> - <td><?= $maintainer_unsupported_count; ?></td> + <td><?= $user_pkg_count; ?></td> </tr> <tr> <td> |