I'm using the V5 Cool Max skin for a website. I've managed to turn all of the text into Ukrainian except for the full text search textbox in the picture. How can I turn "Search" into the Ukrainian version?
Search box
Moderators: Alexander Halser, Tim Green
-
- Posts: 20
- Joined: Fri Jul 30, 2010 1:03 am
- Location: Washington, DC area
- Contact:
Search box
You do not have the required permissions to view the files attached to this post.
- Tim Green
- Site Admin
- Posts: 22910
- Joined: Mon Jun 24, 2002 9:11 am
- Location: Bruehl, Germany
- Contact:
Re: Search box
Hi Ted,
This needs to be corrected in the next update, because the placeholder text displayed there is still hard-coded in the source code. You can correct it yourself as follows:
Edit the file hm_webhelp.js in the baggage and search for
.attr("placeholder",
You will find four places where it is used. In three of them, it will be followed by "Search" (at around lines 1463, 1470 and 1477). In those places, replace "Search" by "<%UITEXT_SEARCH%>". That will insert your text for the word from that variable in the TOC & Search variables group.
This needs to be corrected in the next update, because the placeholder text displayed there is still hard-coded in the source code. You can correct it yourself as follows:
Edit the file hm_webhelp.js in the baggage and search for
.attr("placeholder",
You will find four places where it is used. In three of them, it will be followed by "Search" (at around lines 1463, 1470 and 1477). In those places, replace "Search" by "<%UITEXT_SEARCH%>". That will insert your text for the word from that variable in the TOC & Search variables group.
Regards,
Tim (EC Software Documentation & User Support)
Private support:
Please do not email or PM me with private support requests -- post to the forum directly.
Tim (EC Software Documentation & User Support)
Private support:
Please do not email or PM me with private support requests -- post to the forum directly.
-
- Posts: 20
- Joined: Fri Jul 30, 2010 1:03 am
- Location: Washington, DC area
- Contact:
Re: Search box
Thanks, that worked perfectly.