From 03b75e00af6a75c4130e055cc3de4e9fc1774c1e Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 7 Sep 2017 14:47:59 +0300 Subject: [PATCH] [DE] Update hints and translations for review buttons. --- apps/common/main/lib/view/ReviewChanges.js | 8 +++++--- apps/documenteditor/main/locale/en.json | 6 ++++-- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/apps/common/main/lib/view/ReviewChanges.js b/apps/common/main/lib/view/ReviewChanges.js index 986a229a4..852e57d28 100644 --- a/apps/common/main/lib/view/ReviewChanges.js +++ b/apps/common/main/lib/view/ReviewChanges.js @@ -598,7 +598,7 @@ define([ ] }) ); - me.btnAccept.updateHint([me.txtAcceptCurrent, me.txtAcceptChanges]); + me.btnAccept.updateHint([me.tipAcceptCurrent, me.txtAcceptChanges]); me.btnReject.setMenu( new Common.UI.Menu({ @@ -614,7 +614,7 @@ define([ ] }) ); - me.btnReject.updateHint([me.txtRejectCurrent, me.txtRejectChanges]); + me.btnReject.updateHint([me.tipRejectCurrent, me.txtRejectChanges]); me.btnReviewView.setMenu( new Common.UI.Menu({ @@ -793,7 +793,9 @@ define([ txtMarkup: 'All changes (Editing)', txtFinal: 'All changes accepted (Preview)', txtOriginal: 'All changes rejected (Preview)', - tipReviewView: 'Select the way you want the changes to be displayed' + tipReviewView: 'Select the way you want the changes to be displayed', + tipAcceptCurrent: 'Accept current changes', + tipRejectCurrent: 'Reject current changes' } }()), Common.Views.ReviewChanges || {})); diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json index 60e79667f..be3010559 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -201,7 +201,8 @@ "Common.Views.ReviewChanges.txtAccept": "Accept", "Common.Views.ReviewChanges.txtAcceptAll": "Accept All Changes", "Common.Views.ReviewChanges.txtAcceptChanges": "Accept changes", - "Common.Views.ReviewChanges.txtAcceptCurrent": "Accept current change", + "Common.Views.ReviewChanges.txtAcceptCurrent": "Accept Current Change", + "Common.Views.ReviewChanges.tipAcceptCurrent": "Accept current change", "Common.Views.ReviewChanges.txtClose": "Close", "Common.Views.ReviewChanges.txtDocLang": "Language", "Common.Views.ReviewChanges.txtFinal": "All changes accepted (Preview)", @@ -212,7 +213,8 @@ "Common.Views.ReviewChanges.txtReject": "Reject", "Common.Views.ReviewChanges.txtRejectAll": "Reject All Changes", "Common.Views.ReviewChanges.txtRejectChanges": "Reject changes", - "Common.Views.ReviewChanges.txtRejectCurrent": "Reject current change", + "Common.Views.ReviewChanges.txtRejectCurrent": "Reject Current Change", + "Common.Views.ReviewChanges.tipRejectCurrent": "Reject current change", "Common.Views.ReviewChanges.txtSpelling": "Spell Checking", "Common.Views.ReviewChanges.txtTurnon": "Track Changes", "Common.Views.ReviewChanges.txtView": "Display Mode",