progress on localization

master
JFH 2021-05-14 23:16:27 +02:00
parent 327a4bdc67
commit 1bad5b9037
16 changed files with 239 additions and 188 deletions

View File

@ -170,11 +170,12 @@ export default class ConfigObj {
// 'ext-markers', // 'ext-markers',
'ext-overview_window', 'ext-overview_window',
'ext-panning', 'ext-panning',
'ext-polygon',
'ext-shapes', 'ext-shapes',
'ext-star', 'ext-star',
'ext-polygon',
'ext-storage', 'ext-storage',
'ext-opensave' 'ext-opensave',
'ext-helloworld',
]; ];
this.curConfig = { this.curConfig = {
// We do not put on defaultConfig to simplify object copying // We do not put on defaultConfig to simplify object copying

View File

@ -4,27 +4,19 @@
* @license MIT * @license MIT
* *
* @copyright 2010 Jeff Schiller * @copyright 2010 Jeff Schiller
* @copyright 2021 OptimistikSAS
* *
*/ */
const loadExtensionTranslation = async function (lang) { import { loadExtensionTranslation } from '../../locale.js';
let translationModule;
try { const name = "eyedropper";
// eslint-disable-next-line no-unsanitized/method
translationModule = await import(`./locale/${encodeURIComponent(lang)}.js`);
} catch (_error) {
// eslint-disable-next-line no-console
console.error(`Missing translation (${lang}) - using 'en'`);
translationModule = await import(`./locale/en.js`);
}
return translationModule.default;
};
export default { export default {
name: 'eyedropper', name,
async init(S) { async init(S) {
const svgEditor = this; const svgEditor = this;
const strings = await loadExtensionTranslation(svgEditor.configObj.pref('lang')); await loadExtensionTranslation(svgEditor, name);
const { ChangeElementCommand } = S, // , svgcontent, const { ChangeElementCommand } = S, // , svgcontent,
// svgdoc = S.svgroot.parentNode.ownerDocument, // svgdoc = S.svgroot.parentNode.ownerDocument,
{ svgCanvas } = svgEditor, { svgCanvas } = svgEditor,
@ -74,12 +66,15 @@ export default {
}; };
return { return {
name: strings.name, name: svgEditor.i18next.t(`${name}:name`),
callback() { callback() {
// Add the button and its handler(s) // Add the button and its handler(s)
const buttonTemplate = document.createElement("template"); const buttonTemplate = document.createElement("template");
const title = svgEditor.i18next.t(`${name}:buttons.0.title`);
const key = svgEditor.i18next.t(`${name}:buttons.0.key`);
// eslint-disable-next-line no-unsanitized/property
buttonTemplate.innerHTML = ` buttonTemplate.innerHTML = `
<se-button id="tool_eyedropper" title="Eye Dropper Tool" src="./images/eye_dropper.svg" shortcut="I"></se-button> <se-button id="tool_eyedropper" title="${title}" src="./images/eye_dropper.svg" shortcut=${key}></se-button>
`; `;
$id('tools_left').append(buttonTemplate.content.cloneNode(true)); $id('tools_left').append(buttonTemplate.content.cloneNode(true));
$id('tool_eyedropper').addEventListener("click", () => { $id('tool_eyedropper').addEventListener("click", () => {

View File

@ -0,0 +1,9 @@
export default {
name: 'pipette',
buttons: [
{
title: 'Outil pipette',
key: 'I'
}
]
};

View File

@ -7,24 +7,15 @@
* *
*/ */
const loadExtensionTranslation = async function (lang) { import { loadExtensionTranslation } from '../../locale.js';
let translationModule;
try { const name = "grid";
// eslint-disable-next-line no-unsanitized/method
translationModule = await import(`./locale/${encodeURIComponent(lang)}.js`);
} catch (_error) {
// eslint-disable-next-line no-console
console.error(`Missing translation (${lang}) - using 'en'`);
translationModule = await import(`./locale/en.js`);
}
return translationModule.default;
};
export default { export default {
name: 'grid', name,
async init ({ NS, getTypeMap }) { async init ({ NS, getTypeMap }) {
const svgEditor = this; const svgEditor = this;
const strings = await loadExtensionTranslation(svgEditor.configObj.pref('lang')); await loadExtensionTranslation(svgEditor, name);
const { svgCanvas } = svgEditor; const { svgCanvas } = svgEditor;
const { $id } = svgCanvas; const { $id } = svgCanvas;
const svgdoc = document.getElementById('svgcanvas').ownerDocument; const svgdoc = document.getElementById('svgcanvas').ownerDocument;
@ -152,15 +143,18 @@ export default {
document.getElementById('view_grid').pressed = showGrid; document.getElementById('view_grid').pressed = showGrid;
}; };
return { return {
name: strings.name, name: svgEditor.i18next.t(`${name}:name`),
zoomChanged (zoom) { zoomChanged (zoom) {
if (showGrid) { updateGrid(zoom); } if (showGrid) { updateGrid(zoom); }
}, },
callback () { callback () {
// Add the button and its handler(s) // Add the button and its handler(s)
const buttonTemplate = document.createElement("template"); const buttonTemplate = document.createElement("template");
const title = svgEditor.i18next.t(`${name}:buttons.0.title`);
// eslint-disable-next-line no-unsanitized/property
buttonTemplate.innerHTML = ` buttonTemplate.innerHTML = `
<se-button id="view_grid" title="Show grid" src="./images/grid.svg"></se-button> <se-button id="view_grid" title="${title}" src="./images/grid.svg"></se-button>
`; `;
$id('editor_panel').append(buttonTemplate.content.cloneNode(true)); $id('editor_panel').append(buttonTemplate.content.cloneNode(true));
$id('view_grid').addEventListener("click", () => { $id('view_grid').addEventListener("click", () => {

View File

@ -0,0 +1,8 @@
export default {
name: 'Grille',
buttons: [
{
title: 'Afficher/Cacher Grille'
}
]
};

View File

@ -13,39 +13,32 @@
* will show the user the point on the canvas that was clicked on. * will show the user the point on the canvas that was clicked on.
*/ */
const loadExtensionTranslation = async function (lang) { import { loadExtensionTranslation } from '../../locale.js';
let translationModule;
try { const name = "helloworld";
// eslint-disable-next-line no-unsanitized/method
translationModule = await import(`./locale/${encodeURIComponent(lang)}.js`);
} catch (_error) {
// eslint-disable-next-line no-console
console.error(`Missing translation (${lang}) - using 'en'`);
translationModule = await import(`./locale/en.js`);
}
return translationModule.default;
};
export default { export default {
name: 'helloworld', name,
async init ({ _importLocale }) { async init ({ _importLocale }) {
const svgEditor = this; const svgEditor = this;
const strings = await loadExtensionTranslation(svgEditor.configObj.pref('lang')); await loadExtensionTranslation(svgEditor, name);
const { svgCanvas } = svgEditor; const { svgCanvas } = svgEditor;
const { $id } = svgCanvas;
return { return {
name: strings.name, name: svgEditor.i18next.t(`${name}:name`),
events: [ { callback() {
// Must match the icon ID in helloworld-icon.xml // Add the button and its handler(s)
id: 'hello_world', const buttonTemplate = document.createElement("template");
// Tooltip text const title = svgEditor.i18next.t(`${name}:buttons.0.title`);
title: strings.buttons[0].title, // eslint-disable-next-line no-unsanitized/property
click () { buttonTemplate.innerHTML = `
// The action taken when the button is clicked on. <se-button id="hello_world" title="${title}" src="./images/hello_world.svg"></se-button>
// For "mode" buttons, any other button will `;
// automatically be de-pressed. $id('tools_left').append(buttonTemplate.content.cloneNode(true));
$id('hello_world').addEventListener("click", () => {
svgCanvas.setMode('hello_world'); svgCanvas.setMode('hello_world');
} });
} ], },
// This is triggered when the main mouse button is pressed down // This is triggered when the main mouse button is pressed down
// on the editor canvas (not the tool panels) // on the editor canvas (not the tool panels)
mouseDown () { mouseDown () {
@ -70,14 +63,7 @@ export default {
const y = opts.mouse_y / zoom; const y = opts.mouse_y / zoom;
// We do our own formatting // We do our own formatting
let { text } = strings; let text = svgEditor.i18next.t(`${name}:text`, { x, y });
[
[ 'x', x ],
[ 'y', y ]
].forEach(([ prop, val ]) => {
text = text.replace('{' + prop + '}', val);
});
// Show the text using the custom alert function // Show the text using the custom alert function
alert(text); alert(text);
} }

View File

@ -1,6 +1,6 @@
export default { export default {
name: 'Hello World', name: 'Hello World',
text: 'Hello World!\n\nYou clicked here: {x}, {y}', text: 'Hello World!\n\nYou clicked here: {{x}}, {{y}}',
buttons: [ buttons: [
{ {
title: "Say 'Hello World'" title: "Say 'Hello World'"

View File

@ -0,0 +1,9 @@
export default {
name: 'Bonjour le Monde',
text: 'Bonjour le Monde!\n\nVous avez cliqué ici: {{x}}, {{y}}',
buttons: [
{
title: "Dire 'Bonjour le Monde'"
}
]
};

View File

@ -1,6 +1,6 @@
export default { export default {
name: 'Hello World', name: 'Hello World',
text: 'Hello World!\n\n 请点击: {x}, {y}', text: 'Hello World!\n\n 请点击: {{x}}, {{y}}',
buttons: [ buttons: [
{ {
title: "输出 'Hello World'" title: "输出 'Hello World'"

View File

@ -6,119 +6,114 @@
* *
*/ */
const loadExtensionTranslation = async function (lang) { import { loadExtensionTranslation } from "../../locale.js";
let translationModule;
try { const name = "polygon";
// eslint-disable-next-line no-unsanitized/method
translationModule = await import(`./locale/${encodeURIComponent(lang)}.js`);
} catch (_error) {
// eslint-disable-next-line no-console
console.error(`Missing translation (${lang}) - using 'en'`);
translationModule = await import(`./locale/en.js`);
}
return translationModule.default;
};
export default { export default {
name: 'polygon', name,
async init (_S) { async init(_S) {
const svgEditor = this; const svgEditor = this;
const { svgCanvas } = svgEditor; const { svgCanvas } = svgEditor;
const { $id } = svgCanvas; const { $id } = svgCanvas;
// const editingitex = false; // const editingitex = false;
const strings = await loadExtensionTranslation(svgEditor.configObj.pref('lang')); await loadExtensionTranslation(svgEditor, name);
let selElems; let selElems;
let started; let started;
let newFO; let newFO;
/** /**
* @param {boolean} on * @param {boolean} on
* @returns {void} * @returns {void}
*/ */
const showPanel = (on) => { const showPanel = on => {
$id('polygon_panel').style.display = (on) ? 'block' : 'none'; $id("polygon_panel").style.display = on ? "block" : "none";
}; };
/** /**
* @param {string} attr * @param {string} attr
* @param {string|Float} val * @param {string|Float} val
* @returns {void} * @returns {void}
*/ */
const setAttr = (attr, val) => { const setAttr = (attr, val) => {
svgCanvas.changeSelectedAttribute(attr, val); svgCanvas.changeSelectedAttribute(attr, val);
svgCanvas.call('changed', selElems); svgCanvas.call("changed", selElems);
}; };
/** /**
* @param {Float} n * @param {Float} n
* @returns {Float} * @returns {Float}
*/ */
const cot = (n) => (1 / Math.tan(n)); const cot = n => 1 / Math.tan(n);
/** /**
* @param {Float} n * @param {Float} n
* @returns {Float} * @returns {Float}
*/ */
const sec = (n) => (1 / Math.cos(n)); const sec = n => 1 / Math.cos(n);
return { return {
name: strings.name, name: svgEditor.i18next.t(`${name}:name`),
// The callback should be used to load the DOM with the appropriate UI items // The callback should be used to load the DOM with the appropriate UI items
callback () { callback() {
// Add the button and its handler(s) if ($id("tools_polygon") === null) {
// Note: the star extension may also add the same flying button so we check first console.error(
if ($id('tools_polygon') === null) { "this polygon extension must be added after the star extension"
const buttonTemplate = document.createElement("template"); );
buttonTemplate.innerHTML = `
<se-flyingbutton id="tools_polygon" title="Polygone/Star Tool">
<se-button id="tool_polygon" title="Polygon Tool" src="./images/polygon.svg"></se-button>
<se-button id="tool_star" title="Star Tool" src="./images/star.svg"></se-button>
</se-flyingbutton>
`;
$id('tools_left').append(buttonTemplate.content.cloneNode(true));
} }
$id('tool_polygon').addEventListener("click", () => { const title = svgEditor.i18next.t(`${name}:buttons.0.title`);
if (this.leftPanel.updateLeftPanel('tool_polygon')) { const buttonTemplate = document.createElement("template");
svgCanvas.setMode('polygon'); // eslint-disable-next-line no-unsanitized/property
buttonTemplate.innerHTML = `
<se-button id="tool_polygon" title="${title}" src="./images/polygon.svg">
</se-button>
`;
$id("tools_polygon").append(buttonTemplate.content.cloneNode(true));
$id("tool_polygon").addEventListener("click", () => {
if (this.leftPanel.updateLeftPanel("tool_polygon")) {
svgCanvas.setMode("polygon");
showPanel(true); showPanel(true);
} }
}); });
const label0 = svgEditor.i18next.t(`${name}:contextTools.0.label`);
const title0 = svgEditor.i18next.t(`${name}:contextTools.0.title`);
// Add the context panel and its handler(s) // Add the context panel and its handler(s)
const panelTemplate = document.createElement("template"); const panelTemplate = document.createElement("template");
// eslint-disable-next-line no-unsanitized/property
panelTemplate.innerHTML = ` panelTemplate.innerHTML = `
<div id="polygon_panel"> <div id="polygon_panel">
<se-spin-input size="3" id="polySides" min=1 step=1 value=5 label="sides"> <se-spin-input size="3" id="polySides" min=1 step=1 value=5 label="${label0}" title="${title0}">
</se-spin-input> </se-spin-input>
</div> </div>
`; `;
$id('tools_top').appendChild(panelTemplate.content.cloneNode(true)); $id("tools_top").appendChild(panelTemplate.content.cloneNode(true));
$id("polygon_panel").style.display = 'none'; $id("polygon_panel").style.display = "none";
$id("polySides").addEventListener("change", (event) => { $id("polySides").addEventListener("change", event => {
setAttr('sides', event.target.value); setAttr("sides", event.target.value);
}); });
}, },
mouseDown (opts) { mouseDown(opts) {
if (svgCanvas.getMode() !== 'polygon') { if (svgCanvas.getMode() !== "polygon") {
return undefined; return undefined;
} }
// const e = opts.event; // const e = opts.event;
const rgb = svgCanvas.getColor('fill'); const rgb = svgCanvas.getColor("fill");
// const ccRgbEl = rgb.substring(1, rgb.length); // const ccRgbEl = rgb.substring(1, rgb.length);
const sRgb = svgCanvas.getColor('stroke'); const sRgb = svgCanvas.getColor("stroke");
// ccSRgbEl = sRgb.substring(1, rgb.length); // ccSRgbEl = sRgb.substring(1, rgb.length);
const sWidth = svgCanvas.getStrokeWidth(); const sWidth = svgCanvas.getStrokeWidth();
started = true; started = true;
newFO = svgCanvas.addSVGElementFromJson({ newFO = svgCanvas.addSVGElementFromJson({
element: 'polygon', element: "polygon",
attr: { attr: {
cx: opts.start_x, cx: opts.start_x,
cy: opts.start_y, cy: opts.start_y,
id: svgCanvas.getNextId(), id: svgCanvas.getNextId(),
shape: 'regularPoly', shape: "regularPoly",
sides: document.getElementById('polySides').value, sides: document.getElementById("polySides").value,
orient: 'x', orient: "x",
edge: 0, edge: 0,
fill: rgb, fill: rgb,
strokecolor: sRgb, strokecolor: sRgb,
@ -130,67 +125,67 @@ export default {
started: true started: true
}; };
}, },
mouseMove (opts) { mouseMove(opts) {
if (!started || svgCanvas.getMode() !== 'polygon') { if (!started || svgCanvas.getMode() !== "polygon") {
return undefined; return undefined;
} }
const cx = Number(newFO.getAttribute('cx')); const cx = Number(newFO.getAttribute("cx"));
const cy = Number(newFO.getAttribute('cy')); const cy = Number(newFO.getAttribute("cy"));
const sides = Number(newFO.getAttribute('sides')); const sides = Number(newFO.getAttribute("sides"));
// const orient = newFO.getAttribute('orient'); // const orient = newFO.getAttribute('orient');
const fill = newFO.getAttribute('fill'); const fill = newFO.getAttribute("fill");
const strokecolor = newFO.getAttribute('strokecolor'); const strokecolor = newFO.getAttribute("strokecolor");
const strokeWidth = Number(newFO.getAttribute('strokeWidth')); const strokeWidth = Number(newFO.getAttribute("strokeWidth"));
let x = opts.mouse_x; let x = opts.mouse_x;
let y = opts.mouse_y; let y = opts.mouse_y;
const edg = (Math.sqrt((x - cx) * (x - cx) + (y - cy) * (y - cy))) / 1.5; const edg = Math.sqrt((x - cx) * (x - cx) + (y - cy) * (y - cy)) / 1.5;
newFO.setAttribute('edge', edg); newFO.setAttribute("edge", edg);
const inradius = (edg / 2) * cot(Math.PI / sides); const inradius = (edg / 2) * cot(Math.PI / sides);
const circumradius = inradius * sec(Math.PI / sides); const circumradius = inradius * sec(Math.PI / sides);
let points = ''; let points = "";
for (let s = 0; sides >= s; s++) { for (let s = 0; sides >= s; s++) {
const angle = 2.0 * Math.PI * s / sides; const angle = (2.0 * Math.PI * s) / sides;
x = (circumradius * Math.cos(angle)) + cx; x = circumradius * Math.cos(angle) + cx;
y = (circumradius * Math.sin(angle)) + cy; y = circumradius * Math.sin(angle) + cy;
points += x + ',' + y + ' '; points += x + "," + y + " ";
} }
// const poly = newFO.createElementNS(NS.SVG, 'polygon'); // const poly = newFO.createElementNS(NS.SVG, 'polygon');
newFO.setAttribute('points', points); newFO.setAttribute("points", points);
newFO.setAttribute('fill', fill); newFO.setAttribute("fill", fill);
newFO.setAttribute('stroke', strokecolor); newFO.setAttribute("stroke", strokecolor);
newFO.setAttribute('stroke-width', strokeWidth); newFO.setAttribute("stroke-width", strokeWidth);
return { return {
started: true started: true
}; };
}, },
mouseUp () { mouseUp() {
if (svgCanvas.getMode() !== 'polygon') { if (svgCanvas.getMode() !== "polygon") {
return undefined; return undefined;
} }
const edge = newFO.getAttribute('edge'); const edge = newFO.getAttribute("edge");
const keep = (edge !== '0'); const keep = edge !== "0";
// svgCanvas.addToSelection([newFO], true); // svgCanvas.addToSelection([newFO], true);
return { return {
keep, keep,
element: newFO element: newFO
}; };
}, },
selectedChanged (opts) { selectedChanged(opts) {
// Use this to update the current selected elements // Use this to update the current selected elements
selElems = opts.elems; selElems = opts.elems;
let i = selElems.length; let i = selElems.length;
while (i--) { while (i--) {
const elem = selElems[i]; const elem = selElems[i];
if (elem && elem.getAttribute('shape') === 'regularPoly') { if (elem && elem.getAttribute("shape") === "regularPoly") {
if (opts.selectedElement && !opts.multiselected) { if (opts.selectedElement && !opts.multiselected) {
$id('polySides').value = elem.getAttribute('sides'); $id("polySides").value = elem.getAttribute("sides");
showPanel(true); showPanel(true);
} else { } else {
@ -201,7 +196,7 @@ export default {
} }
} }
}, },
elementChanged () { elementChanged() {
// const elem = opts.elems[0]; // const elem = opts.elems[0];
} }
}; };

View File

@ -0,0 +1,14 @@
export default {
name: 'polygone',
buttons: [
{
title: 'Outil Polygone'
}
],
contextTools: [
{
title: 'Nombre de côtés',
label: 'côtés'
}
]
};

View File

@ -6,21 +6,12 @@
* *
*/ */
const loadExtensionTranslation = async function (lang) { import { loadExtensionTranslation } from '../../locale.js';
let translationModule;
try {
// eslint-disable-next-line no-unsanitized/method
translationModule = await import(`./locale/${encodeURIComponent(lang)}.js`);
} catch (_error) {
// eslint-disable-next-line no-console
console.error(`Missing translation (${lang}) - using 'en'`);
translationModule = await import(`./locale/en.js`);
}
return translationModule.default;
};
export default { const name = "star";
name: 'star',
export default {
name,
async init (_S) { async init (_S) {
const svgEditor = this; const svgEditor = this;
const { svgCanvas } = svgEditor; const { svgCanvas } = svgEditor;
@ -28,7 +19,7 @@ export default {
let selElems; let selElems;
let started; let started;
let newFO; let newFO;
const strings = await loadExtensionTranslation(svgEditor.configObj.pref('lang')); await loadExtensionTranslation(svgEditor, name);
/** /**
* *
@ -51,21 +42,23 @@ export default {
}; };
return { return {
name: strings.name, name: svgEditor.i18next.t(`${name}:name`),
// The callback should be used to load the DOM with the appropriate UI items // The callback should be used to load the DOM with the appropriate UI items
callback () { callback () {
// Add the button and its handler(s) // Add the button and its handler(s)
// Note: the star extension may also add the same flying button so we check first // Note: the star extension needs to be loaded before the polygon extension
if ($id('tools_polygon') === null) { const fbtitle = svgEditor.i18next.t(`${name}:title`);
const buttonTemplate = document.createElement("template"); const title = svgEditor.i18next.t(`${name}:buttons.0.title`);
buttonTemplate.innerHTML = ` const buttonTemplate = document.createElement("template");
<se-flyingbutton id="tools_polygon" title="Polygone/Star Tool"> // eslint-disable-next-line no-unsanitized/property
<se-button id="tool_polygon" title="Polygon Tool" src="./images/polygon.svg"></se-button> buttonTemplate.innerHTML = `
<se-button id="tool_star" title="Star Tool" src="./images/star.svg"></se-button> <se-flyingbutton id="tools_polygon" title="${fbtitle}">
<se-button id="tool_star" title="${title}" src="./images/star.svg">
</se-button>
</se-flyingbutton> </se-flyingbutton>
`; `;
$id('tools_left').append(buttonTemplate.content.cloneNode(true)); $id('tools_left').append(buttonTemplate.content.cloneNode(true));
} // handler
$id('tool_star').addEventListener("click", () => { showPanel(true); $id('tool_star').addEventListener("click", () => { showPanel(true);
if (this.leftPanel.updateLeftPanel('tool_polygon')) { if (this.leftPanel.updateLeftPanel('tool_polygon')) {
svgCanvas.setMode('star'); svgCanvas.setMode('star');
@ -73,15 +66,22 @@ export default {
} }
}); });
const label0 = svgEditor.i18next.t(`${name}:contextTools.0.label`);
const title0 = svgEditor.i18next.t(`${name}:contextTools.0.title`);
const label1 = svgEditor.i18next.t(`${name}:contextTools.1.label`);
const title1 = svgEditor.i18next.t(`${name}:contextTools.1.title`);
const label2 = svgEditor.i18next.t(`${name}:contextTools.2.label`);
const title2 = svgEditor.i18next.t(`${name}:contextTools.2.title`);
// Add the context panel and its handler(s) // Add the context panel and its handler(s)
const panelTemplate = document.createElement("template"); const panelTemplate = document.createElement("template");
// eslint-disable-next-line no-unsanitized/property
panelTemplate.innerHTML = ` panelTemplate.innerHTML = `
<div id="star_panel"> <div id="star_panel">
<se-spin-input id="starNumPoints" label="points" min=1 step=1 value=5 title="Change rotation angle"> <se-spin-input id="starNumPoints" label="${label0}" min=1 step=1 value=5 title="${title0}">
</se-spin-input> </se-spin-input>
<se-spin-input id="RadiusMultiplier" label="Radis multiplier" min=1 step=2.5 value=5 title="Change rotation angle"> <se-spin-input id="RadiusMultiplier" label="${label1}" min=1 step=2.5 value=5 title="${title1}">
</se-spin-input> </se-spin-input>
<se-spin-input id="radialShift" min=0 step=1 value=0 label="radial shift" title="Change rotation angle"> <se-spin-input id="radialShift" min=0 step=1 value=0 label="${label2}" title="${title2}">
</se-spin-input> </se-spin-input>
</div> </div>
`; `;

View File

@ -1,5 +1,6 @@
export default { export default {
name: 'star', name: 'star',
title: 'Polygone/Star Tool',
buttons: [ buttons: [
{ {
title: 'Star Tool' title: 'Star Tool'

View File

@ -0,0 +1,23 @@
export default {
name: 'etoile',
title: 'Outil Polygone/Etoile',
buttons: [
{
title: 'Outil Etoile'
}
],
contextTools: [
{
title: 'Nombre de côtés',
label: 'points'
},
{
title: 'Précision',
label: 'Précision'
},
{
title: 'Torsion Etoile',
label: 'Décalage Radial'
}
]
};

View File

@ -1,5 +1,6 @@
export default { export default {
name: '星形', name: '星形',
title: 'Polygone/Star Tool',
buttons: [ buttons: [
{ {
title: '星形工具' title: '星形工具'

View File

@ -86,3 +86,18 @@ export const putLocale = async function (givenParam, goodLangs) {
console.log(`Lang: ${i18next.t('lang')}`); console.log(`Lang: ${i18next.t('lang')}`);
return { langParam, i18next }; return { langParam, i18next };
}; };
export const loadExtensionTranslation = async function (svgEditor, name) {
let translationModule;
const lang = svgEditor.configObj.pref('lang');
try {
// eslint-disable-next-line no-unsanitized/method
translationModule = await import(`./extensions/ext-${name}/locale/${lang}.js`);
} catch (_error) {
// eslint-disable-next-line no-console
console.warn(`Missing translation (${lang}) for ${name} - using 'en'`);
// eslint-disable-next-line no-unsanitized/method
translationModule = await import(`./extensions/ext-${name}/locale/en.js`);
}
svgEditor.i18next.addResourceBundle(lang, name, translationModule.default);
};