diff --git a/apps/spreadsheeteditor/main/app/view/Spellcheck.js b/apps/spreadsheeteditor/main/app/view/Spellcheck.js index 733460825..e93ce1324 100644 --- a/apps/spreadsheeteditor/main/app/view/Spellcheck.js +++ b/apps/spreadsheeteditor/main/app/view/Spellcheck.js @@ -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 || {})); }); \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json index 1f3275a2b..e9708edf9 100644 --- a/apps/spreadsheeteditor/main/locale/en.json +++ b/apps/spreadsheeteditor/main/locale/en.json @@ -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" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/ru.json b/apps/spreadsheeteditor/main/locale/ru.json index f54e1d75a..ab733725d 100644 --- a/apps/spreadsheeteditor/main/locale/ru.json +++ b/apps/spreadsheeteditor/main/locale/ru.json @@ -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": "Перейти к следующему слову" } \ No newline at end of file