0 votes
by (300 points)
I would like to change the text "saves" to "text". or link "text" to "saves".

I looked at the css and the documentation and i couldnt find it. I also looked at the old forums and here.

I know its just there but i cant seem to find it.

1 Answer

+2 votes
by (159k points)
selected by
 
Best answer

You want the Guide: Localization section of the manual, it explains about the l10nStrings variable as well as includes a link to the l10n/strings.js file which contains the names of the related properties. The particular property you want is l10nStrings.savesTitle and you use code like the following in your project's Story Javascript area to change it.

l10nStrings.savesTitle = "text";

 

by (300 points)
Thank you! It worked! I was looking at the wrong places! Didn't think it would be on there. Thank you again!
...