From simplenews.module there is a string which is "My newsletters". I installed module simplenews_register and all users including admin can edit their simplenews subscriptions through their user editing page. "My newsletter" will display on the user profile's category page as a navigation tab (one of the secondary tabs). The problem is as follows:
I did the translation from locale (SEARCH STRINGS). HOWEVER, the result is not what I expected as I found that on the USER/EDIT page the tab "My newsletter" on both English and Chinese version has BOTH changed to Chinese. THE ENGLISH VERSION SHOULD NOT ALSO TRANSLATED. BUT IT DOES.
P.S. All other strings in other secondary tabs work. only this tab "My newsletters" translation doesnt work.
I tried using global language, and put that in the function simplenews_user but it is still not working.
If would be good if someone can help.
function simplenews_user($op, &$edit, &$account, $category = NULL) {
.......
......
// Newsletter tab with custom permission check.
$output[] = array(
'name' => 'newsletter',
//'title' => t('My newsletters'), //wordings03 remove this
'title' => t('My newsletters'), //wordings03 add this for simplenews title at the user edit
'weight' => 10,
'access callback' => 'simplenews_subscription_edit_access',
);
.........
........