Skip to main content
ctsuttle
Participating Frequently
July 2, 2018
Answered

Change the language of button rollovers in Player/Skin Editor

  • July 2, 2018
  • 3 replies
  • 1603 views

Hello.  When you rollover the navigation buttons in the Player, you can see the word associated with the button (i.e. Play, Pause, etc.).  I need to change the word that appears from English to French.  Where do I go to make that language change?

This topic has been closed for replies.
Correct answer TLCMediaDesign

Perfect, thank's for your help Jeremy,

I'll test it...


The tooltips are also here in your published file:

assets/playbar/playbarScript.js

You can edit one, save it and then just replace the version that is published.

3 replies

Jeremy Shimmerman
Participating Frequently
November 1, 2018

I did some digging around here. Captivate has tooltip localization but I was unable to figure out the function for activating it. If you type

cp.PB.toolTips into your browser console you can see the language array they've created. 

So there are two ways you can modify this without using their tooltip localization function. 

One is to modify the CPM.js file before you publish. Search for cp.PB.toolTips = {}; in your CPM file and then replace the English name with the one you want. 

The other way is to modify it with javascript in your project. For example on the frame, execute the following js:

document.getElementsByClassName('playbarBigButton')[0].title = "NEW NAME"

You would need to write a new line for each of the playbar buttons.

David Burnham HBA
Inspiring
November 1, 2018

Wow you are asking a lot of instructional designers when the competition has a simple solution - this reminds me of the old apple ads with the guys in white and the guy on the podium saying - backslash, ini file, parameters, etc. when talking about dos commands.

christophet11731756
Inspiring
November 1, 2018

Hello Ctsuttle, 

I have the same question, but in my case, I use Adobe Captivate 2019 in a french version, and I publish project in English version. 

In my case, the language of button rollovers in player are in French, and would expect to find a solution to translate them in english. 

I guess install an english version of Adobe Captivate could be a solution.

I'll test it and give you some news if it's working. 

In the same time if you find, or found a solution, plse let me know it !!

Best Regards,

Chris. 

Christophe Tillier- Enovatech France https://www.linkedin.com/in/christophe-tillier-24bba489/
David Burnham HBA
Inspiring
November 1, 2018

Unlike storyline there is no setting in the captivate skin setting that allows you to change to a different language like in the storyline player controls. As Lilybiri suggests you may want to create your own controls.

Lilybiri
Legend
July 2, 2018

I rarely use the playbar, but always create custom buttons. One of the reasons is that I often had to localise (to Dutch and French) and I'm using an English version. With shape buttons that can be used on master slides or timed for the rest of the project, it is not that much work. In very old versions there was a way around to edit the playbar (very cumbersome), but have no idea if it would still be functional for the present HTML toolbars. Maybe someone else with programming skills can help you.