Current
Chrome, Win10, Spring(egovernment)
// Write example code
var locale_kor_KOR = {
'Redo': 'λ€μ μ€ν',
'Undo': 'μ·¨μ',
'Delete': 'μμ ',
'Delete-all': 'λͺ¨λ μμ ',
'Draw': '그리기',
'Shape': 'λν μ½μ
',
'Icon': 'μμ΄μ½ μ½μ
',
'Text': 'κΈμ μ
λ ₯'
'Redo': 'λ€μ μ€ν',
'Undo': 'μ·¨μ',
'Delete': 'μμ ',
'Delete-all': 'λͺ¨λ μμ ',
Wouldn't show up tool tip like Draw, Shape and etc.
Also how do I change menu names in the detail menu?
Your API document didn't clearly show any examples of it nor
any clear explanations, so it would be great to know
Thank you.
@AlexanderYoo : I believe that currently there is no option to show tooltip for all icons with localized data . For that let me provided customized solution using jquery while rendering an image editor
var locale_kor_KOR = '{ "undo":"λ€μ μ€ν", "redo":"μ·¨μ", "delete":"μμ ", "delete-all" :"λͺ¨λ μμ ","draw": "그리기","shape": "λν μ½μ
","icon": "μμ΄μ½ μ½μ
","text": "κΈμ μ
λ ₯"}';
JSON.parse(locale_kor_KOR, function (key, value) {
var buttonKey = '#tie-btn-' + key;
if($(buttonKey).length > 0) {
$(buttonKey).attr('tooltip-content',value);
}
});
I hope this will help you
_Thank You_
@AlexanderYoo
I found these button's tooltip is missing. I'll add the button's tooltip next release. Thx.
Thank you @junghwan-park
Most helpful comment
@AlexanderYoo
I found these button's tooltip is missing. I'll add the button's tooltip next release. Thx.