Use ellipsis instead of three dots in translations

This commit is contained in:
Eliot Berriot 2019-10-01 13:54:25 +02:00
parent 2ad0db9da9
commit fe8448e2a4
No known key found for this signature in database
GPG key ID: DD6965E2476E5C27
26 changed files with 146 additions and 146 deletions

View file

@ -38,9 +38,9 @@ export default {
jQuery(this.$el).keypress(function(e) {
if(e.which == 13) {
// Cancel any API search request to backend...
// Cancel any API search request to backend
jQuery(this.$el).search('cancel query');
// Go direct to the artist page...
// Go direct to the artist page
router.push("/library/artists?query=" + searchQuery + "&page=1&paginateBy=25&ordering=name");
}
});