svgedit/editor/locale/lang.sk.js

219 lines
8.7 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: 'sk',
dir: 'ltr',
common: {
ok: 'Uložiť',
cancel: 'Zrušiť',
(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
key_backspace: 'Backspace',
key_del: 'Delete',
key_down: 'šípka dole',
key_up: 'šípka hore',
more_opts: 'Viac možností',
url: 'URL',
width: 'Šírka',
height: 'Výška'
},
misc: {
powered_by: 'Beží na'
},
ui: {
toggle_stroke_tools: 'Skryť/ukázať viac nástrojov pre krivku',
palette_info: 'Kliknutím zmeníte farbu výplne, so Shiftom zmeníte farbu obrysu',
zoom_level: 'Zmena priblíženia',
panel_drag: 'Potiahnutie vľavo/vpravo na zmenu veľkosti bočného panela',
(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: 'Zmeniť ID elementu',
fill_color: 'Zmeniť farbu výplne',
stroke_color: 'Zmeniť farbu obrysu',
stroke_style: 'Zmeniť štýl obrysu',
stroke_width: 'Zmeniť hrúbku obrysu',
pos_x: 'Zmeniť súradnicu X',
pos_y: 'Zmeniť súradnicu Y',
linecap_butt: 'Koniec čiary: presný',
linecap_round: 'Koniec čiary: zaoblený',
linecap_square: 'Koniec čiary: so štvorcovým presahom',
linejoin_bevel: 'Napojenie čiar: skosené',
linejoin_miter: 'Napojenie čiar: ostré',
linejoin_round: 'Napojenie čiar: oblé',
angle: 'Zmeniť uhol natočenia',
blur: 'Zmeniť intenzitu rozmazania',
opacity: 'Zmeniť prehľadnosť vybraných položiek',
circle_cx: 'Zmeniť súradnicu X stredu kružnice',
circle_cy: 'Zmeniť súradnicu Y stredu kružnice',
circle_r: 'Zmeniť polomer kružnice',
ellipse_cx: 'Zmeniť súradnicu X stredu elipsy',
ellipse_cy: 'Zmeniť súradnicu Y stredu elipsy',
ellipse_rx: 'Zmeniť polomer X elipsy',
ellipse_ry: 'Zmeniť polomer Y elipsy',
line_x1: 'Zmeniť počiatočnú súradnicu X čiary',
line_x2: 'Zmeniť koncovú súradnicu X čiary',
line_y1: 'Zmeniť počiatočnú súradnicu Y čiary',
line_y2: 'Zmeniť koncovú súradnicu Y čiary',
rect_height: 'Zmena výšku obdĺžnika',
rect_width: 'Zmeniť šírku obdĺžnika',
corner_radius: 'Zmeniť zaoblenie rohov obdĺžnika',
image_width: 'Zmeniť šírku obrázka',
image_height: 'Zmeniť výšku obrázka',
image_url: 'Zmeniť URL',
node_x: 'Zmeniť uzlu súradnicu X',
node_y: 'Zmeniť uzlu súradnicu Y',
seg_type: 'Zmeniť typ segmentu',
straight_segments: 'Rovný',
curve_segments: 'Krivka',
text_contents: 'Zmeniť text',
font_family: 'Zmeniť font',
font_size: 'Zmeniť veľkosť písma',
bold: 'Tučné',
italic: 'Kurzíva'
},
tools: {
main_menu: 'Hlavné menu',
bkgnd_color_opac: 'Zmeniť farbu a priehľadnosť pozadia',
connector_no_arrow: 'Spojnica bez šípok',
fitToContent: 'Prispôsobiť obsahu',
fit_to_all: 'Prisposobiť celému obsahu',
fit_to_canvas: 'Prispôsobiť stránke',
fit_to_layer_content: 'Prispôsobiť obsahu vrstvy',
fit_to_sel: 'Prispôsobiť výberu',
align_relative_to: 'Zarovnať relatívne k ...',
relativeTo: 'vzhľadom k:',
page: 'stránke',
largest_object: 'najväčšiemu objektu',
selected_objects: 'zvoleným objektom',
smallest_object: 'najmenšiemu objektu',
new_doc: 'Nový obrázok',
open_doc: 'Otvoriť obrázok',
export_img: 'Export',
save_doc: 'Uložiť obrázok',
import_doc: 'Import Image',
align_to_page: 'Zarovnať element na stránku',
align_bottom: 'Zarovnať dole',
align_center: 'Zarovnať na stred',
align_left: 'Zarovnať doľava',
align_middle: 'Zarovnať na stred',
align_right: 'Zarovnať doprava',
align_top: 'Zarovnať hore',
mode_select: 'Výber',
mode_fhpath: 'Ceruzka',
mode_line: 'Čiara',
mode_rect: 'Obdĺžnik',
mode_square: 'Štvorec',
mode_fhrect: 'Obdĺžnik voľnou rukou',
mode_ellipse: 'Elipsa',
mode_circle: 'Kružnica',
mode_fhellipse: 'Elipsa voľnou rukou',
mode_path: 'Krivka',
mode_text: 'Text',
mode_image: 'Obrázok',
mode_zoom: 'Priblíženie',
no_embed: 'POZNÁMKA: Tento obrázok nemôže byť vložený. Jeho zobrazenie bude závisieť na jeho ceste',
undo: 'Späť',
redo: 'Opakovať',
tool_source: 'Upraviť SVG kód',
wireframe_mode: 'Drôtový model',
clone: 'Klonuj element(y)',
del: 'Zmaž element(y)',
group_elements: 'Zoskupiť elementy',
make_link: 'Naviaž odkaz (hyper)link',
set_link_url: 'Nastav odkaz URL (ak prázdny, odstráni sa)',
to_path: 'Previesť na krivku',
reorient_path: 'Zmeniť orientáciu krivky',
ungroup: 'Zrušiť skupinu',
docprops: 'Vlastnosti dokumentu',
editor_homepage: 'SVG-Edit Home Page',
move_bottom: 'Presunúť spodok',
move_top: 'Presunúť na vrch',
node_clone: 'Klonovať uzol',
node_delete: 'Zmazať uzol',
node_link: 'Prepojiť kontrolné body',
add_subpath: 'Pridať ďalšiu súčasť krivky',
openclose_path: 'Otvoriť/uzatvoriť súčasť krivky',
source_save: 'Uložiť',
cut: 'Vystrihnutie',
copy: 'Kópia',
paste: 'Vloženie',
paste_in_place: 'Vloženie na pôvodnom mieste',
delete: 'Zmazanie',
group: 'Group',
move_front: 'Vysuň navrch',
move_up: 'Vysuň vpred',
move_down: 'Zasuň na spodok',
move_back: 'Zasuň dozadu'
},
layers: {
layer: 'Vrstva',
layers: 'Vrstvy',
del: 'Odstrániť vrstvu',
move_down: 'Presunúť vrstvu dole',
new: 'Nová vrstva',
rename: 'Premenovať vrstvu',
move_up: 'Presunúť vrstvu hore',
dupe: 'Zduplikovať vrstvu',
merge_down: 'Zlúčiť s vrstvou dole',
merge_all: 'Zlúčiť všetko',
move_elems_to: 'Presunúť elementy do:',
move_selected: 'Presunúť vybrané elementy do inej vrstvy'
},
config: {
image_props: 'Vlastnosti obrázka',
doc_title: 'Titulok',
doc_dims: 'Rozmery plátna',
included_images: 'Vložené obrázky',
image_opt_embed: 'Vložiť data (lokálne súbory)',
image_opt_ref: 'Použiť referenciu na súbor',
editor_prefs: 'Vlastnosti editora',
icon_size: 'Veľkosť ikon',
language: 'Jazyk',
background: 'Zmeniť pozadie',
editor_img_url: 'Image URL',
editor_bg_note: 'Poznámka: Pozadie nebude uložené spolu s obrázkom.',
icon_large: 'Veľká',
icon_medium: 'Stredná',
icon_small: 'Malá',
icon_xlarge: 'Extra veľká',
select_predefined: 'Vybrať preddefinovaný:',
units_and_rulers: 'Jednotky & Pravítka',
show_rulers: 'Ukáž pravítka',
base_unit: 'Základné jednotky:',
grid: 'Mriežka',
snapping_onoff: 'Priväzovanie (do mriežky) zap/vyp',
snapping_stepsize: 'Priväzovanie (do mriežky) veľkosť kroku:',
grid_color: 'Grid color'
},
notification: {
invalidAttrValGiven: 'Neplatná hodnota',
noContentToFitTo: 'Vyberte oblasť na prispôsobenie',
dupeLayerName: 'Vrstva s daným názvom už existuje!',
enterUniqueLayerName: 'Zadajte jedinečný názov vrstvy',
enterNewLayerName: 'Zadajte názov vrstvy',
layerHasThatName: 'Vrstva už má zadaný tento názov',
QmoveElemsToLayer: "Presunúť elementy do vrstvy '%s'?",
QwantToClear: 'Naozaj chcete vymazať kresbu?\n(História bude taktiež vymazaná!)!',
QwantToOpen: 'Chcete otvoriť nový súbor?\nTo však tiež vymaže Vašu UNDO knižnicu!',
QerrorsRevertToSource: 'Chyba pri načítaní SVG dokumentu.\nVrátiť povodný SVG dokument?',
QignoreSourceChanges: 'Ignorovať zmeny v SVG dokumente?',
featNotSupported: 'Vlastnosť nie je podporovaná',
enterNewImgURL: 'Zadajte nové URL obrázka',
defsFailOnSave: 'POZNÁMKA: Kvôli chybe v prehliadači sa tento obrázok môže zobraziť nesprávne (napr. chýbajúce prechody či elementy). Po uložení sa zobrazí správne.',
loadingImage: 'Nahrávam obrázok, prosím čakajte ...',
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: 'Môžu sa vyskytnúť nasledujúce problémy: ',
unsavedChanges: 'Sú tu neuložené zmeny.',
enterNewLinkURL: 'Zadajte nové URL odkazu (hyperlink)',
errorLoadingSVG: 'Chyba: Nedajú sa načítať SVG data',
URLLoadFail: 'Nemožno čítať z 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
};