Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated wording #341

Merged
merged 4 commits into from
Sep 17, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Added pearAI online services
  • Loading branch information
Nathan A committed Sep 17, 2024
commit 82ce97434da91f4256968acc72f1cc77ad4b7f00
6 changes: 3 additions & 3 deletions src/vs/platform/update/common/update.config.contribution.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ configurationRegistry.registerConfiguration({
enum: ['none', 'manual', 'start', 'default'],
default: 'default',
scope: ConfigurationScope.APPLICATION,
description: localize('updateMode', "Configure whether you receive automatic updates. Requires a restart after change. The updates are fetched from a PearAI online service."),
description: localize('updateMode', "Configure whether you receive automatic updates. Requires a restart after change. The updates are fetched from PearAI servers."),
tags: ['usesOnlineServices'],
enumDescriptions: [
localize('none', "Disable updates."),
Expand All @@ -37,7 +37,7 @@ configurationRegistry.registerConfiguration({
type: 'string',
default: 'default',
scope: ConfigurationScope.APPLICATION,
description: localize('updateMode', "Configure whether you receive automatic updates. Requires a restart after change. The updates are fetched from a PearAI online service."),
description: localize('updateMode', "Configure whether you receive automatic updates. Requires a restart after change. The updates are fetched from PearAI servers."),
deprecationMessage: localize('deprecated', "This setting is deprecated, please use '{0}' instead.", 'update.mode')
},
'update.enableWindowsBackgroundUpdates': {
Expand All @@ -52,7 +52,7 @@ configurationRegistry.registerConfiguration({
type: 'boolean',
default: true,
scope: ConfigurationScope.APPLICATION,
description: localize('showReleaseNotes', "Show Release Notes after an update. The Release Notes are fetched from a PearAI online service."),
description: localize('showReleaseNotes', "Show Release Notes after an update. The Release Notes are fetched from PearAI servers."),
tags: ['usesOnlineServices']
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,14 +141,14 @@ Registry.as<IConfigurationRegistry>(ConfigurationExtensions.Configuration)
localize('extensions.autoUpdate.selected', 'Download and install updates automatically only for selected extensions.'),
localize('extensions.autoUpdate.false', 'Extensions are not automatically updated.'),
],
description: localize('extensions.autoUpdate', "Controls the automatic update behavior of extensions. The updates are fetched from a PearAI online service."),
description: localize('extensions.autoUpdate', "Controls the automatic update behavior of extensions. The updates are fetched from PearAI servers."),
default: true,
scope: ConfigurationScope.APPLICATION,
tags: ['usesOnlineServices']
},
'extensions.autoCheckUpdates': {
type: 'boolean',
description: localize('extensionsCheckUpdates', "When enabled, automatically checks extensions for updates. If an extension has an update, it is marked as outdated in the Extensions view. The updates are fetched from a PearAI online service."),
description: localize('extensionsCheckUpdates', "When enabled, automatically checks extensions for updates. If an extension has an update, it is marked as outdated in the Extensions view. The updates are fetched from PearAI servers."),
default: true,
scope: ConfigurationScope.APPLICATION,
tags: ['usesOnlineServices']
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ registry.registerConfiguration({
'properties': {
'workbench.settings.enableNaturalLanguageSearch': {
'type': 'boolean',
'description': nls.localize('enableNaturalLanguageSettingsSearch', "Controls whether to enable the natural language search mode for settings. The natural language search is provided by a PearAI online service."),
'description': nls.localize('enableNaturalLanguageSettingsSearch', "Controls whether to enable the natural language search mode for settings. The natural language search is provided by PearAI servers."),
'default': true,
'scope': ConfigurationScope.WINDOW,
'tags': ['usesOnlineServices']
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ registry.registerConfiguration({
'properties': {
'workbench.enableExperiments': {
'type': 'boolean',
'description': localize('workbench.enableExperiments', "Fetches experiments to run from a PearAI online service."),
'description': localize('workbench.enableExperiments', "Fetches experiments to run from PearAI servers."),
'default': true,
'scope': ConfigurationScope.APPLICATION,
'restricted': true,
Expand Down
Loading