Hi,
I wanted to translate the text for "Start a new" but it is not translatable. To be able to translate this text I changed the following in views_search.form_view_attachment.inc in includes folder:
line 60
'#value' => 'Start a new ' . $form_state['storage']['view_info']['title'],
changed to
'#value' => t('Start a new ') . $form_state['storage']['view_info']['title'],
Greez,
Tobias
Comments
Comment #1
tobiberlinAlso the cancel button was not translatable... so I change the following lines in views_search.module:
line 191
changed to
Comment #2
haagendazs commentedServus Tobi: I'll create a dev version of the module shortly. Sorry for having missed both t() functions. I'll add those and would love to have you confirm that everything still works fine.
Comment #3
tobiberlinI would be pleased to support you in this way
Comment #4
haagendazs commentedServus Tobias. I created a 6.x-1.x-dev version, which should be available for download shortly. If you could test to make sure that the missing t() functions work correctly, that'd be great. Thanks!
Comment #5
tobiberlinI tested the dev-version and still these strings are translated. Thanks!
Comment #6
haagendazs commentedAwesome. I'm going to mark this issue as closed.