mirror of
https://github.com/wallabag/wallabag.git
synced 2025-09-15 18:57:05 +00:00
Tag delete style action updated
This commit is contained in:
parent
086b3dda88
commit
e55cb639fc
6 changed files with 12 additions and 4 deletions
|
@ -457,6 +457,8 @@ quickstart:
|
|||
email: By email
|
||||
gitter: On Gitter
|
||||
tag:
|
||||
confirm:
|
||||
delete: Delete the %name% tag
|
||||
page_title: Tags
|
||||
list:
|
||||
number_on_the_page: '{0} There are no tags.|{1} There is one tag.|]1,Inf[ There are %count% tags.'
|
||||
|
|
|
@ -458,6 +458,8 @@ quickstart:
|
|||
email: Par courriel
|
||||
gitter: Sur Gitter
|
||||
tag:
|
||||
confirm:
|
||||
delete: Supprimer le tag %name%
|
||||
page_title: Étiquettes
|
||||
list:
|
||||
number_on_the_page: '{0} Il n’y a pas d''étiquette.|{1} Il y a une étiquette.|]1,Inf[ Il y a %count% étiquettes.'
|
||||
|
|
|
@ -26,8 +26,8 @@
|
|||
<i class="material-icons">mode_edit</i>
|
||||
</a>
|
||||
{% endif %}
|
||||
<a href="{{ path('tag_delete', {'slug': tag.slug})}}">
|
||||
<i class="material-icons">mode_delete</i>
|
||||
<a href="{{ path('tag_delete', {'slug': tag.slug})}}" class="card-tag-icon card-tag-delete" onclick="return confirm('{{ 'tag.confirm.delete'|trans({'%name%': tag.label})|escape('js') }}')">
|
||||
<i class="material-icons">delete</i>
|
||||
</a>
|
||||
{% if app.user.config.feedToken %}
|
||||
<a rel="alternate" type="application/atom+xml" href="{{ path('tag_feed', {'username': app.user.username, 'token': app.user.config.feedToken, 'slug': tag.slug}) }}" class="card-tag-icon"><i class="material-icons">rss_feed</i></a>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue