[DE] For Bug 56224
This commit is contained in:
parent
49bd75e457
commit
10d7f8c179
|
@ -493,6 +493,10 @@ define([
|
|||
value = Common.localStorage.getBool("de-settings-spellcheck", true);
|
||||
Common.Utils.InternalSettings.set("de-settings-spellcheck", value);
|
||||
this.api.asc_setSpellCheck(value);
|
||||
value = new AscCommon.CSpellCheckSettings();
|
||||
value.put_IgnoreWordsInUppercase(Common.localStorage.getBool("de-spellcheck-ignore-uppercase-words"));
|
||||
value.put_IgnoreWordsWithNumbers(Common.localStorage.getBool("de-spellcheck-ignore-numbers-words"));
|
||||
this.api.asc_setSpellCheckSettings(value);
|
||||
}
|
||||
|
||||
value = parseInt(Common.localStorage.getItem("de-settings-paste-button"));
|
||||
|
|
|
@ -1167,6 +1167,15 @@ define([
|
|||
me.api.asc_setSpellCheck(value);
|
||||
Common.NotificationCenter.trigger('spelling:turn', value ? 'on' : 'off', true); // only toggle buttons
|
||||
|
||||
value = Common.localStorage.getBool("de-spellcheck-ignore-uppercase-words", false);
|
||||
Common.Utils.InternalSettings.set("de-spellcheck-ignore-uppercase-words", value);
|
||||
value = Common.localStorage.getBool("de-spellcheck-ignore-numbers-words", false);
|
||||
Common.Utils.InternalSettings.set("de-spellcheck-ignore-numbers-words", value);
|
||||
value = new AscCommon.CSpellCheckSettings();
|
||||
value.put_IgnoreWordsInUppercase(Common.Utils.InternalSettings.get("de-spellcheck-ignore-uppercase-words"));
|
||||
value.put_IgnoreWordsWithNumbers(Common.Utils.InternalSettings.get("de-spellcheck-ignore-numbers-words"));
|
||||
this.api.asc_setSpellCheckSettings(value);
|
||||
|
||||
value = Common.localStorage.getBool("de-settings-compatible", false);
|
||||
Common.Utils.InternalSettings.set("de-settings-compatible", value);
|
||||
|
||||
|
|
|
@ -318,6 +318,12 @@ define([
|
|||
'<tr class="edit spellcheck">',
|
||||
'<td colspan="2"><div id="fms-chb-spell-check"></div></td>',
|
||||
'</tr>',
|
||||
'<tr class="edit spellcheck">',
|
||||
'<td colspan="2"><span id="fms-chb-ignore-uppercase-words"></span></td>',
|
||||
'</tr>',
|
||||
'<tr class="edit spellcheck">',
|
||||
'<td colspan="2"><span id="fms-chb-ignore-numbers-words"></span></td>',
|
||||
'</tr>',
|
||||
'<tr class="edit">',
|
||||
'<td colspan="2"><button type="button" class="btn btn-text-default" id="fms-btn-auto-correct" style="width:auto; display: inline-block;padding-right: 10px;padding-left: 10px;" data-hint="2" data-hint-direction="bottom" data-hint-offset="medium"><%= scope.txtAutoCorrect %></button></div></td>',
|
||||
'</tr>',
|
||||
|
@ -416,6 +422,25 @@ define([
|
|||
dataHint: '2',
|
||||
dataHintDirection: 'left',
|
||||
dataHintOffset: 'small'
|
||||
}).on('change', function(field, newValue, oldValue, eOpts){
|
||||
me.chIgnoreUppercase.setDisabled(field.getValue()!=='checked');
|
||||
me.chIgnoreNumbers.setDisabled(field.getValue()!=='checked');
|
||||
});
|
||||
|
||||
this.chIgnoreUppercase = new Common.UI.CheckBox({
|
||||
el: $markup.findById('#fms-chb-ignore-uppercase-words'),
|
||||
labelText: this.strIgnoreWordsInUPPERCASE,
|
||||
dataHint: '2',
|
||||
dataHintDirection: 'left',
|
||||
dataHintOffset: 'small'
|
||||
});
|
||||
|
||||
this.chIgnoreNumbers = new Common.UI.CheckBox({
|
||||
el: $markup.findById('#fms-chb-ignore-numbers-words'),
|
||||
labelText: this.strIgnoreWordsWithNumbers,
|
||||
dataHint: '2',
|
||||
dataHintDirection: 'left',
|
||||
dataHintOffset: 'small'
|
||||
});
|
||||
|
||||
this.chCompatible = new Common.UI.CheckBox({
|
||||
|
@ -780,8 +805,11 @@ define([
|
|||
if (this.mode.canForcesave)
|
||||
this.chForcesave.setValue(Common.Utils.InternalSettings.get("de-settings-forcesave"));
|
||||
|
||||
if (Common.UI.FeaturesManager.canChange('spellcheck'))
|
||||
if (Common.UI.FeaturesManager.canChange('spellcheck')) {
|
||||
this.chSpell.setValue(Common.Utils.InternalSettings.get("de-settings-spellcheck"));
|
||||
this.chIgnoreUppercase.setValue(Common.Utils.InternalSettings.get("de-spellcheck-ignore-uppercase-words"));
|
||||
this.chIgnoreNumbers.setValue(Common.Utils.InternalSettings.get("de-spellcheck-ignore-numbers-words"));
|
||||
}
|
||||
this.chAlignGuides.setValue(Common.Utils.InternalSettings.get("de-settings-showsnaplines"));
|
||||
this.chCompatible.setValue(Common.Utils.InternalSettings.get("de-settings-compatible"));
|
||||
|
||||
|
@ -835,8 +863,15 @@ define([
|
|||
Common.localStorage.setItem("de-settings-autosave", this.chAutosave.isChecked() ? 1 : 0);
|
||||
if (this.mode.canForcesave)
|
||||
Common.localStorage.setItem("de-settings-forcesave", this.chForcesave.isChecked() ? 1 : 0);
|
||||
if (Common.UI.FeaturesManager.canChange('spellcheck'))
|
||||
if (Common.UI.FeaturesManager.canChange('spellcheck') && this.mode.isEdit) {
|
||||
Common.localStorage.setItem("de-settings-spellcheck", this.chSpell.isChecked() ? 1 : 0);
|
||||
var value = this.chIgnoreUppercase.isChecked();
|
||||
Common.localStorage.setBool("de-spellcheck-ignore-uppercase-words", value);
|
||||
Common.Utils.InternalSettings.set("de-spellcheck-ignore-uppercase-words", value);
|
||||
value = this.chIgnoreNumbers.isChecked();
|
||||
Common.localStorage.setBool("de-spellcheck-ignore-numbers-words", value);
|
||||
Common.Utils.InternalSettings.set("de-spellcheck-ignore-numbers-words", value);
|
||||
}
|
||||
Common.localStorage.setItem("de-settings-compatible", this.chCompatible.isChecked() ? 1 : 0);
|
||||
Common.Utils.InternalSettings.set("de-settings-compatible", this.chCompatible.isChecked() ? 1 : 0);
|
||||
Common.Utils.InternalSettings.set("de-settings-showsnaplines", this.chAlignGuides.isChecked());
|
||||
|
@ -951,7 +986,9 @@ define([
|
|||
strShowComments: 'Show comments in text',
|
||||
strShowResolvedComments: 'Show resolved comments',
|
||||
txtFastTip: 'Real-time co-editing. All changes are saved automatically',
|
||||
txtStrictTip: 'Use the \'Save\' button to sync the changes you and others make'
|
||||
txtStrictTip: 'Use the \'Save\' button to sync the changes you and others make',
|
||||
strIgnoreWordsInUPPERCASE: 'Ignore words in UPPERCASE',
|
||||
strIgnoreWordsWithNumbers: 'Ignore words with numbers'
|
||||
}, DE.Views.FileMenuPanels.Settings || {}));
|
||||
|
||||
DE.Views.FileMenuPanels.RecentFiles = Common.UI.BaseView.extend({
|
||||
|
|
|
@ -1799,6 +1799,8 @@
|
|||
"DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Disable all macros with a notification",
|
||||
"DE.Views.FileMenuPanels.Settings.txtWin": "as Windows",
|
||||
"DE.Views.FileMenuPanels.Settings.txtWorkspace": "Workspace",
|
||||
"DE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "Ignore words in UPPERCASE",
|
||||
"DE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Ignore words with numbers",
|
||||
"DE.Views.FormSettings.textAlways": "Always",
|
||||
"DE.Views.FormSettings.textAspect": "Lock aspect ratio",
|
||||
"DE.Views.FormSettings.textAutofit": "AutoFit",
|
||||
|
|
|
@ -296,7 +296,6 @@ define([
|
|||
'<td><span id="fms-cmb-dictionary-language"></span></td>',
|
||||
'</tr>',
|
||||
'<tr class="spellcheck">',
|
||||
|
||||
'<td colspan="2"><span id="fms-chb-ignore-uppercase-words"></span></td>',
|
||||
'</tr>',
|
||||
'<tr class="spellcheck">',
|
||||
|
|
Loading…
Reference in a new issue