Reputation: 3437
I want to change the tab's title from "Personal information" to "Personal settings" in all related sections like site/@@personal-information and site/@@personal-preferences
Any idea where I can set it? Or is it OK to solve it with Diazo or jQuery?
Upvotes: 0
Views: 42
Reputation: 3965
We did a JS-solution once, when the usecase was for a handful of content-managers who certainly would not disable Javascript.
To be compliant with the Web Content Accessibility Guidelines (WCAG), you want to override the English translation-string of Plone.
Hint: A translation for "Personal Information" occurs twice in plone.pot
, you need to regard two message-ids.
Upvotes: 1