I got 3 problems when trying to translate the Grid interface:
1. The "Submit" button does not translate. All other buttons translate as expected.
2. How can I translate the line "Displaying rows 1 thru 20 of 100"
3. I have a field:
Field('status',type='inspection_status',
requires=IS_IN_SET([
('Not started',T('Not started')),
( 'Waiting',T('Waiting')),
('Ongoing',T('Ongoing')),
('Finished',T('Finished'))],
zero='choose one'),
default='Not started'),
In the list page, this field remains as it is stored in the database. In the edit page, the translated items show. How can I translate this field correctly?
Many thanks and best regards
Stefan Messmer