i18n(client): two missing translations for dialogs

This commit is contained in:
Elian Doran 2025-11-27 21:41:24 +02:00
parent b5959c55e1
commit 2024c72209
No known key found for this signature in database
3 changed files with 7 additions and 4 deletions

View File

@ -1727,7 +1727,8 @@
"refresh-saved-search-results": "Refresh saved search results", "refresh-saved-search-results": "Refresh saved search results",
"create-child-note": "Create child note", "create-child-note": "Create child note",
"unhoist": "Unhoist", "unhoist": "Unhoist",
"toggle-sidebar": "Toggle sidebar" "toggle-sidebar": "Toggle sidebar",
"dropping-not-allowed": "Dropping notes into this location is not allowed."
}, },
"title_bar_buttons": { "title_bar_buttons": {
"window-on-top": "Keep Window on Top" "window-on-top": "Keep Window on Top"
@ -1830,7 +1831,8 @@
"duplicate-launcher": "Duplicate launcher <kbd data-command=\"duplicateSubtree\">" "duplicate-launcher": "Duplicate launcher <kbd data-command=\"duplicateSubtree\">"
}, },
"editable-text": { "editable-text": {
"auto-detect-language": "Auto-detected" "auto-detect-language": "Auto-detected",
"keeps-crashing": "Editing component keeps crashing. Please try restarting Trilium. If problem persists, consider creating a bug report."
}, },
"highlighting": { "highlighting": {
"title": "Code Blocks", "title": "Code Blocks",

View File

@ -508,7 +508,7 @@ export default class NoteTreeWidget extends NoteContextAwareWidget {
(data.hitMode === "over" && node.data.noteType === "search") || (data.hitMode === "over" && node.data.noteType === "search") ||
(["after", "before"].includes(data.hitMode) && (node.data.noteId === hoistedNoteService.getHoistedNoteId() || node.getParent().data.noteType === "search")) (["after", "before"].includes(data.hitMode) && (node.data.noteId === hoistedNoteService.getHoistedNoteId() || node.getParent().data.noteType === "search"))
) { ) {
await dialogService.info("Dropping notes into this location is not allowed."); await dialogService.info(t("note_tree.dropping-not-allowed"));
return; return;
} }

View File

@ -17,6 +17,7 @@ import TouchBar, { TouchBarButton, TouchBarGroup, TouchBarSegmentedControl } fro
import { RefObject } from "preact"; import { RefObject } from "preact";
import { buildSelectedBackgroundColor } from "../../../components/touch_bar"; import { buildSelectedBackgroundColor } from "../../../components/touch_bar";
import { deferred } from "@triliumnext/commons"; import { deferred } from "@triliumnext/commons";
import { t } from "../../../services/i18n";
/** /**
* The editor can operate into two distinct modes: * The editor can operate into two distinct modes:
@ -279,7 +280,7 @@ function onWatchdogStateChange(watchdog: EditorWatchdog) {
logError(`CKEditor crash logs: ${JSON.stringify(watchdog.crashes, null, 4)}`); logError(`CKEditor crash logs: ${JSON.stringify(watchdog.crashes, null, 4)}`);
if (currentState === "crashedPermanently") { if (currentState === "crashedPermanently") {
dialog.info(`Editing component keeps crashing. Please try restarting Trilium. If problem persists, consider creating a bug report.`); dialog.info(t("editable-text.keeps-crashing"));
watchdog.editor?.enableReadOnlyMode("crashed-editor"); watchdog.editor?.enableReadOnlyMode("crashed-editor");
} }
} }