Skip to content

Commit

Permalink
[UPD] translation
Browse files Browse the repository at this point in the history
  • Loading branch information
Viglino committed Feb 16, 2022
1 parent 020c378 commit 11c18ae
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions dist/ol-ext.js
Original file line number Diff line number Diff line change
Expand Up @@ -11333,11 +11333,11 @@ ol.control.PrintDialog = function(options) {
});
this.formats.forEach(function(format, i) {
ol.ext.element.create('OPTION', {
html: format.title,
html: this.i18n(format.title),
value: i,
parent: saveLegend
});
});
}.bind(this));
// Print
var prButtons = ol.ext.element.create('DIV', {
className: 'ol-ext-buttons',
Expand Down
2 changes: 1 addition & 1 deletion dist/ol-ext.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/control/PrintDialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -436,11 +436,11 @@ var ol_control_PrintDialog = function(options) {
});
this.formats.forEach(function(format, i) {
ol_ext_element.create('OPTION', {
html: format.title,
html: this.i18n(format.title),
value: i,
parent: saveLegend
});
});
}.bind(this));

// Print
var prButtons = ol_ext_element.create('DIV', {
Expand Down

0 comments on commit 11c18ae

Please sign in to comment.