mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-02 06:21:50 +01:00
Fix a spell in markdown security settings
This commit is contained in:
@@ -93,7 +93,7 @@ export class PreviewSecuritySelector {
|
||||
level: MarkdownPreviewSecurityLevel.Strict,
|
||||
label: localize(
|
||||
'preview.showPreviewSecuritySelector.strictTitle',
|
||||
'Strict. Only load secure content.'),
|
||||
'Strict. Only load secure content'),
|
||||
description: '',
|
||||
detail: currentSecurityLevel === MarkdownPreviewSecurityLevel.Strict
|
||||
? localize('preview.showPreviewSecuritySelector.currentSelection', 'Current setting')
|
||||
@@ -102,7 +102,7 @@ export class PreviewSecuritySelector {
|
||||
level: MarkdownPreviewSecurityLevel.AllowInsecureContent,
|
||||
label: localize(
|
||||
'preview.showPreviewSecuritySelector.insecureContentTitle',
|
||||
'Allow loading content over http.'),
|
||||
'Allow loading content over http'),
|
||||
description: '',
|
||||
detail: currentSecurityLevel === MarkdownPreviewSecurityLevel.AllowInsecureContent
|
||||
? localize('preview.showPreviewSecuritySelector.currentSelection', 'Current setting')
|
||||
@@ -111,7 +111,7 @@ export class PreviewSecuritySelector {
|
||||
level: MarkdownPreviewSecurityLevel.AllowScriptsAndAllContent,
|
||||
label: localize(
|
||||
'preview.showPreviewSecuritySelector.scriptsAndAllContent',
|
||||
'Allow all content and script execution. Not recommend.'),
|
||||
'Allow all content and script execution. Not recommended'),
|
||||
description: '',
|
||||
detail: currentSecurityLevel === MarkdownPreviewSecurityLevel.AllowScriptsAndAllContent
|
||||
? localize('preview.showPreviewSecuritySelector.currentSelection', 'Current setting')
|
||||
|
||||
Reference in New Issue
Block a user