#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'; import './se-elix/define/NumberSpinBox.js';
const template = document.createElement('template'); const template = document.createElement('template');
// eslint-disable-next-line no-unsanitized/property
template.innerHTML = ` template.innerHTML = `
<style> <style>
@ -56,8 +58,8 @@ template.innerHTML = `
<div class="overlay"></div> <div class="overlay"></div>
<div id="dialog_container"> <div id="dialog_container">
<div id="dialog_content"> <div id="dialog_content">
<p class="se-select"> <p class="se-select">
Select an image type for export: ${svgEditor.i18next.t('ui.export_type_label')}
</p> </p>
<p class="se-select"> <p class="se-select">
<select id="se-storage-pref"> <select id="se-storage-pref">
@ -68,14 +70,14 @@ template.innerHTML = `
<option value="PDF">PDF</option> <option value="PDF">PDF</option>
</select> </select>
</p> </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>
<div id="dialog_buttons"> <div id="dialog_buttons">
<button id="export_ok"> <button id="export_ok">
Ok ${svgEditor.i18next.t('common.ok')}
</button> </button>
<button id="export_cancel"> <button id="export_cancel">
Cancel ${svgEditor.i18next.t('common.cancel')}
</button> </button>
</div> </div>
</div> </div>

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill 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: { properties: {
id: 'Identify the element', id: 'Identify the element',