feat(options/other): improve descriptions

This commit is contained in:
Elian Doran
2026-04-13 17:52:54 +03:00
parent 266f542028
commit 3ce508c5ee
2 changed files with 4 additions and 2 deletions

View File

@@ -1360,7 +1360,7 @@
},
"search_engine": {
"title": "Search Engine",
"custom_search_engine_info": "If either the name or URL is not set, DuckDuckGo will be used as the default.",
"custom_search_engine_info": "Used when searching the web for selected text. If not configured, DuckDuckGo will be used.",
"predefined_templates_label": "Predefined templates",
"bing": "Bing",
"baidu": "Baidu",
@@ -1375,7 +1375,8 @@
},
"tray": {
"title": "System Tray",
"enable_tray": "Enable tray (Trilium needs to be restarted for this change to take effect)"
"enable_tray": "Tray icon",
"enable_tray_description": "Trilium needs to be restarted for this change to take effect."
},
"text_editor": {
"title": "Editor"

View File

@@ -115,6 +115,7 @@ function TrayOptionsSettings() {
<OptionsRowWithToggle
name="tray-enabled"
label={t("tray.enable_tray")}
description={t("tray.enable_tray_description")}
currentValue={!disableTray}
onChange={trayEnabled => setDisableTray(!trayEnabled)}
/>