#99 dialog i18n translation changes

master
Agriya Dev5 2021-05-19 16:25:51 +05:30
parent f561bb1f5c
commit 71eddf38c7
2 changed files with 9 additions and 6 deletions

View File

@ -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>
@ -57,7 +59,7 @@ template.innerHTML = `
<div id="dialog_container">
<div id="dialog_content">
<p class="se-select">
Select an image type for export:
${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>

View File

@ -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',