I have a site with 2 languages, English and Greek.
On page admin/user/access/tac_lite the string 'Settings' on the Settings tab appears with its greek translation even if I select English as my language. i.e. it doesn't give me the option to translate it from the translate interface page.
Comments
Comment #1
pavloukos commentedOn file tac_lite.module lines 56-61
changing t('Settings') to just 'Settings' fixes that I think since that string already exists in core (so it will get its translation from there).
However, after changing that we may need to delete the created entry in locales_source table.
I am just wondering why would'nt drupal create a correct locales_source entry (i.e. Settings) so that we can go translate it afterwards as normal, but instead uses its translated string and puts that in the locales_source!
Anyone?
Comment #2
Dave Cohen commentedTurns out all the hook_menu titles should be untranslated. Just checked in a fix to DRUPAL-6--1 branch. Thanks.