diff --git a/apps/client/src/translations/en/translation.json b/apps/client/src/translations/en/translation.json index 5c7f0d056..daa6776c4 100644 --- a/apps/client/src/translations/en/translation.json +++ b/apps/client/src/translations/en/translation.json @@ -1962,8 +1962,11 @@ "editorfeatures": { "title": "Features", "emoji_completion_enabled": "Enable Emoji auto-completion", + "emoji_completion_description": "If enabled, emojis can be easily inserted into text by typing `:`, followed by the name of an emoji.", "note_completion_enabled": "Enable note auto-completion", - "slash_commands_enabled": "Enable slash commands" + "note_completion_description": "If enabled, links to notes can be created by typing `@` followed by the title of a note.", + "slash_commands_enabled": "Enable slash commands", + "slash_commands_description": "If enabled, editing commands such as inserting line breaks or headings can be toggled by typing `/`." }, "table_view": { "new-row": "New row", diff --git a/apps/client/src/widgets/type_widgets/options/text_notes.tsx b/apps/client/src/widgets/type_widgets/options/text_notes.tsx index 500fbbd5f..5c8ed90af 100644 --- a/apps/client/src/widgets/type_widgets/options/text_notes.tsx +++ b/apps/client/src/widgets/type_widgets/options/text_notes.tsx @@ -71,20 +71,21 @@ function FormattingToolbar() { function EditorFeatures() { return ( - - - + + + ); } -function EditorFeature({ optionName, name, label }: { optionName: OptionNames, name: string, label: string }) { +function EditorFeature({ optionName, name, label, description }: { optionName: OptionNames, name: string, label: string, description: string }) { const [ featureEnabled, setFeatureEnabled ] = useTriliumOptionBool(optionName); return ( ); }