@cesdk/cesdk-js 1.5.1 → 1.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -11
- package/assets/core/cesdk.data +0 -0
- package/assets/core/cesdk.wasm +0 -0
- package/assets/i18n/de.json +56 -7
- package/assets/i18n/en.json +57 -8
- package/assets/ui/stylesheets/cesdk.css +16 -12
- package/cesdk-engine.umd.d.ts +816 -253
- package/cesdk-engine.umd.js +1 -1
- package/cesdk.umd.js +1 -1
- package/index.d.ts +895 -432
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|

|
|
2
2
|
|
|
3
|
-
# CreativeEditor SDK
|
|
3
|
+
# CreativeEditor SDK
|
|
4
4
|
|
|
5
|
-
The CreativeEditor SDK (**CE.SDK**) for Web is a fully customizable, simple-to-use design editor.
|
|
5
|
+
The CreativeEditor SDK (**CE.SDK**) for Web is a fully customizable, simple-to-use design editor.
|
|
6
6
|
|
|
7
7
|
Seamlessly integrate it into any Web app with just a few lines of code. The editor combines the best of layout, typography and photo editing. **CE.SDK** also facilitates both template creation and adaption workflows, also featuring constraints and text placeholders for database automations.
|
|
8
8
|
|
|
9
9
|
Visit our [website](https://img.ly) for more tutorials on how to integrate and customize the editor for your specific use-case.
|
|
10
10
|
|
|
11
|
-
## Usage
|
|
11
|
+
## Usage
|
|
12
12
|
|
|
13
|
-
## 1. Install CreativeEditor SDK
|
|
14
|
-
Install the SDK with `npm`
|
|
15
|
-
```bash
|
|
13
|
+
## 1. Install the CreativeEditor SDK
|
|
14
|
+
Install the SDK with `npm`
|
|
15
|
+
```bash
|
|
16
16
|
npm install --save @cesdk/cesdk-js
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
or with `yarn`
|
|
20
|
-
```bash
|
|
20
|
+
```bash
|
|
21
21
|
yarn add @cesdk/cesdk-js
|
|
22
22
|
```
|
|
23
23
|
|
|
24
|
-
## 2. Create an empty Container
|
|
24
|
+
## 2. Create an empty Container
|
|
25
25
|
We need to add an empty `<div>` with an id or class as container for the SDK.
|
|
26
26
|
|
|
27
27
|
```html
|
|
@@ -37,15 +37,15 @@ The last step involves the configuration and instantiation of the SDK.
|
|
|
37
37
|
import CreativeEditorSDK from '@cesdk/cesdk-js'
|
|
38
38
|
|
|
39
39
|
CreativeEditorSDK
|
|
40
|
-
.init('#cesdk_container')
|
|
40
|
+
.init('#cesdk_container')
|
|
41
41
|
.then((instance) => {
|
|
42
42
|
/** do something with the instance of CreativeEditor SDK **/
|
|
43
43
|
});
|
|
44
44
|
```
|
|
45
45
|
## Documentation
|
|
46
|
-
The full documentation of CreativeEditor SDK can be found at
|
|
46
|
+
The full documentation of the CreativeEditor SDK can be found at
|
|
47
47
|
[https://img.ly/docs/cesdk/](https://img.ly/docs/cesdk/).
|
|
48
48
|
|
|
49
49
|
## License
|
|
50
50
|
|
|
51
|
-
The CreativeEditor SDK is a commercial product. To use it as such and get access to its white label version - without the watermark in the export - you need to unlock the SDK with a license file. You can purchase a license at https://img.ly/pricing.
|
|
51
|
+
The CreativeEditor SDK is a commercial product. To use it as such and get access to its white label version - without the watermark in the export - you need to unlock the SDK with a license file. You can purchase a license at https://img.ly/pricing.
|
package/assets/core/cesdk.data
CHANGED
|
Binary file
|
package/assets/core/cesdk.wasm
CHANGED
|
Binary file
|
package/assets/i18n/de.json
CHANGED
|
@@ -32,6 +32,7 @@
|
|
|
32
32
|
"action.image.filter": "Filter anwenden",
|
|
33
33
|
"action.image.inpainting": "Auffüllen",
|
|
34
34
|
"action.image.matting": "Hintergrund entfernen",
|
|
35
|
+
"action.image.matting.staging": "Hintergrund entfernen (Staging)",
|
|
35
36
|
"action.image.replace": "$t(common.replace)",
|
|
36
37
|
"action.image.smartCrop": "Smartes Zuschneiden",
|
|
37
38
|
"action.image.smartImage": "Intelligente Funktionen",
|
|
@@ -55,9 +56,9 @@
|
|
|
55
56
|
"action.scene.load": "Szene geladen",
|
|
56
57
|
"action.scene.new": "Neue Szene",
|
|
57
58
|
"action.selectGroup": "Gruppe auswählen",
|
|
58
|
-
"action.
|
|
59
|
-
"action.
|
|
60
|
-
"action.
|
|
59
|
+
"action.strokeJoin.change": "Umrisskanten ändern",
|
|
60
|
+
"action.strokePosition.change": "Umrissposition ändern",
|
|
61
|
+
"action.strokeStyle.change": "$t(property.strokeStyle.description)",
|
|
61
62
|
"assets.ly.img.cesdk.images.samples.sample.1.label": "Strand von oben",
|
|
62
63
|
"assets.ly.img.cesdk.images.samples.sample.1.tags": "blau;grün;strand;insel;wasser",
|
|
63
64
|
"assets.ly.img.cesdk.images.samples.sample.10.label": "Berge",
|
|
@@ -221,6 +222,9 @@
|
|
|
221
222
|
"assets.ly.img.ubq.shapes.polygon.label": "Mehreck",
|
|
222
223
|
"assets.ly.img.ubq.shapes.rect.label": "Rechteck",
|
|
223
224
|
"assets.ly.img.ubq.shapes.star.label": "Stern",
|
|
225
|
+
"action.text.autoHeight": "Automatische Höhe aktivieren",
|
|
226
|
+
"action.text.change": "Text ändern",
|
|
227
|
+
"action.text.fixedFrame": "Feste Größe aktivieren",
|
|
224
228
|
"action.ungroup": "Gruppierung auflösen",
|
|
225
229
|
"block.ellipse": "Ellipse",
|
|
226
230
|
"block.group": "Gruppe",
|
|
@@ -323,6 +327,7 @@
|
|
|
323
327
|
"component.canvas.state.loading": "Editor wird geladen",
|
|
324
328
|
"component.canvas.state.loading.description": "Nur ein paar Sekunden...",
|
|
325
329
|
"component.canvas.state.unsupported": "Ihr Browser wird nicht unterstützt",
|
|
330
|
+
"component.colorPicker.colorItem.description": "Diese Farbe verwenden",
|
|
326
331
|
"component.colorPicker.colorItem": "Farbelement {{index}}",
|
|
327
332
|
"component.colorPicker.colorItem.hexInput": "Hex",
|
|
328
333
|
"component.colorPicker.colorItem.transparent": "Farbelement {{index}}, Farbname: Transparent",
|
|
@@ -330,8 +335,11 @@
|
|
|
330
335
|
"component.colorPicker.hsl.description": "{{componentName}}, $t(common.nearestColorName): {{nearestColorName}}; $t(common.colorValue): Farbwert: {{hue}}°, Farbsättigung: {{saturation}}%, Helligkeit: {{lightness}}%",
|
|
331
336
|
"component.colorPicker.hueGradient": "Farbverlaufston-Auswahl",
|
|
332
337
|
"component.colorSchemeSelect.accent": "Akzentfarbe",
|
|
338
|
+
"component.colorSchemeSelect.accent.description": "Akzentfarbe ändern",
|
|
333
339
|
"component.colorSchemeSelect.active": "Aktivfarbe",
|
|
340
|
+
"component.colorSchemeSelect.active.description": "Aktivfarbe ändern",
|
|
334
341
|
"component.colorSchemeSelect.background": "Hintergrundfarbe",
|
|
342
|
+
"component.colorSchemeSelect.background.description": "Hintergrundfarbe ändern",
|
|
335
343
|
"component.dnd.description": "Die hochgeladenen Dateien werden in der Bibliothek gespeichert",
|
|
336
344
|
"component.dnd.prompt": "Dateien hier hinziehen",
|
|
337
345
|
"component.dockIconSizeSelect": "Dock Icon Skalierung",
|
|
@@ -374,6 +382,7 @@
|
|
|
374
382
|
"component.library.breadcrumbRoot": "Alle",
|
|
375
383
|
"component.library.clearSearch": "Suchen leeren",
|
|
376
384
|
"component.library.elements": "Elemente",
|
|
385
|
+
"component.library.enterSection": "Bereich öffnen",
|
|
377
386
|
"component.library.error": "Keine Verbindung",
|
|
378
387
|
"component.library.loading": "Lade …",
|
|
379
388
|
"component.library.noItems": "Keine Elemente vorhanden",
|
|
@@ -406,8 +415,8 @@
|
|
|
406
415
|
"component.templateLibrary": "Vorlagen-Bibliothek",
|
|
407
416
|
"component.templateLibrary.abort": "$t(common.cancel)",
|
|
408
417
|
"component.templateLibrary.confirm": "Ja, Änderungen verwerfen",
|
|
409
|
-
"component.templateLibrary.dialog.body": "
|
|
410
|
-
"component.templateLibrary.dialog.headline": "
|
|
418
|
+
"component.templateLibrary.dialog.body": "Inhalte wie Bilder und Text können nicht übernommen werden und werden dementsprechend verworfen.",
|
|
419
|
+
"component.templateLibrary.dialog.headline": "Aktuelles Dokument ersetzen?",
|
|
411
420
|
"component.templateLibrary.dialog.invalid": "Diese Vorlage ist ungültig und kann leider nicht benutzt werden.",
|
|
412
421
|
"component.themeSelect": "Farbschema",
|
|
413
422
|
"component.themeSelect.dark": "Dunkel",
|
|
@@ -443,23 +452,29 @@
|
|
|
443
452
|
"input.adjustments": "Korrekturen",
|
|
444
453
|
"input.adjustments.basic": "Grundlagen",
|
|
445
454
|
"input.adjustments.refinements": "Feinheiten",
|
|
455
|
+
"input.adjustments.tooltip": "Korrekturen ändern",
|
|
446
456
|
"input.alwaysOnTop": "Immer im Vordergrund",
|
|
447
457
|
"input.appearance": "Aussehen",
|
|
448
458
|
"input.aspectLock": "Proportionen beibehalten",
|
|
449
459
|
"input.aspectLock.description": "Proportionen beibehalten / frei",
|
|
450
460
|
"input.bleedMargin.select": "Anschnitt auswählen",
|
|
451
461
|
"input.blur": "Unschärfe",
|
|
462
|
+
"input.blur.tooltip": "Unschärfe ändern",
|
|
452
463
|
"input.character": "Schriftzeichen",
|
|
453
464
|
"input.clipContent": "Inhalt beschneiden",
|
|
454
465
|
"input.clipContent.off.description": "Inhalt beschneiden deaktivieren",
|
|
455
466
|
"input.clipContent.on.description": "Inhalt beschneiden aktivieren",
|
|
456
467
|
"input.document": "$t(block.scene)",
|
|
457
468
|
"input.effect": "Effekt",
|
|
469
|
+
"input.effect.tooltip": "Effekt ändern",
|
|
458
470
|
"input.export": "Export",
|
|
459
471
|
"input.filter": "Filter",
|
|
472
|
+
"input.filter.tooltip": "Filter ändern",
|
|
460
473
|
"input.fontSelect": "Ausgewählte Schriftart: {{font}}",
|
|
461
474
|
"input.fontSelect.fallback": "Standard",
|
|
475
|
+
"input.fontSelect.tooltip": "Schriftart ändern",
|
|
462
476
|
"input.fontSize.select": "Schriftgröße auswählen",
|
|
477
|
+
"input.fontStyle.toggle": "{{style}} umschalten",
|
|
463
478
|
"input.gradient.activateColorStop": "Leertaste drücken zum aktivieren.",
|
|
464
479
|
"input.gradient.colorPosition": "Farbposition",
|
|
465
480
|
"input.gradient.colorStop": "Farbmarker",
|
|
@@ -479,11 +494,13 @@
|
|
|
479
494
|
"input.pages": "Seiten",
|
|
480
495
|
"input.preset": "Vorlage",
|
|
481
496
|
"input.preset.description": "Seitenvorlage",
|
|
497
|
+
"input.preset.tooltip": "$(input.preset) auswählen",
|
|
482
498
|
"input.propertyToggle.disable": "Deaktivieren",
|
|
483
499
|
"input.propertyToggle.enable": "Aktivieren",
|
|
484
500
|
"input.propertyToggle.hidden": "Versteckt",
|
|
485
501
|
"input.propertyToggle.visible": "Sichtbar",
|
|
486
502
|
"input.rename": "{{designElementName}} umbenennen",
|
|
503
|
+
"input.resolution.select": "{{which}} auswählen",
|
|
487
504
|
"input.shape": "Form",
|
|
488
505
|
"input.shape.options": "Form Optionen",
|
|
489
506
|
"input.showInExport": "Im Export anzeigen",
|
|
@@ -491,8 +508,11 @@
|
|
|
491
508
|
"input.text.advanced": "$t(common.advanced)",
|
|
492
509
|
"input.text.advanced.description": "Zeilenhöhe, Abstände, Ausrichtung & Größe",
|
|
493
510
|
"input.text.placeholder": "Etwas aufschreiben",
|
|
494
|
-
"input.transform
|
|
511
|
+
"input.transform": "$t(common.position) & $t(common.size)",
|
|
512
|
+
"input.transform.description": "$t(common.position) und $t(common.size) ändern",
|
|
495
513
|
"input.typefaceSelect.description": "Ausgewählte Schriftfamilie: {{fontFamily}}",
|
|
514
|
+
"input.typefaceSelect.tooltip": "Schriftfamilie ändern",
|
|
515
|
+
"input.unit.tooltip": "$(common.unit) auswählen",
|
|
496
516
|
"input.uploadImage": "Bild wird hochgeladen...",
|
|
497
517
|
"libraries.local.label": "Uploads",
|
|
498
518
|
"libraries.ly.img.image.label": "Bilder",
|
|
@@ -502,6 +522,7 @@
|
|
|
502
522
|
"libraries.ly.img.sticker.emoticons.label": "Emoticons",
|
|
503
523
|
"libraries.ly.img.sticker.hand.label": "Hands",
|
|
504
524
|
"libraries.ly.img.sticker.label": "Sticker",
|
|
525
|
+
"libraries.ly.img.template.label": "Vorlagen",
|
|
505
526
|
"libraries.ly.img.text.headline.label": "Überschrift",
|
|
506
527
|
"libraries.ly.img.text.label": "Text",
|
|
507
528
|
"libraries.ly.img.text.paragraph.label": "Absatz",
|
|
@@ -559,7 +580,28 @@
|
|
|
559
580
|
"property.autoSize.autoHeight.description": "Höhe des Textfeldes automatisch skalieren",
|
|
560
581
|
"property.autoSize.fixedFrame.description": "Feste Größe des Textfeldes",
|
|
561
582
|
"property.backgroundColor": "Hintergrund",
|
|
583
|
+
"property.backgroundColor.description": "Hintergrundfarbe ändern",
|
|
562
584
|
"property.bleedMargin": "Anschnitt",
|
|
585
|
+
"property.blendMode": "Überblendmodi",
|
|
586
|
+
"property.blendMode.Color": "Farbe",
|
|
587
|
+
"property.blendMode.ColorBurn": "Farbig nachbelichten",
|
|
588
|
+
"property.blendMode.ColorDodge": "Farbig abwedeln",
|
|
589
|
+
"property.blendMode.Darken": "Verdunkeln",
|
|
590
|
+
"property.blendMode.description": "Ausgewählter Überblendmodi: {{mode}}",
|
|
591
|
+
"property.blendMode.tooltip": "Überblendmodi ändern",
|
|
592
|
+
"property.blendMode.Difference": "Differenz",
|
|
593
|
+
"property.blendMode.Exclusion": "Ausschluss",
|
|
594
|
+
"property.blendMode.HardLight": "Hartes Licht",
|
|
595
|
+
"property.blendMode.Hue": "Farbton",
|
|
596
|
+
"property.blendMode.Lighten": "Aufhellen",
|
|
597
|
+
"property.blendMode.Luminosity": "Luminanz",
|
|
598
|
+
"property.blendMode.Multiply": "Multiplizieren",
|
|
599
|
+
"property.blendMode.Normal": "Normal",
|
|
600
|
+
"property.blendMode.Overlay": "Ineinanderkopieren",
|
|
601
|
+
"property.blendMode.PassThrough": "Durchschleifen",
|
|
602
|
+
"property.blendMode.Saturation": "Sätigung",
|
|
603
|
+
"property.blendMode.Screen": "Negativ multiplizieren",
|
|
604
|
+
"property.blendMode.SoftLight": "Weiches Licht",
|
|
563
605
|
"property.blur.extrudeBlur": "Zoom Unschärfe",
|
|
564
606
|
"property.blur.extrudeBlur.amount": "Intensität",
|
|
565
607
|
"property.blur.linearBlur": "Lineare Unschärfe",
|
|
@@ -585,6 +627,7 @@
|
|
|
585
627
|
"property.blur.uniformBlur": "Gaußscher Weichzeichner",
|
|
586
628
|
"property.blur.uniformBlur.intensity": "Intensität",
|
|
587
629
|
"property.color": "Farbe",
|
|
630
|
+
"property.color.description": "Farbe ändern",
|
|
588
631
|
"property.crop": "Zuschneiden",
|
|
589
632
|
"property.crop.offset": "{{axis}} Versatz",
|
|
590
633
|
"property.crop.offset.description": "Versatz des Bildes auf der {{axis}}-Achse in {{unit}}",
|
|
@@ -592,6 +635,7 @@
|
|
|
592
635
|
"property.crop.scale.description": "Bildabmessungen proportional skalieren",
|
|
593
636
|
"property.crop.size": "Zuschneidebereich",
|
|
594
637
|
"property.crop.size.description": "{{dimension}} des Zuschneidebereichs in {{unit}}",
|
|
638
|
+
"property.crop.tooltip": "Zuschnitt ändern",
|
|
595
639
|
"property.crop.transform": "$t(block.image)",
|
|
596
640
|
"property.duotoneFilter.breezy": "Breezy",
|
|
597
641
|
"property.duotoneFilter.clash": "Clash",
|
|
@@ -660,9 +704,12 @@
|
|
|
660
704
|
"property.effect.waves.strength": "Intensität",
|
|
661
705
|
"property.effect.waves.time": "Varianz",
|
|
662
706
|
"property.fill": "Füllung",
|
|
707
|
+
"property.fill.description": "Füllung ändern",
|
|
663
708
|
"property.fillType": "Füllung",
|
|
664
709
|
"property.fillType.gradient": "Farbverlauf",
|
|
710
|
+
"property.fillType.gradient.description": "Mit Farbverlauf füllen",
|
|
665
711
|
"property.fillType.solid": "Einfarbig",
|
|
712
|
+
"property.fillType.solid.description": "Einfarbig füllen",
|
|
666
713
|
"property.flip": "Spiegeln",
|
|
667
714
|
"property.flip.x": "Horizontal spiegeln",
|
|
668
715
|
"property.flip.y": "Vertikal spiegeln",
|
|
@@ -693,7 +740,8 @@
|
|
|
693
740
|
"property.position": "{{axis}} $t(common.position)",
|
|
694
741
|
"property.position.description": "Position auf der {{axis}}-Achse in {{unit}}",
|
|
695
742
|
"property.sides": "Seiten",
|
|
696
|
-
"property.strokeColor": "
|
|
743
|
+
"property.strokeColor": "Umriss",
|
|
744
|
+
"property.strokeColor.description": "Umrissfarbe ändern",
|
|
697
745
|
"property.strokeJoin": "Kanten",
|
|
698
746
|
"property.strokeJoin.bevel.description": "Abgeschrägte Kanten benutzen",
|
|
699
747
|
"property.strokeJoin.miter.description": "Harte Kanten benutzen",
|
|
@@ -713,6 +761,7 @@
|
|
|
713
761
|
"property.strokeStyle.longDashedRound": "Lang Gestrichelt Rund",
|
|
714
762
|
"property.strokeStyle.solid": "Durchgängig",
|
|
715
763
|
"property.strokeWidth": "Breite",
|
|
764
|
+
"property.strokeWidth.description": "Strichbreite ändern",
|
|
716
765
|
"property.textAlignment.horizontal": "Horizontale Ausrichtung",
|
|
717
766
|
"property.textAlignment.horizontal.center": "Text mittig ausrichten",
|
|
718
767
|
"property.textAlignment.horizontal.left": "Text links ausrichten",
|
package/assets/i18n/en.json
CHANGED
|
@@ -32,6 +32,7 @@
|
|
|
32
32
|
"action.image.filter": "Apply filter",
|
|
33
33
|
"action.image.inpainting": "Inpaint",
|
|
34
34
|
"action.image.matting": "Remove Background",
|
|
35
|
+
"action.image.matting.staging": "Remove Background (Staging)",
|
|
35
36
|
"action.image.replace": "$t(common.replace)",
|
|
36
37
|
"action.image.smartCrop": "Smart-crop",
|
|
37
38
|
"action.image.smartImage": "Smart Features",
|
|
@@ -55,9 +56,9 @@
|
|
|
55
56
|
"action.scene.load": "Load scene",
|
|
56
57
|
"action.scene.new": "New Scene",
|
|
57
58
|
"action.selectGroup": "Select Group",
|
|
58
|
-
"action.
|
|
59
|
-
"action.
|
|
60
|
-
"action.
|
|
59
|
+
"action.strokeJoin.change": "Change stroke joints",
|
|
60
|
+
"action.strokePosition.change": "Change stroke position",
|
|
61
|
+
"action.strokeStyle.change": "$t(property.strokeStyle.description)",
|
|
61
62
|
"assets.ly.img.cesdk.images.samples.sample.1.label": "Clear blue beach at an island from above",
|
|
62
63
|
"assets.ly.img.cesdk.images.samples.sample.1.tags": "blue;green;beach;island;water",
|
|
63
64
|
"assets.ly.img.cesdk.images.samples.sample.10.label": "Mountains",
|
|
@@ -221,6 +222,9 @@
|
|
|
221
222
|
"assets.ly.img.ubq.shapes.polygon.label": "Polygon",
|
|
222
223
|
"assets.ly.img.ubq.shapes.rect.label": "Rectangle",
|
|
223
224
|
"assets.ly.img.ubq.shapes.star.label": "Star",
|
|
225
|
+
"action.text.autoHeight": "Enable automatic height",
|
|
226
|
+
"action.text.change": "Change text",
|
|
227
|
+
"action.text.fixedFrame": "Enable fixed frame",
|
|
224
228
|
"action.ungroup": "Ungroup element",
|
|
225
229
|
"block.ellipse": "Ellipse",
|
|
226
230
|
"block.group": "Group",
|
|
@@ -323,6 +327,7 @@
|
|
|
323
327
|
"component.canvas.state.loading": "Loading Editor",
|
|
324
328
|
"component.canvas.state.loading.description": "Just a few seconds...",
|
|
325
329
|
"component.canvas.state.unsupported": "Browser is not supported",
|
|
330
|
+
"component.colorPicker.colorItem.description": "Use this color",
|
|
326
331
|
"component.colorPicker.colorItem": "Color item {{index}}",
|
|
327
332
|
"component.colorPicker.colorItem.hexInput": "Hex",
|
|
328
333
|
"component.colorPicker.colorItem.transparent": "Color item {{index}}, Color name: transparent",
|
|
@@ -330,8 +335,11 @@
|
|
|
330
335
|
"component.colorPicker.hsl.description": "{{componentName}}, $t(common.nearestColorName): {{nearestColorName}}; $t(common.colorValue): hue: {{hue}}°, saturation: {{saturation}}%, lightness: {{lightness}}%",
|
|
331
336
|
"component.colorPicker.hueGradient": "Hue gradient selection",
|
|
332
337
|
"component.colorSchemeSelect.accent": "Accent color",
|
|
338
|
+
"component.colorSchemeSelect.accent.description": "Change accent color",
|
|
333
339
|
"component.colorSchemeSelect.active": "Active color",
|
|
340
|
+
"component.colorSchemeSelect.active.description": "Change active color",
|
|
334
341
|
"component.colorSchemeSelect.background": "Background color",
|
|
342
|
+
"component.colorSchemeSelect.background.description": "Change background color",
|
|
335
343
|
"component.dnd.description": "The added files are stored in the library",
|
|
336
344
|
"component.dnd.prompt": "Drag file here",
|
|
337
345
|
"component.dockIconSizeSelect": "Dock Icon Scaling",
|
|
@@ -374,6 +382,7 @@
|
|
|
374
382
|
"component.library.breadcrumbRoot": "All",
|
|
375
383
|
"component.library.clearSearch": "Clear search",
|
|
376
384
|
"component.library.elements": "Elements",
|
|
385
|
+
"component.library.enterSection": "Enter section",
|
|
377
386
|
"component.library.error": "Cannot connec to to asset source",
|
|
378
387
|
"component.library.loading": "Loading …",
|
|
379
388
|
"component.library.noItems": "No elements",
|
|
@@ -406,8 +415,8 @@
|
|
|
406
415
|
"component.templateLibrary": "Template Library",
|
|
407
416
|
"component.templateLibrary.abort": "$t(common.cancel)",
|
|
408
417
|
"component.templateLibrary.confirm": "Yes, discard changes",
|
|
409
|
-
"component.templateLibrary.dialog.body": "
|
|
410
|
-
"component.templateLibrary.dialog.headline": "
|
|
418
|
+
"component.templateLibrary.dialog.body": "Your content, like images and text, can not be adopted and all content will be discarted.",
|
|
419
|
+
"component.templateLibrary.dialog.headline": "Replace current document?",
|
|
411
420
|
"component.templateLibrary.dialog.invalid": "This preset is not valid and cannot be used.",
|
|
412
421
|
"component.themeSelect": "Theme",
|
|
413
422
|
"component.themeSelect.dark": "Dark",
|
|
@@ -442,23 +451,29 @@
|
|
|
442
451
|
"input.adjustments": "Adjustments",
|
|
443
452
|
"input.adjustments.basic": "Basic",
|
|
444
453
|
"input.adjustments.refinements": "Refinements",
|
|
454
|
+
"input.adjustments.tooltip": "Change Adjustments",
|
|
445
455
|
"input.alwaysOnTop": "Stay always on top",
|
|
446
456
|
"input.appearance": "Appearance",
|
|
447
457
|
"input.aspectLock": "Lock proportions",
|
|
448
458
|
"input.aspectLock.description": "Toggle proportion lock",
|
|
449
459
|
"input.bleedMargin.select": "Select bleed margins",
|
|
450
460
|
"input.blur": "Blur",
|
|
461
|
+
"input.blur.tooltip": "Change Blur",
|
|
451
462
|
"input.character": "Character",
|
|
452
463
|
"input.clipContent": "Clip content",
|
|
453
464
|
"input.clipContent.off.description": "Turn clip content off",
|
|
454
465
|
"input.clipContent.on.description": "Turn clip content on",
|
|
455
466
|
"input.document": "$t(block.scene)",
|
|
456
467
|
"input.effect": "Effect",
|
|
468
|
+
"input.effect.tooltip": "Change Effect",
|
|
457
469
|
"input.export": "Export",
|
|
458
470
|
"input.filter": "Filter",
|
|
471
|
+
"input.filter.tooltip": "Change Filter",
|
|
459
472
|
"input.fontSelect": "Selected font: {{font}}",
|
|
460
473
|
"input.fontSelect.fallback": "Standard",
|
|
474
|
+
"input.fontSelect.tooltip": "Change font style",
|
|
461
475
|
"input.fontSize.select": "Select font size",
|
|
476
|
+
"input.fontStyle.toggle": "Toggle {{style}}",
|
|
462
477
|
"input.gradient.activateColorStop": "Press space to activate.",
|
|
463
478
|
"input.gradient.colorPosition": "Color Position",
|
|
464
479
|
"input.gradient.colorStop": "Color stop",
|
|
@@ -478,11 +493,13 @@
|
|
|
478
493
|
"input.pages": "Pages",
|
|
479
494
|
"input.preset": "Preset",
|
|
480
495
|
"input.preset.description": "Page format preset",
|
|
496
|
+
"input.preset.tooltip": "Select $t(input.preset)",
|
|
481
497
|
"input.propertyToggle.disable": "Disable {{property}}",
|
|
482
498
|
"input.propertyToggle.enable": "Enable {{property}}",
|
|
483
499
|
"input.propertyToggle.hidden": "Hidden",
|
|
484
500
|
"input.propertyToggle.visible": "Visible",
|
|
485
501
|
"input.rename": "Rename {{designElementName}}",
|
|
502
|
+
"input.resolution.select": "Select {{which}}",
|
|
486
503
|
"input.shape": "Shape",
|
|
487
504
|
"input.shape.options": "Shape Options",
|
|
488
505
|
"input.showInExport": "Show in export",
|
|
@@ -490,8 +507,11 @@
|
|
|
490
507
|
"input.text.advanced": "$t(common.advanced)",
|
|
491
508
|
"input.text.advanced.description": "Line Height, Spacing, Alignment & Sizing",
|
|
492
509
|
"input.text.placeholder": "Write Something",
|
|
493
|
-
"input.transform
|
|
510
|
+
"input.transform": "$t(common.position) & $t(common.size)",
|
|
511
|
+
"input.transform.description": "Adjust $t(common.position) and $t(common.size)",
|
|
494
512
|
"input.typefaceSelect.description": "Selected font typeface: {{fontFamily}}",
|
|
513
|
+
"input.typefaceSelect.tooltip": "Change font typeface",
|
|
514
|
+
"input.unit.tooltip": "Select $(common.unit)",
|
|
495
515
|
"input.uploadImage": "Uploading image...",
|
|
496
516
|
"libraries.local.label": "Uploads",
|
|
497
517
|
"libraries.ly.img.image.label": "Images",
|
|
@@ -501,6 +521,7 @@
|
|
|
501
521
|
"libraries.ly.img.sticker.emoticons.label": "Emoticons",
|
|
502
522
|
"libraries.ly.img.sticker.hand.label": "Hands",
|
|
503
523
|
"libraries.ly.img.sticker.label": "Stickers",
|
|
524
|
+
"libraries.ly.img.template.label": "Templates",
|
|
504
525
|
"libraries.ly.img.text.headline.label": "Headline",
|
|
505
526
|
"libraries.ly.img.text.label": "Text",
|
|
506
527
|
"libraries.ly.img.text.paragraph.label": "Paragraph",
|
|
@@ -558,7 +579,28 @@
|
|
|
558
579
|
"property.autoSize.autoHeight.description": "Automatically scale the text frame's height",
|
|
559
580
|
"property.autoSize.fixedFrame.description": "Maintain the text's frame",
|
|
560
581
|
"property.backgroundColor": "Background",
|
|
582
|
+
"property.backgroundColor.description": "Change background color",
|
|
561
583
|
"property.bleedMargin": "Bleed Margin",
|
|
584
|
+
"property.blendMode": "Blend Mode",
|
|
585
|
+
"property.blendMode.Color": "Color",
|
|
586
|
+
"property.blendMode.ColorBurn": "Color Burn",
|
|
587
|
+
"property.blendMode.ColorDodge": "Color Dodge",
|
|
588
|
+
"property.blendMode.Darken": "Darken",
|
|
589
|
+
"property.blendMode.description": "Selected blend mode: {{mode}}",
|
|
590
|
+
"property.blendMode.tooltip": "Change blend mode",
|
|
591
|
+
"property.blendMode.Difference": "Difference",
|
|
592
|
+
"property.blendMode.Exclusion": "Exclusion",
|
|
593
|
+
"property.blendMode.HardLight": "Hard Light",
|
|
594
|
+
"property.blendMode.Hue": "Hue",
|
|
595
|
+
"property.blendMode.Lighten": "Lighten",
|
|
596
|
+
"property.blendMode.Luminosity": "Luminosity",
|
|
597
|
+
"property.blendMode.Multiply": "Multiply",
|
|
598
|
+
"property.blendMode.Normal": "Normal",
|
|
599
|
+
"property.blendMode.Overlay": "Overlay",
|
|
600
|
+
"property.blendMode.PassThrough": "Pass Through",
|
|
601
|
+
"property.blendMode.Saturation": "Saturation",
|
|
602
|
+
"property.blendMode.Screen": "Screen",
|
|
603
|
+
"property.blendMode.SoftLight": "Soft Light",
|
|
562
604
|
"property.blur.extrudeBlur": "Extrude Blur",
|
|
563
605
|
"property.blur.extrudeBlur.amount": "Intensity",
|
|
564
606
|
"property.blur.linearBlur": "Linear Blur",
|
|
@@ -584,6 +626,7 @@
|
|
|
584
626
|
"property.blur.uniformBlur": "Gaussian Blur",
|
|
585
627
|
"property.blur.uniformBlur.intensity": "Intensity",
|
|
586
628
|
"property.color": "Color",
|
|
629
|
+
"property.color.description": "Change Color",
|
|
587
630
|
"property.crop": "Crop",
|
|
588
631
|
"property.crop.offset": "{{axis}} Offset",
|
|
589
632
|
"property.crop.offset.description": "Crop offset on the {{axis}}-axis in {{unit}}",
|
|
@@ -591,6 +634,7 @@
|
|
|
591
634
|
"property.crop.scale.description": "Proportionally scale image dimensions",
|
|
592
635
|
"property.crop.size": "Crop Area",
|
|
593
636
|
"property.crop.size.description": "{{dimension}} of the crop frame in {{unit}}",
|
|
637
|
+
"property.crop.tooltip": "Change Crop properties",
|
|
594
638
|
"property.crop.transform": "$t(block.image)",
|
|
595
639
|
"property.duotoneFilter.breezy": "Breezy",
|
|
596
640
|
"property.duotoneFilter.clash": "Clash",
|
|
@@ -675,9 +719,12 @@
|
|
|
675
719
|
"property.effect.waves.strength": "Intensity",
|
|
676
720
|
"property.effect.waves.time": "Variation",
|
|
677
721
|
"property.fill": "Fill",
|
|
722
|
+
"property.fill.description": "Change fill",
|
|
678
723
|
"property.fillType": "Fill Type",
|
|
679
724
|
"property.fillType.gradient": "Gradient",
|
|
725
|
+
"property.fillType.gradient.description": "Use a gradient fill",
|
|
680
726
|
"property.fillType.solid": "Solid",
|
|
727
|
+
"property.fillType.solid.description": "Use a solid fill color",
|
|
681
728
|
"property.flip": "Flip",
|
|
682
729
|
"property.flip.x": "Flip horizontal",
|
|
683
730
|
"property.flip.y": "Flip vertical",
|
|
@@ -769,7 +816,8 @@
|
|
|
769
816
|
"property.position": "{{axis}} $t(common.position)",
|
|
770
817
|
"property.position.description": "Position on the {{axis}}-axis in {{unit}}",
|
|
771
818
|
"property.sides": "Sides",
|
|
772
|
-
"property.strokeColor": "Stroke
|
|
819
|
+
"property.strokeColor": "Stroke",
|
|
820
|
+
"property.strokeColor.description": "Change stroke color",
|
|
773
821
|
"property.strokeJoin": "Join",
|
|
774
822
|
"property.strokeJoin.bevel.description": "Use bevelled joins",
|
|
775
823
|
"property.strokeJoin.miter.description": "Use mitered joins",
|
|
@@ -783,12 +831,13 @@
|
|
|
783
831
|
"property.strokeStyle": "Style",
|
|
784
832
|
"property.strokeStyle.dashed": "Dashed",
|
|
785
833
|
"property.strokeStyle.dashedRound": "Dashed Round",
|
|
786
|
-
"property.strokeStyle.description": "Change
|
|
834
|
+
"property.strokeStyle.description": "Change stroke style",
|
|
787
835
|
"property.strokeStyle.dotted": "Dotted",
|
|
788
836
|
"property.strokeStyle.longDashed": "Long Dashed",
|
|
789
837
|
"property.strokeStyle.longDashedRound": "Long Dashed Round",
|
|
790
838
|
"property.strokeStyle.solid": "Solid",
|
|
791
839
|
"property.strokeWidth": "Width",
|
|
840
|
+
"property.strokeWidth.description": "Change stroke width",
|
|
792
841
|
"property.textAlignment.horizontal": "Horizontal Alignment",
|
|
793
842
|
"property.textAlignment.horizontal.center": "Align text to the center",
|
|
794
843
|
"property.textAlignment.horizontal.left": "Align text to the left",
|