diff --git a/extensions/monitoring-extension/resources/settings.json b/extensions/monitoring-extension/resources/settings.json index 4e1d8d9d8..40b0b97f9 100644 --- a/extensions/monitoring-extension/resources/settings.json +++ b/extensions/monitoring-extension/resources/settings.json @@ -1,8 +1,8 @@ [ { "key": "log-enabled", - "title": "App Logging Enabled", - "description": "We recommend enabling this setting to help us improve the app. Your data will be kept private on your computer, and you can opt out at any time.", + "title": "Enable App Logs", + "description": "Saves app logs locally on your computer. This enables you to send us crash reports.", "controllerType": "checkbox", "controllerProps": { "value": true @@ -11,7 +11,7 @@ { "key": "log-cleaning-interval", "title": "Log Cleaning Interval", - "description": "Log cleaning interval in milliseconds.", + "description": "Automatically delete local logs after a certain time interval (in milliseconds).", "controllerType": "input", "controllerProps": { "value": "120000", @@ -19,4 +19,4 @@ "textAlign": "right" } } -] +] \ No newline at end of file diff --git a/web/screens/Settings/Advanced/DataFolder/index.tsx b/web/screens/Settings/Advanced/DataFolder/index.tsx index 1ce06979c..3bb059a87 100644 --- a/web/screens/Settings/Advanced/DataFolder/index.tsx +++ b/web/screens/Settings/Advanced/DataFolder/index.tsx @@ -94,8 +94,7 @@ const DataFolder = () => {
Jan Data Folder

- Where messages, model configurations, and other user data are - placed. + Default location for messages and other user data.

diff --git a/web/screens/Settings/Advanced/FactoryReset/index.tsx b/web/screens/Settings/Advanced/FactoryReset/index.tsx index faa0390cd..3bbce39ef 100644 --- a/web/screens/Settings/Advanced/FactoryReset/index.tsx +++ b/web/screens/Settings/Advanced/FactoryReset/index.tsx @@ -12,13 +12,14 @@ const FactoryReset = () => {
-
Reset to Factory Default
+
+ Reset to Factory Settings +

- Reset the application to its original state, deleting all your usage - data, including model customizations and conversation history. This - action is irreversible and recommended only if the application is in a - corrupted state. + Reset the application to its initial state, deleting all your usage + data, including conversation history. This action is irreversible and + recommended only if the application is in a corrupted state.

- Enable experimental features that may be untested and unstable. + Enable new features that may be unstable.

setReduceTransparent(false)} > - Transparency + Translucent @@ -94,12 +94,10 @@ export default function AppearanceOptions() {
-
Spell checking
+
Spell Check

- Disable if you prefer to type without spell checking interruptions - or if you are using non-standard language/terminology that the spell - checker may not recognize. + Toggle to disable spell checking.

diff --git a/web/screens/Settings/Hotkeys/index.tsx b/web/screens/Settings/Hotkeys/index.tsx index 382efad2e..aa79ae11e 100644 --- a/web/screens/Settings/Hotkeys/index.tsx +++ b/web/screens/Settings/Hotkeys/index.tsx @@ -9,17 +9,17 @@ const availableHotkeys = [ { combination: 'B', modifierKeys: [isMac ? '⌘' : 'Ctrl'], - description: 'Toggle collapsible left panel', + description: 'Toggle left panel', }, { combination: 'Shift B', modifierKeys: [isMac ? '⌘' : 'Ctrl'], - description: 'Toggle collapsible right panel', + description: 'Toggle right panel', }, { combination: ',', modifierKeys: [isMac ? '⌘' : 'Ctrl'], - description: 'Navigate to setting page', + description: 'Navigate to settings', }, { combination: 'Enter',