svgedit/editor/locale/lang.pl.js

220 lines
9.0 KiB
JavaScript
Raw Normal View History

- Breaking change: Extension now formatted as export (and `this` is set to editor, including for `callback`) - Breaking change: Locale now formatted as export - Breaking change: Moved out remaining modular i18n (imagelib) to own folder - Breaking change: Drop `executeAfterLoads` (and getJSPDF/getCanvg) - Breaking change: `RGBColor` must accept `new` - Breaking change: canvg - `stackBlurCanvasRGBA` must be set now by function (`setStackBlurCanvasRGBA`) rather than global; `canvg` now a named export - Breaking change: Avoid passing `canvg`/`buildCanvgCallback` to extensions (have them import) - Fix: i18nize imaglib more deeply - Fix: Positioning of Document Properties dialog (Fixes #246) - Fix (regression): PDF Export (Fixes #249) - Fix (regression): Add polyfill for `ChildNode`/`ParentNode` (and use further) - Fix (regression): Apply Babel universally to dependencies - Fix (regression): Ordering of `uaPrefix` function in `svgEditor.js` - Fix (regression): Embedded API - Fix (embedded editor): Fix backspace key in Firefox so it doesn't navigate out of frame - Fix: Alert if no exportWindow for PDF (e.g., if blocked) - Refactoring( RGBColor) `RGBColor` as class, without rebuilding constants, optimize string replacement, move methods to prototype, use templates and object literals, use `Object.keys` - Refactoring (canvg) Use classes more internally, use shorthand objects; array extras, return to lazy-loading - Refactoring: Use Promises in place of `$.getScript`; always return Promises in case deciding to await resolving - Refactoring: Avoid importing `RGBColor` into `svgutils.js` (jsPDF imports it itself) - Refactoring: Arrow functions, destructuring, shorter property references - Refactoring: Fix `lang` and `dir` for locales (though not in use currently anyways) - Refactoring: Provide path config for canvg, jspdf
2018-06-02 01:14:38 +00:00
export default {
lang: 'pl',
dir: 'ltr',
author: 'Aleksander Lurie',
common: {
(INCOMPLETE: ES6 Module conversion and linting) - Breaking change: Require `new` with `EmbeddedSVGEdit` (allows us to use `class` internally) - Breaking change: If `svgcanvas.setUiStrings` must now be called if not using editor in order to get strings (for sake of i18n) (and if using path.js alone, must also have its `setUiStrings` called) - Breaking change (ext-overview-window): Avoid global `overviewWindowGlobals` - Breaking change (ext-imagelib): Change to object-based encoding for namespacing of messages (though keep stringifying/parsing ourselves until we remove IE9 support) - Breaking change: Rename `jquery.js` to `jquery.min.js` - Breaking change: Remove `scoped` attribute from `style`; it is now deprecated and obsolete; also move to head (after other stylesheets) - Enhancement: Make SpinButton plugin independent of SVGEdit via generic state object for tool_scale - Enhancement: Remove now unused Python l10n scripts (#238) - Enhancement: ES6 Modules (including jQuery plugins but not jQuery) - Enhancement: Further JSDoc (incomplete) - Enhancement (Optimization): Compress images using imageoptim (and add npm script) (per #215) - Fix: i18nize path.js strings and canvas notifications - Fix: Attempt i18n for ext-markers - Refactoring (ext-storage): Move locale info to own file imported by the extension (toward modularity; still should be split into separate files by language and *dynamically* imported, but we'll wait for better `import` support to refactor this) - Refactoring: For imagelib, add local jQuery copy (using old 1.4.4 as had been using from server) - Refactoring: For MathJax, add local copy (using old 2.3 as had been using from server); server had not been working - Refactoring: Remove `use strict` (implicit in modules) - Refactoring: Remove trailing whitespace, fix some code within comments - Refactoring: Expect `jQuery` global rather than `$` for better modularity (also to adapt line later once available via `import`) - Refactoring: Prefer `const` (and then `let`) - Refactoring: Add block scope keywords closer to first block in which they appear - Refactoring: Use ES6 `class` - Refactoring `$.isArray` -> `Array.isArray` and avoid some other jQuery core methods with simple VanillaJS replacements - Refactoring: Use abbreviated object property syntax - Refactoring: Object destructuring - Refactoring: Remove `uiStrings` contents in svg-editor.js (obtains from locale) - Refactoring: Add favicon to embedded API file - Refactoring: Use arrow functions for brief functions (incomplete) - Refactoring: Use `Array.prototype.includes`/`String.prototype.includes`; `String.prototype.startsWith`, `String.prototype.trim` - Refactoring: Remove now unnecessary svgutils do/while resetting of variables - Refactoring: Use shorthand methods for object literals (avoid ": function") - Refactoring: Avoid quoting object property keys where unnecessary - Refactoring: Just do truthy/falsey check for lengths in place of comparison to 0 - Refactoring (Testing): Avoid jQuery usage within most test files (defer script, also in preparation for future switch to ES6 modules for tests) - Refactoring: Make jpicker variable declaration indent bearable - Refactoring (Linting): Finish svgcanvas.js - Docs: Mention in comment no longer an entry file as before - Docs: Migrate old config, extensions, and FAQ docs - Licensing: Indicate MIT is license type of rgbcolor; rename/add license file name for jgraduate and screencast to reflect type (Apache 2.0); rename file to reflect it contains license information (of type MIT) for Raphael icons
2018-05-18 03:25:45 +00:00
ok: 'OK',
cancel: 'Anuluj',
key_backspace: 'usuń',
key_del: 'usuń',
key_down: 'w dół',
key_up: 'w górę',
more_opts: 'więcej opcji',
url: 'adres url',
width: 'Szerokość',
height: 'Wysokość'
},
misc: {
powered_by: 'Powered by'
},
ui: {
toggle_stroke_tools: 'Pokaż/ukryj więcej opcji obramowania',
palette_info: 'Kliknij aby zmienić kolor wypełnienia, przytrzymaj shift aby zmienić kolor obramowania',
zoom_level: 'Zmiana powiększenia',
panel_drag: 'Przeciągnij w lewo/prawo aby zmienić szerokość panelu',
(INCOMPLETE: ES6 Module conversion and linting) - Breaking change: Require `new` with `EmbeddedSVGEdit` (allows us to use `class` internally) - Breaking change: If `svgcanvas.setUiStrings` must now be called if not using editor in order to get strings (for sake of i18n) (and if using path.js alone, must also have its `setUiStrings` called) - Breaking change (ext-overview-window): Avoid global `overviewWindowGlobals` - Breaking change (ext-imagelib): Change to object-based encoding for namespacing of messages (though keep stringifying/parsing ourselves until we remove IE9 support) - Breaking change: Rename `jquery.js` to `jquery.min.js` - Breaking change: Remove `scoped` attribute from `style`; it is now deprecated and obsolete; also move to head (after other stylesheets) - Enhancement: Make SpinButton plugin independent of SVGEdit via generic state object for tool_scale - Enhancement: Remove now unused Python l10n scripts (#238) - Enhancement: ES6 Modules (including jQuery plugins but not jQuery) - Enhancement: Further JSDoc (incomplete) - Enhancement (Optimization): Compress images using imageoptim (and add npm script) (per #215) - Fix: i18nize path.js strings and canvas notifications - Fix: Attempt i18n for ext-markers - Refactoring (ext-storage): Move locale info to own file imported by the extension (toward modularity; still should be split into separate files by language and *dynamically* imported, but we'll wait for better `import` support to refactor this) - Refactoring: For imagelib, add local jQuery copy (using old 1.4.4 as had been using from server) - Refactoring: For MathJax, add local copy (using old 2.3 as had been using from server); server had not been working - Refactoring: Remove `use strict` (implicit in modules) - Refactoring: Remove trailing whitespace, fix some code within comments - Refactoring: Expect `jQuery` global rather than `$` for better modularity (also to adapt line later once available via `import`) - Refactoring: Prefer `const` (and then `let`) - Refactoring: Add block scope keywords closer to first block in which they appear - Refactoring: Use ES6 `class` - Refactoring `$.isArray` -> `Array.isArray` and avoid some other jQuery core methods with simple VanillaJS replacements - Refactoring: Use abbreviated object property syntax - Refactoring: Object destructuring - Refactoring: Remove `uiStrings` contents in svg-editor.js (obtains from locale) - Refactoring: Add favicon to embedded API file - Refactoring: Use arrow functions for brief functions (incomplete) - Refactoring: Use `Array.prototype.includes`/`String.prototype.includes`; `String.prototype.startsWith`, `String.prototype.trim` - Refactoring: Remove now unnecessary svgutils do/while resetting of variables - Refactoring: Use shorthand methods for object literals (avoid ": function") - Refactoring: Avoid quoting object property keys where unnecessary - Refactoring: Just do truthy/falsey check for lengths in place of comparison to 0 - Refactoring (Testing): Avoid jQuery usage within most test files (defer script, also in preparation for future switch to ES6 modules for tests) - Refactoring: Make jpicker variable declaration indent bearable - Refactoring (Linting): Finish svgcanvas.js - Docs: Mention in comment no longer an entry file as before - Docs: Migrate old config, extensions, and FAQ docs - Licensing: Indicate MIT is license type of rgbcolor; rename/add license file name for jgraduate and screencast to reflect type (Apache 2.0); rename file to reflect it contains license information (of type MIT) for Raphael icons
2018-05-18 03:25:45 +00:00
quality: 'Quality:',
pathNodeTooltip: 'Drag node to move it. Double-click node to change segment type',
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'
},
properties: {
id: 'Identyfikator elementu',
fill_color: 'Zmień kolor wypełnienia',
stroke_color: 'Zmień kolor obramowania',
stroke_style: 'Zmień styl obramowania',
stroke_width: 'Zmień szerokość obramowania o 1, przytrzymaj shift aby zmienić szerokość o 0.1',
pos_x: 'Zmień współrzędną X',
pos_y: 'Zmień współrzędną Y',
linecap_butt: 'Zakończenie linii: grzbiet',
linecap_round: 'Zakończenie linii: zaokrąglone',
linecap_square: 'Zakończenie linii: kwadrat',
linejoin_bevel: 'Łączenie linii: ścięte',
linejoin_miter: 'Łączenie linii: ostre',
linejoin_round: 'Łączenie linii: zaokrąglone',
angle: 'Zmień kąt obrotu',
blur: 'Zmień wartość rozmycia gaussa',
opacity: 'Zmień przezroczystość zaznaczonego elementu',
circle_cx: 'Zmień współrzędną cx okręgu',
circle_cy: 'Zmień współrzędną cy okręgu',
circle_r: 'zmień promień okręgu',
ellipse_cx: 'Zmień współrzędną cx elipsy',
ellipse_cy: 'Zmień współrzędną cy elipsy',
ellipse_rx: 'Zmień promień x elipsy',
ellipse_ry: 'Zmień promień y elipsy',
line_x1: 'Zmień współrzędna x początku linii',
line_x2: 'Zmień współrzędną x końca linii',
line_y1: 'Zmień współrzędną y początku linii',
line_y2: 'Zmień współrzędną y końca linii',
rect_height: 'Zmień wysokość prostokąta',
rect_width: 'Zmień szerokość prostokąta',
corner_radius: 'Zmień promień zaokrąglenia narożników prostokąta',
image_width: 'Zmień wysokość obrazu',
image_height: 'Zmień szerokość obrazu',
image_url: 'Zmień adres URL',
node_x: 'Zmień współrzędną x węzła',
node_y: 'Zmień współrzędną y węzła',
seg_type: 'Zmień typ segmentu',
straight_segments: 'Prosty',
curve_segments: 'Zaokrąglony',
text_contents: 'Zmień text',
font_family: 'Zmień krój czcionki',
font_size: 'Zmień rozmiar czcionki',
bold: 'Pogrubienie textu',
italic: 'Kursywa'
},
tools: {
main_menu: 'Menu główne',
bkgnd_color_opac: 'Zmiana koloru/przezroczystości tła',
connector_no_arrow: 'Brak strzałek',
fitToContent: 'Dopasuj do zawartości',
fit_to_all: 'Dopasuj do całej zawartości',
fit_to_canvas: 'Dopasuj do widoku',
fit_to_layer_content: 'Dopasuj do zawartości warstwy',
fit_to_sel: 'Dopasuj do zaznaczenia',
align_relative_to: 'Wyrównaj relatywnie do ...',
relativeTo: 'relatywnie do:',
page: 'strona',
largest_object: 'największy obiekt',
selected_objects: 'zaznaczone obiekty',
smallest_object: 'najmniejszy obiekt',
new_doc: 'Nowy obraz',
open_doc: 'Otwórz obraz',
export_img: 'Eksportuj',
save_doc: 'Zapisz obraz',
import_doc: 'Importuj SVG',
align_to_page: 'Wyrównaj element do strony',
align_bottom: 'Wyrównaj do dołu',
align_center: 'Wyśrodkuj w poziomie',
align_left: 'Wyrównaj do lewej',
align_middle: 'Wyśrodkuj w pionie',
align_right: 'Wyrównaj do prawej',
align_top: 'Wyrównaj do góry',
mode_select: 'Zaznaczenie',
mode_fhpath: 'Ołówek',
mode_line: 'Linia',
mode_rect: 'Prostokąt',
mode_square: 'Kwadrat',
mode_fhrect: 'Dowolny prostokąt',
mode_ellipse: 'Elipsa',
mode_circle: 'Okrąg',
mode_fhellipse: 'Dowolna elipsa',
mode_path: 'Ścieżka',
mode_text: 'Tekst',
mode_image: 'Obraz',
mode_zoom: 'Powiększenie',
no_embed: 'Uwaga: Ten obraz nie może być osadzony. Być może podany adres na to nie pozwala',
undo: 'Wstecz',
redo: 'Dalej',
tool_source: 'Edytuj źródło',
wireframe_mode: 'Tryb szkieletowy',
clone: 'Klonuj element(y)',
del: 'Usuń warstwę',
group_elements: 'Grupuj elementy',
make_link: 'Utwórz łącze',
set_link_url: 'Ustal adres URL (pozostaw puste aby usunąć)',
to_path: 'Konwertuj do ścieżki',
reorient_path: 'Zresetuj obwiednię',
ungroup: 'Rozgrupuj elementy',
docprops: 'Właściwości dokumentu',
editor_homepage: 'SVG-Edit Home Page',
move_bottom: 'Przenieś pod spód',
move_top: 'Przenieś na wierzch',
node_clone: 'Klonuj węzeł',
node_delete: 'Usuń węzeł',
node_link: 'Podłącz punkty kontrolne',
add_subpath: 'Dodaj ścieżkę podrzędną',
openclose_path: 'Otwórz/zamknij ścieżkę podrzędną',
source_save: 'Zachowaj zmiany',
cut: 'Wytnij',
copy: 'Kopiuj',
paste: 'Wklej',
paste_in_place: 'Wklej w miejscu',
delete: 'Usuń',
group: 'Grupuj',
move_front: 'Przenieś do przodu',
move_up: 'Przenieś warstwę w górę',
move_down: 'Przenieś warstwę w dół',
move_back: 'Przenieś do tyłu'
},
layers: {
layer: 'Warstwa',
layers: 'Warstwy',
del: 'Usuń warstwę',
move_down: 'Przenieś warstwę w dół',
new: 'Nowa warstwa',
rename: 'Zmień nazwę warstwy',
move_up: 'Przenieś warstwę w górę',
dupe: 'Duplikuj warstwę',
merge_down: 'Scal w dół',
merge_all: 'Scal wszystko',
move_elems_to: 'Przenieś elementy do:',
move_selected: 'Przenieś zaznaczone elementy do innej warstwy'
},
config: {
image_props: 'Własciwości obrazu',
doc_title: 'Tytuł',
doc_dims: 'Wymiary pola roboczego',
included_images: 'Dołączone obrazy',
image_opt_embed: 'Dane osadzone (pliki lokalne)',
image_opt_ref: 'Użyj referencji do pliku',
editor_prefs: 'Ustawienia edytora',
icon_size: 'Rozmiar ikon',
language: 'Język',
background: 'Tło edytora',
editor_img_url: 'Adres URL obrazu',
editor_bg_note: 'Uwaga: Tło nie zostało zapisane z obrazem.',
icon_large: 'Duże',
icon_medium: 'Średnie',
icon_small: 'Małe',
icon_xlarge: 'Bardzo duże',
select_predefined: 'Wybierz predefiniowany:',
units_and_rulers: 'Jednostki/Linijki',
show_rulers: 'Pokaż linijki',
base_unit: 'Podstawowa jednostka:',
grid: 'Siatka',
snapping_onoff: 'Włącz/wyłącz przyciąganie',
snapping_stepsize: 'Przyciągaj co:',
grid_color: 'Kolor siatki'
},
notification: {
invalidAttrValGiven: 'Podano nieprawidłową wartość',
noContentToFitTo: 'Brak zawartości do dopasowania',
dupeLayerName: 'Istnieje już warstwa o takiej nazwie!',
enterUniqueLayerName: 'Podaj unikalną nazwę warstwy',
enterNewLayerName: 'Podaj nazwe nowej warstwy',
layerHasThatName: 'Warstwa już tak się nazywa',
QmoveElemsToLayer: 'Przenies zaznaczone elementy do warstwy \'%s\'?',
QwantToClear: 'Jesteś pewien, że chcesz wyczyścić pole robocze?\nHistoria projektu również zostanie skasowana',
QwantToOpen: 'Jesteś pewien, że chcesz otworzyć nowy plik?\nHistoria projektu również zostanie skasowana',
QerrorsRevertToSource: 'Błąd parsowania źródła Twojego pliku SVG.\nPrzywrócić orginalne źródło pliku SVG?',
QignoreSourceChanges: 'Zignorowac zmiany w źródle pliku SVG?',
featNotSupported: 'Funkcjonalność niedostępna',
enterNewImgURL: 'Podaj adres URL nowego obrazu',
defsFailOnSave: 'Uwaga: Ze względu na błąd w przeglądarce, ten obraz może się źle wyswietlać (brak gradientów lub elementów). Będzie jednak wyświetlał się poprawnie skoro został zapisany.',
loadingImage: 'Ładowanie obrazu, proszę czekać...',
saveFromBrowser: "Select 'Save As...' in your browser (possibly via file menu or right-click context-menu) to save this image as a %s file.",
noteTheseIssues: 'Zwróć uwagę na nastepujące kwestie: ',
unsavedChanges: 'Wykryto niezapisane zmiany.',
enterNewLinkURL: 'Wpisz nowy adres URL hiperłącza',
errorLoadingSVG: 'Błąd: Nie można załadować danych SVG',
URLLoadFail: 'Nie można załadować z adresu URL',
(INCOMPLETE: ES6 Module conversion and linting) - Breaking change: Require `new` with `EmbeddedSVGEdit` (allows us to use `class` internally) - Breaking change: If `svgcanvas.setUiStrings` must now be called if not using editor in order to get strings (for sake of i18n) (and if using path.js alone, must also have its `setUiStrings` called) - Breaking change (ext-overview-window): Avoid global `overviewWindowGlobals` - Breaking change (ext-imagelib): Change to object-based encoding for namespacing of messages (though keep stringifying/parsing ourselves until we remove IE9 support) - Breaking change: Rename `jquery.js` to `jquery.min.js` - Breaking change: Remove `scoped` attribute from `style`; it is now deprecated and obsolete; also move to head (after other stylesheets) - Enhancement: Make SpinButton plugin independent of SVGEdit via generic state object for tool_scale - Enhancement: Remove now unused Python l10n scripts (#238) - Enhancement: ES6 Modules (including jQuery plugins but not jQuery) - Enhancement: Further JSDoc (incomplete) - Enhancement (Optimization): Compress images using imageoptim (and add npm script) (per #215) - Fix: i18nize path.js strings and canvas notifications - Fix: Attempt i18n for ext-markers - Refactoring (ext-storage): Move locale info to own file imported by the extension (toward modularity; still should be split into separate files by language and *dynamically* imported, but we'll wait for better `import` support to refactor this) - Refactoring: For imagelib, add local jQuery copy (using old 1.4.4 as had been using from server) - Refactoring: For MathJax, add local copy (using old 2.3 as had been using from server); server had not been working - Refactoring: Remove `use strict` (implicit in modules) - Refactoring: Remove trailing whitespace, fix some code within comments - Refactoring: Expect `jQuery` global rather than `$` for better modularity (also to adapt line later once available via `import`) - Refactoring: Prefer `const` (and then `let`) - Refactoring: Add block scope keywords closer to first block in which they appear - Refactoring: Use ES6 `class` - Refactoring `$.isArray` -> `Array.isArray` and avoid some other jQuery core methods with simple VanillaJS replacements - Refactoring: Use abbreviated object property syntax - Refactoring: Object destructuring - Refactoring: Remove `uiStrings` contents in svg-editor.js (obtains from locale) - Refactoring: Add favicon to embedded API file - Refactoring: Use arrow functions for brief functions (incomplete) - Refactoring: Use `Array.prototype.includes`/`String.prototype.includes`; `String.prototype.startsWith`, `String.prototype.trim` - Refactoring: Remove now unnecessary svgutils do/while resetting of variables - Refactoring: Use shorthand methods for object literals (avoid ": function") - Refactoring: Avoid quoting object property keys where unnecessary - Refactoring: Just do truthy/falsey check for lengths in place of comparison to 0 - Refactoring (Testing): Avoid jQuery usage within most test files (defer script, also in preparation for future switch to ES6 modules for tests) - Refactoring: Make jpicker variable declaration indent bearable - Refactoring (Linting): Finish svgcanvas.js - Docs: Mention in comment no longer an entry file as before - Docs: Migrate old config, extensions, and FAQ docs - Licensing: Indicate MIT is license type of rgbcolor; rename/add license file name for jgraduate and screencast to reflect type (Apache 2.0); rename file to reflect it contains license information (of type MIT) for Raphael icons
2018-05-18 03:25:45 +00:00
retrieving: 'Retrieving \'%s\' ...',
popupWindowBlocked: 'Popup window may be blocked by browser',
(INCOMPLETE: ES6 Module conversion and linting) - Breaking change: Require `new` with `EmbeddedSVGEdit` (allows us to use `class` internally) - Breaking change: If `svgcanvas.setUiStrings` must now be called if not using editor in order to get strings (for sake of i18n) (and if using path.js alone, must also have its `setUiStrings` called) - Breaking change (ext-overview-window): Avoid global `overviewWindowGlobals` - Breaking change (ext-imagelib): Change to object-based encoding for namespacing of messages (though keep stringifying/parsing ourselves until we remove IE9 support) - Breaking change: Rename `jquery.js` to `jquery.min.js` - Breaking change: Remove `scoped` attribute from `style`; it is now deprecated and obsolete; also move to head (after other stylesheets) - Enhancement: Make SpinButton plugin independent of SVGEdit via generic state object for tool_scale - Enhancement: Remove now unused Python l10n scripts (#238) - Enhancement: ES6 Modules (including jQuery plugins but not jQuery) - Enhancement: Further JSDoc (incomplete) - Enhancement (Optimization): Compress images using imageoptim (and add npm script) (per #215) - Fix: i18nize path.js strings and canvas notifications - Fix: Attempt i18n for ext-markers - Refactoring (ext-storage): Move locale info to own file imported by the extension (toward modularity; still should be split into separate files by language and *dynamically* imported, but we'll wait for better `import` support to refactor this) - Refactoring: For imagelib, add local jQuery copy (using old 1.4.4 as had been using from server) - Refactoring: For MathJax, add local copy (using old 2.3 as had been using from server); server had not been working - Refactoring: Remove `use strict` (implicit in modules) - Refactoring: Remove trailing whitespace, fix some code within comments - Refactoring: Expect `jQuery` global rather than `$` for better modularity (also to adapt line later once available via `import`) - Refactoring: Prefer `const` (and then `let`) - Refactoring: Add block scope keywords closer to first block in which they appear - Refactoring: Use ES6 `class` - Refactoring `$.isArray` -> `Array.isArray` and avoid some other jQuery core methods with simple VanillaJS replacements - Refactoring: Use abbreviated object property syntax - Refactoring: Object destructuring - Refactoring: Remove `uiStrings` contents in svg-editor.js (obtains from locale) - Refactoring: Add favicon to embedded API file - Refactoring: Use arrow functions for brief functions (incomplete) - Refactoring: Use `Array.prototype.includes`/`String.prototype.includes`; `String.prototype.startsWith`, `String.prototype.trim` - Refactoring: Remove now unnecessary svgutils do/while resetting of variables - Refactoring: Use shorthand methods for object literals (avoid ": function") - Refactoring: Avoid quoting object property keys where unnecessary - Refactoring: Just do truthy/falsey check for lengths in place of comparison to 0 - Refactoring (Testing): Avoid jQuery usage within most test files (defer script, also in preparation for future switch to ES6 modules for tests) - Refactoring: Make jpicker variable declaration indent bearable - Refactoring (Linting): Finish svgcanvas.js - Docs: Mention in comment no longer an entry file as before - Docs: Migrate old config, extensions, and FAQ docs - Licensing: Indicate MIT is license type of rgbcolor; rename/add license file name for jgraduate and screencast to reflect type (Apache 2.0); rename file to reflect it contains license information (of type MIT) for Raphael icons
2018-05-18 03:25:45 +00:00
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
}
- Breaking change: Extension now formatted as export (and `this` is set to editor, including for `callback`) - Breaking change: Locale now formatted as export - Breaking change: Moved out remaining modular i18n (imagelib) to own folder - Breaking change: Drop `executeAfterLoads` (and getJSPDF/getCanvg) - Breaking change: `RGBColor` must accept `new` - Breaking change: canvg - `stackBlurCanvasRGBA` must be set now by function (`setStackBlurCanvasRGBA`) rather than global; `canvg` now a named export - Breaking change: Avoid passing `canvg`/`buildCanvgCallback` to extensions (have them import) - Fix: i18nize imaglib more deeply - Fix: Positioning of Document Properties dialog (Fixes #246) - Fix (regression): PDF Export (Fixes #249) - Fix (regression): Add polyfill for `ChildNode`/`ParentNode` (and use further) - Fix (regression): Apply Babel universally to dependencies - Fix (regression): Ordering of `uaPrefix` function in `svgEditor.js` - Fix (regression): Embedded API - Fix (embedded editor): Fix backspace key in Firefox so it doesn't navigate out of frame - Fix: Alert if no exportWindow for PDF (e.g., if blocked) - Refactoring( RGBColor) `RGBColor` as class, without rebuilding constants, optimize string replacement, move methods to prototype, use templates and object literals, use `Object.keys` - Refactoring (canvg) Use classes more internally, use shorthand objects; array extras, return to lazy-loading - Refactoring: Use Promises in place of `$.getScript`; always return Promises in case deciding to await resolving - Refactoring: Avoid importing `RGBColor` into `svgutils.js` (jsPDF imports it itself) - Refactoring: Arrow functions, destructuring, shorter property references - Refactoring: Fix `lang` and `dir` for locales (though not in use currently anyways) - Refactoring: Provide path config for canvg, jspdf
2018-06-02 01:14:38 +00:00
};