From a377a0ef1577b88fff5e5ac4c365d2870445d0f8 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Wed, 8 Oct 2025 22:24:05 +0300 Subject: [PATCH] chore(i18n): translate a missing string --- apps/client/src/translations/en/translation.json | 1 + apps/client/src/widgets/mobile_widgets/mobile_detail_menu.tsx | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/client/src/translations/en/translation.json b/apps/client/src/translations/en/translation.json index c6565fdfc..49090efa7 100644 --- a/apps/client/src/translations/en/translation.json +++ b/apps/client/src/translations/en/translation.json @@ -736,6 +736,7 @@ "mobile_detail_menu": { "insert_child_note": "Insert child note", "delete_this_note": "Delete this note", + "note_revisions": "Note revisions", "error_cannot_get_branch_id": "Cannot get branchId for notePath '{{notePath}}'", "error_unrecognized_command": "Unrecognized command {{command}}" }, diff --git a/apps/client/src/widgets/mobile_widgets/mobile_detail_menu.tsx b/apps/client/src/widgets/mobile_widgets/mobile_detail_menu.tsx index a9e88246e..255ac8c99 100644 --- a/apps/client/src/widgets/mobile_widgets/mobile_detail_menu.tsx +++ b/apps/client/src/widgets/mobile_widgets/mobile_detail_menu.tsx @@ -25,7 +25,7 @@ export default function MobileDetailMenu() { { title: t("mobile_detail_menu.insert_child_note"), command: "insertChildNote", uiIcon: "bx bx-plus", enabled: note?.type !== "search" }, { title: t("mobile_detail_menu.delete_this_note"), command: "delete", uiIcon: "bx bx-trash", enabled: note?.noteId !== "root" }, { kind: "separator" }, - { title: "Note revisions", command: "showRevisions", uiIcon: "bx bx-history" } + { title: t("mobile_detail_menu.note_revisions"), command: "showRevisions", uiIcon: "bx bx-history" } ], selectMenuItemHandler: async ({ command }) => { if (command === "insertChildNote") {