diff options
| author | 2021-02-14 14:56:10 -0500 | |
|---|---|---|
| committer | 2021-02-14 20:56:10 +0100 | |
| commit | 5daee165dc73fcf74673f2ede1891dbd5821c9f4 (patch) | |
| tree | a3bf511a19f712a22aad7d3639151f915025a332 /app/views | |
| parent | 20a2b0e039daf2330bc13f721f42afbc158b391c (diff) | |
Change confusing naming for label (#3446)
Before, labels were referred to as tag which was confusing since
tags are content generated (retrieved from the feed) and label
are user generated.
Now, labels are properly named in their management page.
See #3444
Diffstat (limited to 'app/views')
| -rw-r--r-- | app/views/tag/index.phtml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/tag/index.phtml b/app/views/tag/index.phtml index 3287506f7..ce58b5ad9 100644 --- a/app/views/tag/index.phtml +++ b/app/views/tag/index.phtml @@ -3,7 +3,7 @@ <div class="post"> <a href="<?= _url('index', 'index') ?>"><?= _t('gen.action.back_to_rss_feeds') ?></a> - <h2><?= _t('sub.title.add_tag') ?></h2> + <h2><?= _t('sub.title.add_label') ?></h2> <form id="add_tag" method="post" action="<?= _url('tag', 'add') ?>" autocomplete="off"> <input type="hidden" name="_csrf" value="<?= FreshRSS_Auth::csrfToken() ?>" /> <div class="form-group"> @@ -20,7 +20,7 @@ </div> </form> - <h2><?= _t('sub.title.rename_tag') ?></h2> + <h2><?= _t('sub.title.rename_label') ?></h2> <form id="rename_tag" method="post" action="<?= _url('tag', 'rename') ?>" autocomplete="off"> <input type="hidden" name="_csrf" value="<?= FreshRSS_Auth::csrfToken() ?>" /> <div class="form-group"> @@ -47,7 +47,7 @@ </div> </form> - <h2><?= _t('sub.title.delete_tag') ?></h2> + <h2><?= _t('sub.title.delete_label') ?></h2> <form id="delete_tag" method="post" action="<?= _url('tag', 'delete') ?>" autocomplete="off"> <input type="hidden" name="_csrf" value="<?= FreshRSS_Auth::csrfToken() ?>" /> <div class="form-group"> |
