Skip to content

Commit b97ae4b

Browse files
committed
docs(gui): align microcopy – concise headings and descriptions; insert-after microcopy clarified; consistent 'Open the captured file' phrasing
1 parent f0b630f commit b97ae4b

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

src/gui/ChoiceBuilder/captureChoiceBuilder.ts

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export class CaptureChoiceBuilder extends ChoiceBuilder {
6868
// Behavior
6969
new Setting(this.contentEl).setName("Behavior").setHeading();
7070
if (!this.choice.captureToActiveFile) {
71-
this.addOpenFileSetting("Open the file that is captured to.");
71+
this.addOpenFileSetting("Open the captured file.");
7272

7373
if (this.choice.openFile) {
7474
this.addFileOpeningSetting("captured");
@@ -186,9 +186,7 @@ export class CaptureChoiceBuilder extends ChoiceBuilder {
186186
const appendLinkSetting: Setting = new Setting(this.contentEl);
187187
appendLinkSetting
188188
.setName("Append link to note")
189-
.setDesc(
190-
"Add a link on your current cursor position, linking to the file you're capturing to.",
191-
)
189+
.setDesc("Insert a link in the current note to the captured file.")
192190
.addToggle((toggle) => {
193191
toggle.setValue(normalizedOptions.enabled);
194192
toggle.onChange((value) => {
@@ -325,7 +323,7 @@ export class CaptureChoiceBuilder extends ChoiceBuilder {
325323
insertAtEndSetting
326324
.setName("Insert at end of section")
327325
.setDesc(
328-
"Insert the text at the end of the section, rather than at the top.",
326+
"Place the text at the end of the matched section instead of the top.",
329327
)
330328
.addToggle((toggle) =>
331329
toggle
@@ -336,7 +334,7 @@ export class CaptureChoiceBuilder extends ChoiceBuilder {
336334
new Setting(this.contentEl)
337335
.setName("Consider subsections")
338336
.setDesc(
339-
"Enabling this will insert the text at the end of the section & its subsections, rather than just at the end of the target section. A section is defined by a heading, and its subsections are all the headings inside that section.",
337+
"Also include the section’s subsections (requires the target to be a heading).",
340338
)
341339
.addToggle((toggle) =>
342340
toggle

0 commit comments

Comments
 (0)