Possible to Rename Review Panel?

Are you missing a feature? Request its implementation here.
dreifsnider
Posts: 171
Joined: Thu Aug 30, 2018 10:06 pm

Possible to Rename Review Panel?

Post by dreifsnider »

Hi,

We're wondering if it's possible to easily rename the Review panel?

For example, we'd like to rename this panel to "Changes and Comments" instead of "Review":
image.png
The reason being that the name "Review" makes our Web Author users think they need to perform actions on the changes and comments that display in this panel. We instead want them to simply look at and be aware of the changes and comments in this panel and to not actually take any actions on these changes and comments. We're hoping that by changing the title of the panel would make this clearer to our Web Author users.

Thank you!
Daniel
You do not have the required permissions to view the files attached to this post.
mihaela
Posts: 515
Joined: Wed May 20, 2009 2:40 pm

Re: Possible to Rename Review Panel?

Post by mihaela »

Hello,

There is no API to change the name of a side panel, but you can use the translation API [1] in a simple plugin to change the translation of the tag used for the Review panel title, like this:

Code: Select all

sync.api.Translation.addTranslations({
    'REVIEW_': {
      "en_US": "Chages and Comments",
      "de_DE": "...",
      "fr_FR": "...",
      "ja_JP": "...",
      "nl_NL": "..."
  }})
[1] https://www.oxygenxml.com/maven/com/oxy ... ation.html

Best Regards,
Mihaela
Mihaela Calotescu
http://www.oxygenxml.com
Post Reply