From 65b452ef3f7ace412283a55faef03cae2a6ab78f Mon Sep 17 00:00:00 2001 From: SebastianMC Date: Mon, 26 Sep 2022 15:06:29 +0200 Subject: [PATCH] 14 - Disable notification option - finetune the description of the newly introduced setting --- src/main.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main.ts b/src/main.ts index cae4756..518215e 100644 --- a/src/main.ts +++ b/src/main.ts @@ -352,10 +352,10 @@ class CustomSortSettingTab extends PluginSettingTab { })); new Setting(containerEl) - .setName('Enable notifications of plugin states changes') + .setName('Enable notifications of plugin state changes') .setDesc('The plugin can show notifications about its state changes: e.g. when successfully parsed and applied' - + ' the custom sorting specification, or, when the parsing failed. If the notification are disabled,' - + ' the only source of plugin state is the ribbon button icon. The developer console presents the parsing' + + ' the custom sorting specification, or, when the parsing failed. If the notifications are disabled,' + + ' the only indicator of plugin state is the ribbon button icon. The developer console presents the parsing' + ' error messages regardless if the notifications are enabled or not.') .addToggle(toggle => toggle .setValue(this.plugin.settings.notificationsEnabled)