Update setting descriptions

This commit is contained in:
Lost Paul 2025-06-07 14:04:45 +02:00
parent 3d897a1135
commit 1d77169f54
3 changed files with 7 additions and 8 deletions

View file

@ -69,7 +69,6 @@ function observeFolderTitleMutations(plugin: FolderNotesPlugin) {
});
fileExplorerMutationObserver.observe(document, { childList: true, subtree: true });
}
function initializeAllFolderTitles(plugin: FolderNotesPlugin) {

View file

@ -154,7 +154,7 @@ export async function renderFileExplorer(settingsTab: SettingsTab) {
if (settingsTab.plugin.settings.hideCollapsingIcon) {
new Setting(containerEl)
.setName('Hide collapse icon also when the attachment folder is in the same folder')
.setName('Hide collapse icon also when only the attachment folder is in the same folder')
.addToggle((toggle) =>
toggle
.setValue(settingsTab.plugin.settings.ignoreAttachmentFolder)
@ -184,7 +184,7 @@ export async function renderFileExplorer(settingsTab: SettingsTab) {
new Setting(containerEl)
.setName('Bold the name of folder notes')
.setDesc('Make the folder name bold in the file explorer')
.setDesc('Make the folder name bold in the file explorer when it has a folder note')
.addToggle((toggle) =>
toggle
.setValue(settingsTab.plugin.settings.boldName)
@ -201,7 +201,7 @@ export async function renderFileExplorer(settingsTab: SettingsTab) {
new Setting(containerEl)
.setName('Cursive the name of folder notes')
.setDesc('Make the folder name cursive in the file explorer')
.setDesc('Make the folder name cursive in the file explorer when it has a folder note')
.addToggle((toggle) =>
toggle
.setValue(settingsTab.plugin.settings.cursiveName)

View file

@ -40,8 +40,8 @@ export async function renderPath(settingsTab: SettingsTab) {
);
new Setting(containerEl)
.setName('Change folder name in the path')
.setDesc('Automatically rename a folder name in the path above a note when the folder note is renamed')
.setName('Auto update folder name in the path (front matter title plugin only)')
.setDesc('Automatically update the folder name in the path when the front matter title plugin is enabled and the title for a folder note is changed in the front matter. This will not change the file name, only the displayed name in the path.')
.addToggle((toggle) =>
toggle
.setValue(settingsTab.plugin.settings.frontMatterTitle.path)
@ -77,7 +77,7 @@ export async function renderPath(settingsTab: SettingsTab) {
new Setting(containerEl)
.setName('Bold folders in the path')
.setDesc('Make the folder name bold in the path above a note')
.setDesc('Make the folder name bold in the path above a note when it has a folder note')
.addToggle((toggle) =>
toggle
.setValue(settingsTab.plugin.settings.boldNameInPath)
@ -94,7 +94,7 @@ export async function renderPath(settingsTab: SettingsTab) {
new Setting(containerEl)
.setName('Cursive the name of folder notes in the path')
.setDesc('Make the folder name cursive in the path above a note')
.setDesc('Make the folder name cursive in the path above a note when it has a folder note')
.addToggle((toggle) =>
toggle
.setValue(settingsTab.plugin.settings.cursiveNameInPath)