On the translation interface (admin/config/regional/translate/translate) when I try to look for a string that exists, and I write it in the "String contains" input, and click on Filter, it doesn't filter at all, all the strings are shown and the input appears empty.

Even if I just change the value of one of the three select elements, it doesn't do anything and after clicking on the Filter button, I have the same result and the value of the selects are the default ones.

Any ideas?

Comments

taote’s picture

Title: Translation interface not working when I try or showing any results » Translation interface not working or showing any results
taote’s picture

Ok, I got it. Apparently the Bootstrap theme is changing the Filter button adding the following markup before the word Filter:
<i class="icon glyphicon glyphicon-filter" aria-hidden="true"></i>

And because in the function locale_translation_filter_form_submit($form, &$form_state) in the file locale.admin.inc, to decide what to do is comparing the action with the word Filter (case t('Filter')), because of this prefix is not working.

So the problem is the small icon that the Bootstrap theme adds to the button.

markhalliwell’s picture

This isn't a core issue.