By Alcaparra on
Hi, I have a views with exposed filters. The select list shows "Any" and I want to translate but I don't know where.
Hi, I have a views with exposed filters. The select list shows "Any" and I want to translate but I don't know where.
Comments
I have the same problem.
I have the same problem. Help!
solution
Open file : handlers/views_handler_filter.inc
Find
$any_label = variable_get('views_exposed_filter_any_label', 'old_any') == 'old_any' ? '<Any>' : t('- Any -');and change it to:
$any_label = variable_get('views_exposed_filter_any_label', 'old_any') == 'old_any' ? t('<All>') : t('- Any -');Now you can change it or translate it.