[SSE] Spellcheck: add hint to button

This commit is contained in:
Julia Radzhabova 2019-08-06 11:11:31 +03:00
parent 4bbab48e58
commit 6ab79420b4
3 changed files with 8 additions and 4 deletions

View file

@ -82,7 +82,8 @@ define([
this.buttonNext = new Common.UI.Button({
style: 'margin-left: 5px; width: 22px; height: 22px; border: 1px solid #cfcfcf;',
cls: 'btn-toolbar bg-white',
iconCls: 'btn-spellcheck-next'
iconCls: 'btn-spellcheck-next',
hint: this.txtNextTip
});
this.buttonNext.render($('#spellcheck-next'));
@ -174,7 +175,8 @@ define([
textIgnoreAll: 'Ignore All',
txtAddToDictionary: 'Add To Dictionary',
txtDictionaryLanguage: 'Dictionary Language',
txtComplete: 'Spellcheck has been complete'
txtComplete: 'Spellcheck has been complete',
txtNextTip: 'Go to the next word'
}, SSE.Views.Spellcheck || {}));
});

View file

@ -2403,5 +2403,6 @@
"SSE.Views.Spellcheck.textIgnoreAll": "Ignore All",
"SSE.Views.Spellcheck.txtAddToDictionary": "Add To Dictionary",
"SSE.Views.Spellcheck.txtDictionaryLanguage": "Dictionary Language",
"SSE.Views.Spellcheck.txtComplete": "Spellcheck has been complete"
"SSE.Views.Spellcheck.txtComplete": "Spellcheck has been complete",
"SSE.Views.Spellcheck.txtNextTip": "Go to the next word"
}

View file

@ -2331,5 +2331,6 @@
"SSE.Views.Spellcheck.textIgnoreAll": "Пропустить все",
"SSE.Views.Spellcheck.txtAddToDictionary": "Добавить в словарь",
"SSE.Views.Spellcheck.txtDictionaryLanguage": "Язык словаря",
"SSE.Views.Spellcheck.txtComplete": "Проверка орфографии закончена"
"SSE.Views.Spellcheck.txtComplete": "Проверка орфографии закончена",
"SSE.Views.Spellcheck.txtNextTip": "Перейти к следующему слову"
}