[DE] Fix translation

This commit is contained in:
Julia Radzhabova 2021-02-08 18:31:00 +03:00
parent 52a28f89c8
commit cac9307e8c
2 changed files with 4 additions and 2 deletions

View file

@ -224,7 +224,7 @@ define([
this.chLinks = new Common.UI.CheckBox({ this.chLinks = new Common.UI.CheckBox({
el: $('#tableofcontents-chb-links'), el: $('#tableofcontents-chb-links'),
labelText: this.strLinks, labelText: (this.type==1) ? this.strLinksOF : this.strLinks,
value: 'checked' value: 'checked'
}); });
this.chLinks.on('change', _.bind(function(field, newValue, oldValue, eOpts){ this.chLinks.on('change', _.bind(function(field, newValue, oldValue, eOpts){
@ -905,7 +905,8 @@ define([
textTable: 'Table', textTable: 'Table',
txtDistinctive: 'Distinctive', txtDistinctive: 'Distinctive',
txtCentered: 'Centered', txtCentered: 'Centered',
txtFormal: 'Formal' txtFormal: 'Formal',
strLinksOF: 'Format table of figures as links'
}, DE.Views.TableOfContentsSettings || {})) }, DE.Views.TableOfContentsSettings || {}))
}); });

View file

@ -2219,6 +2219,7 @@
"DE.Views.TableOfContentsSettings.strAlign": "Right align page numbers", "DE.Views.TableOfContentsSettings.strAlign": "Right align page numbers",
"DE.Views.TableOfContentsSettings.strFullCaption": "Include label and number", "DE.Views.TableOfContentsSettings.strFullCaption": "Include label and number",
"DE.Views.TableOfContentsSettings.strLinks": "Format Table of Contents as links", "DE.Views.TableOfContentsSettings.strLinks": "Format Table of Contents as links",
"DE.Views.TableOfContentsSettings.strLinksOF": "Format table of figures as links",
"DE.Views.TableOfContentsSettings.strShowPages": "Show page numbers", "DE.Views.TableOfContentsSettings.strShowPages": "Show page numbers",
"DE.Views.TableOfContentsSettings.textBuildTable": "Build table of contents from", "DE.Views.TableOfContentsSettings.textBuildTable": "Build table of contents from",
"DE.Views.TableOfContentsSettings.textBuildTableOF": "Build table of figures from", "DE.Views.TableOfContentsSettings.textBuildTableOF": "Build table of figures from",