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

jlballes’s picture

I have the same problem. Help!

yavor’s picture

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.