Commit 8cbfdf52a68a7da41c5be827a352733811e73316
1 parent
16de1bf6
Exists in
master
and in
5 other branches
Included translations and fixed padronization issue [Issue:#398]
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
links/templates/links/delete_link.html
| ... | ... | @@ -53,14 +53,14 @@ |
| 53 | 53 | $('#link_{{ link.slug }}').remove(); |
| 54 | 54 | $('#link_edit_icon_{{ link.slug }}').remove(); |
| 55 | 55 | $('#link_edit_{{ link.slug }}').remove(); |
| 56 | - alertify.alert('Link successfully deleted!') | |
| 56 | + alertify.success(" {% trans 'Link successfully deleted!' %} "); | |
| 57 | 57 | }, |
| 58 | 58 | error: function(data){ |
| 59 | 59 | $("div.modal-backdrop.fade.in").remove(); |
| 60 | 60 | $('#requisicoes_ajax').empty(); |
| 61 | 61 | $('#requisicoes_ajax').append(data.responseText); |
| 62 | 62 | $('#linkDeleteModal').modal('show'); |
| 63 | - alertify.alert('Error when trying to delete.'); | |
| 63 | + alertify.error(" {% trans 'Error when trying to delete.' %} "); | |
| 64 | 64 | } |
| 65 | 65 | }); |
| 66 | 66 | event.preventDefault(); | ... | ... |