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
The syntax backtick hash str hash backtick was getting mangled.... but it probably should be extracted out so translators don't have the potential for changing it.
markdownDescription: nls.localize({key: 'preferredDarkColorTheme',comment: ['`#{0}#` will become a link to an other setting. Do not remove backtick or #']},'Specifies the preferred color theme for dark OS appearance when `#{0}#` is enabled.',ThemeSettings.DETECT_COLOR_SCHEME),
41
+
markdownDescription: nls.localize({key: 'preferredDarkColorTheme',comment: ['{0} will become a link to another setting.']},'Specifies the preferred color theme for dark OS appearance when {0} is enabled.',formatSettingAsLink(ThemeSettings.DETECT_COLOR_SCHEME)),
markdownDescription: nls.localize({key: 'preferredLightColorTheme',comment: ['`#{0}#` will become a link to an other setting. Do not remove backtick or #']},'Specifies the preferred color theme for light OS appearance when `#{0}#` is enabled.',ThemeSettings.DETECT_COLOR_SCHEME),
50
+
markdownDescription: nls.localize({key: 'preferredLightColorTheme',comment: ['{0} will become a link to another setting.']},'Specifies the preferred color theme for light OS appearance when {0} is enabled.',formatSettingAsLink(ThemeSettings.DETECT_COLOR_SCHEME)),
markdownDescription: nls.localize({key: 'preferredHCDarkColorTheme',comment: ['`#{0}#` will become a link to an other setting. Do not remove backtick or #']},'Specifies the preferred color theme used in high contrast dark mode when `#{0}#` is enabled.',ThemeSettings.DETECT_HC),
59
+
markdownDescription: nls.localize({key: 'preferredHCDarkColorTheme',comment: ['{0} will become a link to another setting.']},'Specifies the preferred color theme used in high contrast dark mode when {0} is enabled.',formatSettingAsLink(ThemeSettings.DETECT_HC)),
markdownDescription: nls.localize({key: 'preferredHCLightColorTheme',comment: ['`#{0}#` will become a link to an other setting. Do not remove backtick or #']},'Specifies the preferred color theme used in high contrast light mode when `#{0}#` is enabled.',ThemeSettings.DETECT_HC),
68
+
markdownDescription: nls.localize({key: 'preferredHCLightColorTheme',comment: ['{0} will become a link to another setting.']},'Specifies the preferred color theme used in high contrast light mode when {0} is enabled.',formatSettingAsLink(ThemeSettings.DETECT_HC)),
markdownDescription: nls.localize({key: 'detectColorScheme',comment: ['`#{0}#` and `#{1}#` will become a link to an other setting. Do not remove backtick or #']},'If set, automatically switch to the preferred color theme based on the OS appearance. If the OS appearance is dark, the theme specified at `#{0}#` is used, for light `#{1}#`.',ThemeSettings.PREFERRED_DARK_THEME,ThemeSettings.PREFERRED_LIGHT_THEME),
77
+
markdownDescription: nls.localize({key: 'detectColorScheme',comment: ['{0} and {1} will become links to other settings.']},'If set, automatically switch to the preferred color theme based on the OS appearance. If the OS appearance is dark, the theme specified at {0} is used, for light {1}.',formatSettingAsLink(ThemeSettings.PREFERRED_DARK_THEME),formatSettingAsLink(ThemeSettings.PREFERRED_LIGHT_THEME)),
markdownDescription: nls.localize('autoDetectHighContrast',"If enabled, will automatically change to high contrast theme if the OS is using a high contrast theme. The high contrast theme to use is specified by `#{0}#` and `#{1}#`.",ThemeSettings.PREFERRED_HC_DARK_THEME,ThemeSettings.PREFERRED_HC_LIGHT_THEME),
113
+
markdownDescription: nls.localize({key: 'autoDetectHighContrast',comment: ['{0} and {1} will become links to other settings.']},"If enabled, will automatically change to high contrast theme if the OS is using a high contrast theme. The high contrast theme to use is specified by {0} and {1}",formatSettingAsLink(ThemeSettings.PREFERRED_HC_DARK_THEME),formatSettingAsLink(ThemeSettings.PREFERRED_HC_LIGHT_THEME)),
description: nls.localize('editorColors.semanticHighlighting','Whether semantic highlighting should be enabled for this theme.'),
166
170
deprecationMessage: nls.localize('editorColors.semanticHighlighting.deprecationMessage','Use `enabled` in `editor.semanticTokenColorCustomizations` setting instead.'),
167
-
markdownDeprecationMessage: nls.localize('editorColors.semanticHighlighting.deprecationMessageMarkdown','Use `enabled` in `#editor.semanticTokenColorCustomizations#` setting instead.'),
171
+
markdownDeprecationMessage: nls.localize({key: 'editorColors.semanticHighlighting.deprecationMessageMarkdown',comment: ['{0} will become a link to another setting.']},'Use `enabled` in {0} setting instead.',formatSettingAsLink('editor.semanticTokenColorCustomizations')),
0 commit comments