diff --git a/apps/common/main/lib/controller/ReviewChanges.js b/apps/common/main/lib/controller/ReviewChanges.js index 5e23d10acf..6d77ff929c 100644 --- a/apps/common/main/lib/controller/ReviewChanges.js +++ b/apps/common/main/lib/controller/ReviewChanges.js @@ -238,7 +238,7 @@ define([ btnlock = this.isSelectedChangesLocked(changes, isShow); } if (this._state.lock !== btnlock) { - Common.Utils.lockControls(Common.enumLock.reviewChangelock, btnlock, {array: [this.view.btnAccept, this.view.btnReject]}); + // Common.Utils.lockControls(Common.enumLock.reviewChangelock, btnlock, {array: [this.view.btnAccept, this.view.btnReject]}); this.dlgChanges && Common.Utils.lockControls(Common.enumLock.reviewChangelock, btnlock, {array: [this.dlgChanges.btnAccept, this.dlgChanges.btnReject]}); this._state.lock = btnlock; Common.Utils.InternalSettings.set(this.appPrefix + "accept-reject-lock", btnlock); @@ -582,7 +582,7 @@ define([ if (item.value === 'all') { this.api.asc_AcceptAllChanges(); } else { - this.api.asc_AcceptChangesBySelection(true); // accept and move to the next change + this._state.lock ? this.api.asc_GetNextRevisionsChange() : this.api.asc_AcceptChangesBySelection(true); // accept and move to the next change } } else { this.api.asc_AcceptChanges(menu); @@ -597,7 +597,7 @@ define([ if (item.value === 'all') { this.api.asc_RejectAllChanges(); } else { - this.api.asc_RejectChangesBySelection(true); // reject and move to the next change + this._state.lock ? this.api.asc_GetNextRevisionsChange() : this.api.asc_RejectChangesBySelection(true); // reject and move to the next change } } else { this.api.asc_RejectChanges(menu); diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json index 38527beeb2..d28c88fde0 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -603,7 +603,7 @@ "Common.Views.ReviewChanges.textEnable": "Enable", "Common.Views.ReviewChanges.textWarnTrackChanges": "Track Changes will be switched ON for all users with full access. The next time anyone opens the doc, Track Changes will remain enabled.", "Common.Views.ReviewChanges.textWarnTrackChangesTitle": "Enable Track Changes for everyone?", - "Common.Views.ReviewChanges.tipAcceptCurrent": "Accept current change", + "Common.Views.ReviewChanges.tipAcceptCurrent": "Accept current change and move to next", "Common.Views.ReviewChanges.tipCoAuthMode": "Set co-editing mode", "Common.Views.ReviewChanges.tipCombine": "Combine current document with another one", "Common.Views.ReviewChanges.tipCommentRem": "Remove comments", @@ -612,7 +612,7 @@ "Common.Views.ReviewChanges.tipCommentResolveCurrent": "Resolve current comments", "Common.Views.ReviewChanges.tipCompare": "Compare current document with another one", "Common.Views.ReviewChanges.tipHistory": "Show version history", - "Common.Views.ReviewChanges.tipRejectCurrent": "Reject current change", + "Common.Views.ReviewChanges.tipRejectCurrent": "Reject current change and move to next", "Common.Views.ReviewChanges.tipReview": "Track changes", "Common.Views.ReviewChanges.tipReviewView": "Select the mode you want the changes to be displayed", "Common.Views.ReviewChanges.tipSetDocLang": "Set document language", diff --git a/apps/documenteditor/main/locale/ru.json b/apps/documenteditor/main/locale/ru.json index c6e0e0a117..c47d457007 100644 --- a/apps/documenteditor/main/locale/ru.json +++ b/apps/documenteditor/main/locale/ru.json @@ -603,7 +603,7 @@ "Common.Views.ReviewChanges.textEnable": "Включить", "Common.Views.ReviewChanges.textWarnTrackChanges": "Отслеживание изменений будет ВКЛЮЧЕНО для всех пользователей с полным доступом. При следующем открытии документа отслеживание изменений останется включенным.", "Common.Views.ReviewChanges.textWarnTrackChangesTitle": "Включить отслеживание изменений для всех?", - "Common.Views.ReviewChanges.tipAcceptCurrent": "Принять текущее изменение", + "Common.Views.ReviewChanges.tipAcceptCurrent": "Принять текущее изменение и перейти к следующему", "Common.Views.ReviewChanges.tipCoAuthMode": "Задать режим совместного редактирования", "Common.Views.ReviewChanges.tipCombine": "Объединить текущий документ с другим", "Common.Views.ReviewChanges.tipCommentRem": "Удалить комментарии", @@ -612,7 +612,7 @@ "Common.Views.ReviewChanges.tipCommentResolveCurrent": "Решить текущие комментарии", "Common.Views.ReviewChanges.tipCompare": "Сравнить текущий документ с другим", "Common.Views.ReviewChanges.tipHistory": "Показать историю версий", - "Common.Views.ReviewChanges.tipRejectCurrent": "Отклонить текущее изменение", + "Common.Views.ReviewChanges.tipRejectCurrent": "Отклонить текущее изменение и перейти к следующему", "Common.Views.ReviewChanges.tipReview": "Отслеживать изменения", "Common.Views.ReviewChanges.tipReviewView": "Выберите режим, в котором вы хотите отображать изменения", "Common.Views.ReviewChanges.tipSetDocLang": "Задать язык документа",