mirror of
https://github.com/zadam/trilium.git
synced 2025-11-17 14:04:30 +01:00
chore: handle requested changes
This commit is contained in:
parent
5281e8e5b4
commit
17298edfcc
@ -136,7 +136,7 @@ function MindElixir({ containerRef: externalContainerRef, containerProps, apiRef
|
|||||||
|
|
||||||
const mind = new VanillaMindElixir({
|
const mind = new VanillaMindElixir({
|
||||||
el: containerRef.current,
|
el: containerRef.current,
|
||||||
locale: LOCALE_MAPPINGS[locale],
|
locale: LOCALE_MAPPINGS[locale as DISPLAYABLE_LOCALE_IDS] ?? undefined,
|
||||||
editable
|
editable
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@ -10,6 +10,7 @@ import { NonDeletedExcalidrawElement } from "@excalidraw/excalidraw/element/type
|
|||||||
import { goToLinkExt } from "../../../services/link";
|
import { goToLinkExt } from "../../../services/link";
|
||||||
import useCanvasPersistence from "./persistence";
|
import useCanvasPersistence from "./persistence";
|
||||||
import { LANGUAGE_MAPPINGS } from "./i18n";
|
import { LANGUAGE_MAPPINGS } from "./i18n";
|
||||||
|
import { DISPLAYABLE_LOCALE_IDS } from "@triliumnext/commons";
|
||||||
|
|
||||||
// currently required by excalidraw, in order to allows self-hosting fonts locally.
|
// currently required by excalidraw, in order to allows self-hosting fonts locally.
|
||||||
// this avoids making excalidraw load the fonts from an external CDN.
|
// this avoids making excalidraw load the fonts from an external CDN.
|
||||||
@ -60,7 +61,7 @@ export default function Canvas({ note, noteContext }: TypeWidgetProps) {
|
|||||||
detectScroll={false}
|
detectScroll={false}
|
||||||
handleKeyboardGlobally={false}
|
handleKeyboardGlobally={false}
|
||||||
autoFocus={false}
|
autoFocus={false}
|
||||||
langCode={LANGUAGE_MAPPINGS[locale]}
|
langCode={LANGUAGE_MAPPINGS[locale as DISPLAYABLE_LOCALE_IDS] ?? undefined}
|
||||||
UIOptions={{
|
UIOptions={{
|
||||||
canvasActions: {
|
canvasActions: {
|
||||||
saveToActiveFile: false,
|
saveToActiveFile: false,
|
||||||
|
|||||||
@ -15,7 +15,7 @@ One important aspect is the fact that we are using a key-based approach. This me
|
|||||||
|
|
||||||
The key-based approach allows a hierarchical structure. For example, a key of `about.title` would be added in `translation.json` as follows:
|
The key-based approach allows a hierarchical structure. For example, a key of `about.title` would be added in `translation.json` as follows:
|
||||||
|
|
||||||
```
|
```json
|
||||||
{
|
{
|
||||||
"about": {
|
"about": {
|
||||||
"title": "About Trilium Notes"
|
"title": "About Trilium Notes"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user