-
AuthorPosts
-
redserp Friend
redserp
- Join date:
- May 2009
- Posts:
- 51
- Downloads:
- 0
- Uploads:
- 3
- Thanks:
- 24
- Thanked:
- 7 times in 1 posts
May 13, 2009 at 12:57 pm #141149Hello,
I read all posts about language questions but i still have a problem/question… In highslide from JA Uvite I was able to change all parts i wanted to Portuguese by going to the ja_highslide.php file and replace the words: the move, close and so on. But I cant find the text that appears on mouse over a enlarged picture. The text: “Click to close image, click and drag to move. Use arrow keys for next and previous” . Where is it?? I search it again and again in ja_highslide.php but cant find it.
Sorry for my English.
Thank you,
Joel Gomesnguyenhuu quang Friendnguyenhuu quang
- Join date:
- September 2014
- Posts:
- 1087
- Downloads:
- 0
- Uploads:
- 3
- Thanks:
- 29
- Thanked:
- 328 times in 288 posts
May 13, 2009 at 1:18 pm #304522Check it at Javasript files
redserp Friendredserp
- Join date:
- May 2009
- Posts:
- 51
- Downloads:
- 0
- Uploads:
- 3
- Thanks:
- 24
- Thanked:
- 7 times in 1 posts
May 13, 2009 at 1:36 pm #304529<em>@quang268 128504 wrote:</em><blockquote>Check it at Javasript files</blockquote>
Checked it… nothing there. Thanks
nguyenhuu quang Friendnguyenhuu quang
- Join date:
- September 2014
- Posts:
- 1087
- Downloads:
- 0
- Uploads:
- 3
- Thanks:
- 29
- Thanked:
- 328 times in 288 posts
May 13, 2009 at 1:38 pm #304530I think it is Images, pls check Images.
redserp Friendredserp
- Join date:
- May 2009
- Posts:
- 51
- Downloads:
- 0
- Uploads:
- 3
- Thanks:
- 24
- Thanked:
- 7 times in 1 posts
May 13, 2009 at 2:25 pm #304537<em>@quang268 128513 wrote:</em><blockquote>I think it is Images, pls check Images.</blockquote>
Folder Images? I m not understanding.
One more thing, I was able to change the mouseover text “Click to enlarge” in thumbnails on ja_highslide.php. So the other mouseover text in a picture that is already enlarged should be found in same file, no? strange….wooohanetworks Friendwooohanetworks
- Join date:
- September 2008
- Posts:
- 1239
- Downloads:
- 0
- Uploads:
- 2
- Thanks:
- 148
- Thanked:
- 138 times in 41 posts
May 24, 2009 at 1:44 pm #305755<em>@redserp 128523 wrote:</em><blockquote>Folder Images? I m not understanding.
One more thing, I was able to change the mouseover text “Click to enlarge” in thumbnails on ja_highslide.php. So the other mouseover text in a picture that is already enlarged should be found in same file, no? strange….</blockquote>Those are image files, images with the text on it. So you have to e.g. open those in Photoshop and make some new ones with the same dimensions as the original one but in your language.
Easy thing, nothing to worry about at all.
redserp Friendredserp
- Join date:
- May 2009
- Posts:
- 51
- Downloads:
- 0
- Uploads:
- 3
- Thanks:
- 24
- Thanked:
- 7 times in 1 posts
May 25, 2009 at 12:56 am #305792<em>@wooohanetworks 130022 wrote:</em><blockquote>Those are image files, images with the text on it. So you have to e.g. open those in Photoshop and make some new ones with the same dimensions as the original one but in your language.
Easy thing, nothing to worry about at all.</blockquote>
Its not an image…. I ve checked. The other mouseover text wasnt an image either but i found that one as i told :((
redserp Friendredserp
- Join date:
- May 2009
- Posts:
- 51
- Downloads:
- 0
- Uploads:
- 3
- Thanks:
- 24
- Thanked:
- 7 times in 1 posts
May 25, 2009 at 2:04 am #305800Put this javascript in index.php from template directory:
hs.lang = {loadingText: ‘Carregando…’,
restoreTitle: ‘Clique para fechar a imagem, clique e arraste para mover. Use as setas do teclado para ver a imagem seguinte ou a anterior.’,};Or whatever your language is. 😀
1 user says Thank You to redserp for this useful post
alioztr Friendalioztr
- Join date:
- September 2008
- Posts:
- 197
- Downloads:
- 0
- Uploads:
- 21
- Thanks:
- 44
- Thanked:
- 3 times in 1 posts
December 21, 2009 at 11:49 am #327102Thats good but how can i change move, next, close, previous button language?
Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
December 23, 2009 at 8:46 am #327246Hello guy
please open the file :pluginscontentja_highslide.php
and try to find those codes:
[PHP]
$html .= ‘<div class=”highslide-caption” id=”‘.$id_link.'”>
<a href=”#” onclick=”return hs.previous(this); return false;” class=”control” style=”float:left; display: block”>
Previous
<br/>
<small style=”font-weight: normal; text-transform: none”>left arrow key</small>
</a>
<a href=”#” onclick=”return hs.next(this); return false;” class=”control”
style=”float:left; display: block; text-align: right; margin-left: 50px”>
Next
<br/>
<small style=”font-weight: normal; text-transform: none”>right arrow key</small>
</a>
<a href=”#” onclick=”return hs.close(this); return false;” class=”control”>Close</a>
<a href=”#” onclick=”return false” class=”highslide-move control”>Move</a>
<div style=”clear:both”> </div>
</div>’;$html .= ‘</div>’;
[/PHP][PHP]
$html .= ‘<div class=”highslide-caption” id=”‘.$id_link.'”>
<a href=”#” onclick=”return hs.previous(this); return false;” class=”control” style=”float:left; display: block”>
‘.JTEXT::_(‘PREVIOUS’).’
<br/>
<small style=”font-weight: normal; text-transform: none”>’.JTEXT::_(‘LEFT ARROW KEY’).'</small>
</a>
<a href=”#” onclick=”return hs.next(this); return false;” class=”control”
style=”float:left; display: block; text-align: right; margin-left: 50px”>
‘.JTEXT::_(‘NEXT’).’
<br/>
<small style=”font-weight: normal; text-transform: none”>’.JTEXT::_(‘RIGHT ARROW KEY’).'</small>
</a>
<a href=”#” onclick=”return hs.close(this); return false;” class=”control”>’.JTEXT::_(‘CLOSE’).'</a>
<a href=”#” onclick=”return false” class=”highslide-move control”>’.JTEXT::_(‘MOVE’).'</a>
<div style=”clear:both”> </div>
</div>’;$html .= ‘</div>’;
[/PHP]And ad those text into the languageen-GBen-GB.ini file:
MOVE=Move
NEXT=Next
PREVIOUS=Previous
LEFT ARROW KEY=Left arrow key
RIGHT ARROW KEY=Right arrow key -
AuthorPosts
This topic contains 10 replies, has 5 voices, and was last updated by Saguaros 14 years, 11 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum