diff --git a/src/public/app/widgets/note_tree.js b/src/public/app/widgets/note_tree.js
index 0869a03f6..1c043ca0d 100644
--- a/src/public/app/widgets/note_tree.js
+++ b/src/public/app/widgets/note_tree.js
@@ -18,6 +18,7 @@ import options from "../services/options.js";
import protectedSessionHolder from "../services/protected_session_holder.js";
import dialogService from "../services/dialog.js";
import shortcutService from "../services/shortcuts.js";
+import { t } from "../services/i18n.js";
const TPL = `
@@ -99,15 +100,15 @@ const TPL = `
+ title="${t("note_tree.tree-settings-title")}">
@@ -116,22 +117,22 @@ const TPL = `
-
+
`;
diff --git a/src/public/translations/en/translation.json b/src/public/translations/en/translation.json
index e778b71d3..3788ec532 100644
--- a/src/public/translations/en/translation.json
+++ b/src/public/translations/en/translation.json
@@ -1356,5 +1356,14 @@
"no-results": "No results found",
"more-results": "... and {{number}} more results.",
"show-in-full-search": "Show in full search"
+ },
+ "note_tree": {
+ "collapse-title": "Collapse note tree",
+ "scroll-active-title": "Scroll to active note",
+ "tree-settings-title": "Tree settings",
+ "hide-archived-notes": "Hide archived notes",
+ "automatically-collapse-notes": "Automatically collapse notes",
+ "automatically-collapse-notes-title": "Notes will be collapsed after period of inactivity to declutter the tree.",
+ "save-changes": "Save & apply changes"
}
}