Bug 14322: (follow-up) Fix quotes for translatable string
Always use double quotes around translatable strings. Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
This commit is contained in:
parent
039eb10c7a
commit
0cdfb10f37
1 changed files with 1 additions and 1 deletions
|
@ -549,7 +549,7 @@
|
|||
})
|
||||
var url = window.location.origin + window.location.pathname + '?' + $.param(params);
|
||||
navigator.clipboard.writeText(url);
|
||||
$(this).tooltip({trigger: 'manual', title: _('Copied!')}).tooltip('show');
|
||||
$(this).tooltip({trigger: 'manual', title: _("Copied!")}).tooltip('show');
|
||||
});
|
||||
|
||||
var results_heading = $('<div>').addClass('results-heading')
|
||||
|
|
Loading…
Reference in a new issue