You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -69,21 +69,21 @@ export class SettingsView extends ObsidianSettingsTab {
69
69
}));
70
70
71
71
context.createSectionDivider();
72
-
context.createSectionHeader('Transformation Rules','Define a set of rules that transform items (files and folders) in the file explorer.\n\nRules are checked in the order they are defined. The first rule that matches an item will be applied.\nIf an item has an explicit transformation set, rules are disabled for that item.');
72
+
context.createSectionHeader('Transformation rules','Define a set of rules that transform items (files and folders) in the file explorer.\n\nRules are checked in the order they are defined. The first rule that matches an item will be applied.\nIf an item has an explicit transformation set, rules are disabled for that item.');
73
73
74
74
context.createSetting()
75
75
.setHeading()
76
76
.setName('Rules')
77
77
.addButton(button=>button
78
78
.setCta()
79
-
.setButtonText('Reset to Defaults')
79
+
.setButtonText('Reset to defaults')
80
80
.onClick(async()=>
81
81
{
82
82
awaitPluginSettings.resetMatchingRules();
83
83
context.applySettings();
84
84
}))
85
85
.addButton(button=>button
86
-
.setButtonText('Add Rule')
86
+
.setButtonText('Add rule')
87
87
.onClick(async()=>
88
88
{
89
89
construle=RulesHelper.createRule();
@@ -103,7 +103,7 @@ export class SettingsView extends ObsidianSettingsTab {
103
103
104
104
105
105
context.createSectionDivider();
106
-
context.createSectionHeader('Explicit Transformations','Items with explicit transformation configuration. To add an item, right click it in the file explorer and select "Set Treefocus".');
106
+
context.createSectionHeader('Explicit transformations','Items with explicit transformation configuration. To add an item, right click it in the file explorer and select an option below "TreeFocus".');
@@ -119,7 +119,7 @@ export class SettingsView extends ObsidianSettingsTab {
119
119
120
120
121
121
context.createSectionDivider();
122
-
context.createSectionHeader('Support This Plugin','If you like this plugin and want to support it - submit a feature request, a pull request or simply buy me a little coffee :) - Thank You.');
122
+
context.createSectionHeader('Support this plugin','If you like this plugin and want to support it - submit a feature request, a pull request or simply buy me a little coffee :) - Thank You.');
0 commit comments