svgedit/editor/locale/lang.pt-BR.js

218 lines
8.4 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: 'pt-BR',
dir: 'ltr',
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: 'Cancelar',
key_backspace: 'Tecla backspace',
key_del: 'Tecla delete',
key_down: 'Seta para baixo',
key_up: 'Seta para cima',
more_opts: 'Mais opções',
url: 'URL',
width: 'Largura',
height: 'Altura'
},
misc: {
powered_by: 'Tecnologia'
},
ui: {
toggle_stroke_tools: 'Mais opções de traço',
palette_info: 'Click para mudar a cor de preenchimento, shift-click para mudar a cor do traço',
zoom_level: 'Mudar zoom',
panel_drag: 'Arraste para redimensionar o painel',
(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: 'Identifica o elemento',
fill_color: 'Mudar a cor de preenchimento',
stroke_color: 'Mudar a cor do traço',
stroke_style: 'Mudar o estilo do traço',
stroke_width: 'Mudar a espessura do traço em 1, shift-click para mudar 0.1',
pos_x: 'Mudar a coordenada X',
pos_y: 'Mudar a coordenada Y',
linecap_butt: 'Estilo do fim do traço: Topo',
linecap_round: 'Estilo do fim do traço: Redondo',
linecap_square: 'Estilo do fim do traço: Quadrado',
linejoin_bevel: 'Estilo da Aresta: Chanfro',
linejoin_miter: 'Estilo da Aresta: Reto',
linejoin_round: 'Estilo da Aresta: Redondo',
angle: 'Mudar ângulo de rotação',
blur: 'Mudar valor de desfoque',
opacity: 'Mudar opacidade do item selecionado',
circle_cx: 'Mudar a coordenada cx do círculo',
circle_cy: 'Mudar a coordenada cy do círculo',
circle_r: 'Mudar o raio do círculo',
ellipse_cx: 'Mudar a coordenada cx da elípse',
ellipse_cy: 'Mudar a coordenada cy da elípse',
ellipse_rx: 'Mudar o raio x da elípse',
ellipse_ry: 'Mudar o raio y da elípse',
line_x1: 'Mudar a coordenada x do início da linha',
line_x2: 'Mudar a coordenada x do fim da linha',
line_y1: 'Mudar a coordenada y do início da linha',
line_y2: 'Mudar a coordenada y do fim da linha',
rect_height: 'Mudar a altura do retângulo',
rect_width: 'Mudar a largura do retângulo',
corner_radius: 'Mudar o raio da aresta do retângulo',
image_width: 'Mudar a largura da imagem',
image_height: 'Mudar a altura da imagem',
image_url: 'Mudar URL',
node_x: 'Mudar a coordenada x da aresta',
node_y: 'Mudar a coordenada y da aresta',
seg_type: 'Mudar o tipo de segmento',
straight_segments: 'Reto',
curve_segments: 'Curvo',
text_contents: 'Mudar conteúdo do texto',
font_family: 'Mudar o estilo da fonte',
font_size: 'Mudar o tamanho da fonte',
bold: 'Negrito',
italic: 'Italico'
},
tools: {
main_menu: 'Menu Principal',
bkgnd_color_opac: 'Mudar cor/opacidade do fundo',
connector_no_arrow: 'Sem flecha',
fitToContent: 'Ajustar ao conteúdo',
fit_to_all: 'Ajustar a todo conteúdo',
fit_to_canvas: 'Ajustar à tela',
fit_to_layer_content: 'Ajustar ao conteúdo da camada',
fit_to_sel: 'Ajustar à seleção',
align_relative_to: 'Alinhar em relação à ...',
relativeTo: 'Referência:',
page: 'página',
largest_object: 'maior objeto',
selected_objects: 'objetos selecionados',
smallest_object: 'menor objeto',
new_doc: 'Nova imagem',
open_doc: 'Abrir imagem',
export_img: 'Export',
save_doc: 'Salvar imagem',
import_doc: 'Importar SVG',
align_to_page: 'Alinhar elemento na página',
align_bottom: 'Alinhar no fundo',
align_center: 'Alinhar no centro',
align_left: 'Alinhar na esquerda',
align_middle: 'Alinhar no meio',
align_right: 'Alinhar na direita',
align_top: 'Alinhar no topo',
mode_select: 'Selecão',
mode_fhpath: 'Lápis',
mode_line: 'Linha',
mode_rect: 'Retângulo',
mode_square: 'Quadrado',
mode_fhrect: 'Retângulo a mão-livre',
mode_ellipse: 'Elípse',
mode_circle: 'Círculo',
mode_fhellipse: 'Elípse a mão-livre',
mode_path: 'Contorno',
mode_text: 'Texto',
mode_image: 'Imagem',
mode_zoom: 'Zoom',
no_embed: 'Atenção: Esta imagem não pode ser incorporada e dependerá de seu caminho para ser exibida',
undo: 'Desfazer',
redo: 'Refazer',
tool_source: 'Editar o código',
wireframe_mode: 'Modo linhas',
clone: 'Clonar Elemento(s)',
del: 'Deletar Elemento(s)',
group_elements: 'Agrupar Elementos',
make_link: 'Criar (hyper)link',
set_link_url: 'Alterar URL (em branco para remover)',
to_path: 'Converter para Contorno',
reorient_path: 'Reorientar contorno',
ungroup: 'Desagrupar Elementos',
docprops: 'Propriedades',
editor_homepage: 'SVG-Edit Home Page',
move_bottom: 'Mover para o fundo',
move_top: 'Mover para o topo',
node_clone: 'Clonar Aresta',
node_delete: 'Deletar Aresta',
node_link: 'Alinhar pontos de controle',
add_subpath: 'Adicionar contorno',
openclose_path: 'Abrir/Fechar contorno',
source_save: 'Salvar',
cut: 'Recortar',
copy: 'Copiar',
paste: 'Colar',
paste_in_place: 'Colar no mesmo local',
delete: 'Deletar',
group: 'Agrupar',
move_front: 'Trazer para Frente',
move_up: 'Avançar',
move_down: 'Recuar',
move_back: 'Enviar para Trás'
},
layers: {
layer: 'Camada',
layers: 'Camadas',
del: 'Deletar Camada',
move_down: 'Enviar Camada para Trás',
new: 'Nova Camada',
rename: 'Renomear Camada',
move_up: 'Trazer Camada para Frente',
dupe: 'Duplicar Camada',
merge_down: 'Achatar para baixo',
merge_all: 'Achatar todas',
move_elems_to: 'Mover elementos para:',
move_selected: 'Mover elementos selecionados para outra camada'
},
config: {
image_props: 'Propriedades',
doc_title: 'Título',
doc_dims: 'Dimensões',
included_images: 'Imagens',
image_opt_embed: 'Incorporadas (arquivos locais)',
image_opt_ref: 'Usar referência',
editor_prefs: 'Preferências',
icon_size: 'Tamanho dos ícones',
language: 'Idioma',
background: 'Fundo da página',
editor_img_url: 'URL da Imagem',
editor_bg_note: 'Atenção: Fundo da página não será salvo.',
icon_large: 'Grande',
icon_medium: 'Médio',
icon_small: 'Pequeno',
icon_xlarge: 'Extra Grande',
select_predefined: 'Modelos:',
units_and_rulers: 'Unidade & Réguas',
show_rulers: 'Mostrar réguas',
base_unit: 'Unidade base:',
grid: 'Grade',
snapping_onoff: 'Snap on/off',
snapping_stepsize: 'Intensidade do Snap:'
},
notification: {
invalidAttrValGiven: 'Valor inválido',
noContentToFitTo: 'Não há conteúdo',
dupeLayerName: 'Nome duplicado',
enterUniqueLayerName: 'Insira um nome único',
enterNewLayerName: 'Insira um novo nome',
layerHasThatName: 'A camada já pussui este nome',
QmoveElemsToLayer: 'Mover elementos selecionados para a camada: \'%s\'?',
QwantToClear: 'Deseja criar um novo arquivo?\nO histórico também será apagado!',
QwantToOpen: 'Deseja abrir um novo arquivo?\nO histórico também será apagado!',
QerrorsRevertToSource: 'Foram encontrados erros ná análise do código SVG.\nReverter para o código SVG original?',
QignoreSourceChanges: 'Ignorar as mudanças no código SVG?',
featNotSupported: 'Recurso não suportado',
enterNewImgURL: 'Insira nova URL da imagem',
defsFailOnSave: 'Atenção: Devido a um bug em seu navegador, esta imagem pode apresentar erros, porém será salva corretamente.',
loadingImage: 'Carregando imagem, por favor aguarde...',
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: 'Atenção para as seguintes questões: ',
unsavedChanges: 'Existem alterações não salvas.',
enterNewLinkURL: 'Insira novo URL do hyperlink',
errorLoadingSVG: 'Erro: Impossível carregar dados SVG',
URLLoadFail: 'Impossível carregar deste 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
};