#99 dialog i18n translation changes
parent
f561bb1f5c
commit
71eddf38c7
|
@ -1,6 +1,8 @@
|
|||
/* globals svgEditor */
|
||||
import './se-elix/define/NumberSpinBox.js';
|
||||
|
||||
const template = document.createElement('template');
|
||||
// eslint-disable-next-line no-unsanitized/property
|
||||
template.innerHTML = `
|
||||
<style>
|
||||
|
||||
|
@ -56,8 +58,8 @@ template.innerHTML = `
|
|||
<div class="overlay"></div>
|
||||
<div id="dialog_container">
|
||||
<div id="dialog_content">
|
||||
<p class="se-select">
|
||||
Select an image type for export:
|
||||
<p class="se-select">
|
||||
${svgEditor.i18next.t('ui.export_type_label')}
|
||||
</p>
|
||||
<p class="se-select">
|
||||
<select id="se-storage-pref">
|
||||
|
@ -68,14 +70,14 @@ template.innerHTML = `
|
|||
<option value="PDF">PDF</option>
|
||||
</select>
|
||||
</p>
|
||||
<p id="se-quality">Quality:<elix-number-spin-box min="-1" max="101" step="5" value="100"></elix-number-spin-box></p>
|
||||
<p id="se-quality">${svgEditor.i18next.t('ui.quality')}<elix-number-spin-box min="-1" max="101" step="5" value="100"></elix-number-spin-box></p>
|
||||
</div>
|
||||
<div id="dialog_buttons">
|
||||
<button id="export_ok">
|
||||
Ok
|
||||
${svgEditor.i18next.t('common.ok')}
|
||||
</button>
|
||||
<button id="export_cancel">
|
||||
Cancel
|
||||
${svgEditor.i18next.t('common.cancel')}
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -26,7 +26,8 @@ export default {
|
|||
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
|
||||
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
|
||||
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
|
||||
group_identify_label: 'Group identification label'
|
||||
group_identify_label: 'Group identification label',
|
||||
export_type_label: 'Select an image type for export:',
|
||||
},
|
||||
properties: {
|
||||
id: 'Identify the element',
|
||||
|
|
Loading…
Reference in New Issue