From b917e42694ee2a297b78e421bff9b7891ea94711 Mon Sep 17 00:00:00 2001 From: Lipis Date: Sun, 20 Dec 2020 14:40:11 +0200 Subject: [PATCH] fix: Consistent case for export locale strings (#2622) --- src/locales/en.json | 2 +- src/packages/excalidraw/CHANGELOG.MD | 1 + tsconfig.json | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/locales/en.json b/src/locales/en.json index 22a21182..70819cdd 100644 --- a/src/locales/en.json +++ b/src/locales/en.json @@ -37,7 +37,7 @@ "fontSize": "Font size", "fontFamily": "Font family", "onlySelected": "Only selected", - "withBackground": "With Background", + "withBackground": "With background", "exportEmbedScene": "Embed scene into exported file", "exportEmbedScene_details": "Scene data will be saved into the exported PNG/SVG file so that the scene can be restored from it.\nWill increase exported file size.", "addWatermark": "Add \"Made with Excalidraw\"", diff --git a/src/packages/excalidraw/CHANGELOG.MD b/src/packages/excalidraw/CHANGELOG.MD index 2c846557..5cf522bf 100644 --- a/src/packages/excalidraw/CHANGELOG.MD +++ b/src/packages/excalidraw/CHANGELOG.MD @@ -25,6 +25,7 @@ Please add the latest change on the top under the correct section. - Support CSV graphs and improve the look and feel [#2495](https://github.com/excalidraw/excalidraw/pull/2495) ### Fixes +- Consistent case for export locale strings [#2622](https://github.com/excalidraw/excalidraw/pull/2622) - Remove unnecessary console.error as it was polluting Sentry [#2637](https://github.com/excalidraw/excalidraw/pull/2637) - Fix scroll-to-center on init for non-zero canvas offsets [#2445](https://github.com/excalidraw/excalidraw/pull/2445) - Hide collab button when onCollabButtonClick not supplied [#2598](https://github.com/excalidraw/excalidraw/pull/2598) diff --git a/tsconfig.json b/tsconfig.json index a3f9e906..e8d60c05 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -14,7 +14,7 @@ "resolveJsonModule": true, "isolatedModules": true, "noEmit": true, - "jsx": "react" + "jsx": "react-jsx" }, "include": ["src"] }