You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
In waiting that the proposal pull request will be released trough cdn, here is my way to workaround localization.
By using jquery, just put this at bottom of your page code !
<script>
//select elements by property name
//translate content to whatever language eg here French
var search_input_elements = $('[placeholder="Search"]');
search_input_elements.each(function() {
$(this).attr('placeholder','Rechercher...');
});
//select elements by class name
//translate content to whatever language eg here French
var no_results_elements = $(".dselect-no-results");
no_results_elements.each(function() {
$(this).text('Aucun résultat !');
});
</script>
How about an internationalization or custom placeholders line in line 106?
The text was updated successfully, but these errors were encountered: