Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/css-language-features/package.nls.json
3244 views
1
{
2
"displayName": "CSS Language Features",
3
"description": "Provides rich language support for CSS, LESS and SCSS files.",
4
"css.title": "CSS",
5
"css.customData.desc": "A list of relative file paths pointing to JSON files following the [custom data format](https://github.com/microsoft/vscode-css-languageservice/blob/master/docs/customData.md).\n\nVS Code loads custom data on startup to enhance its CSS support for CSS custom properties (variables), at-rules, pseudo-classes, and pseudo-elements you specify in the JSON files.\n\nThe file paths are relative to workspace and only workspace folder settings are considered.",
6
"css.completion.triggerPropertyValueCompletion.desc": "By default, VS Code triggers property value completion after selecting a CSS property. Use this setting to disable this behavior.",
7
"css.completion.completePropertyWithSemicolon.desc": "Insert semicolon at end of line when completing CSS properties.",
8
"css.lint.argumentsInColorFunction.desc": "Invalid number of parameters.",
9
"css.lint.boxModel.desc": "Do not use `width` or `height` when using `padding` or `border`.",
10
"css.lint.compatibleVendorPrefixes.desc": "When using a vendor-specific prefix make sure to also include all other vendor-specific properties.",
11
"css.lint.duplicateProperties.desc": "Do not use duplicate style definitions.",
12
"css.lint.emptyRules.desc": "Do not use empty rulesets.",
13
"css.lint.float.desc": "Avoid using `float`. Floats lead to fragile CSS that is easy to break if one aspect of the layout changes.",
14
"css.lint.fontFaceProperties.desc": "`@font-face` rule must define `src` and `font-family` properties.",
15
"css.lint.hexColorLength.desc": "Hex colors must consist of 3, 4, 6 or 8 hex numbers.",
16
"css.lint.idSelector.desc": "Selectors should not contain IDs because these rules are too tightly coupled with the HTML.",
17
"css.lint.ieHack.desc": "IE hacks are only necessary when supporting IE7 and older.",
18
"css.lint.important.desc": "Avoid using `!important`. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored.",
19
"css.lint.importStatement.desc": "Import statements do not load in parallel.",
20
"css.lint.propertyIgnoredDueToDisplay.desc": "Property is ignored due to the display. E.g. with `display: inline`, the `width`, `height`, `margin-top`, `margin-bottom`, and `float` properties have no effect.",
21
"css.lint.universalSelector.desc": "The universal selector (`*`) is known to be slow.",
22
"css.lint.unknownAtRules.desc": "Unknown at-rule.",
23
"css.lint.unknownProperties.desc": "Unknown property.",
24
"css.lint.validProperties.desc": "A list of properties that are not validated against the `unknownProperties` rule.",
25
"css.lint.unknownVendorSpecificProperties.desc": "Unknown vendor specific property.",
26
"css.lint.vendorPrefix.desc": "When using a vendor-specific prefix, also include the standard property.",
27
"css.lint.zeroUnits.desc": "No unit for zero needed.",
28
"css.trace.server.desc": "Traces the communication between VS Code and the CSS language server.",
29
"css.validate.title": "Controls CSS validation and problem severities.",
30
"css.validate.desc": "Enables or disables all validations.",
31
"css.hover.documentation": "Show property and value documentation in CSS hovers.",
32
"css.hover.references": "Show references to MDN in CSS hovers.",
33
"css.format.enable.desc": "Enable/disable default CSS formatter.",
34
"css.format.newlineBetweenSelectors.desc": "Separate selectors with a new line.",
35
"css.format.newlineBetweenRules.desc": "Separate rulesets by a blank line.",
36
"css.format.spaceAroundSelectorSeparator.desc": "Ensure a space character around selector separators '>', '+', '~' (e.g. `a > b`).",
37
"css.format.braceStyle.desc": "Put braces on the same line as rules (`collapse`) or put braces on own line (`expand`).",
38
"css.format.preserveNewLines.desc": "Whether existing line breaks before rules and declarations should be preserved.",
39
"css.format.maxPreserveNewLines.desc": "Maximum number of line breaks to be preserved in one chunk, when `#css.format.preserveNewLines#` is enabled.",
40
"less.title": "LESS",
41
"less.completion.triggerPropertyValueCompletion.desc": "By default, VS Code triggers property value completion after selecting a CSS property. Use this setting to disable this behavior.",
42
"less.completion.completePropertyWithSemicolon.desc": "Insert semicolon at end of line when completing CSS properties.",
43
"less.lint.argumentsInColorFunction.desc": "Invalid number of parameters.",
44
"less.lint.boxModel.desc": "Do not use `width` or `height` when using `padding` or `border`.",
45
"less.lint.compatibleVendorPrefixes.desc": "When using a vendor-specific prefix make sure to also include all other vendor-specific properties.",
46
"less.lint.duplicateProperties.desc": "Do not use duplicate style definitions.",
47
"less.lint.emptyRules.desc": "Do not use empty rulesets.",
48
"less.lint.float.desc": "Avoid using `float`. Floats lead to fragile CSS that is easy to break if one aspect of the layout changes.",
49
"less.lint.fontFaceProperties.desc": "`@font-face` rule must define `src` and `font-family` properties.",
50
"less.lint.hexColorLength.desc": "Hex colors must consist of 3, 4, 6 or 8 hex numbers.",
51
"less.lint.idSelector.desc": "Selectors should not contain IDs because these rules are too tightly coupled with the HTML.",
52
"less.lint.ieHack.desc": "IE hacks are only necessary when supporting IE7 and older.",
53
"less.lint.important.desc": "Avoid using `!important`. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored.",
54
"less.lint.importStatement.desc": "Import statements do not load in parallel.",
55
"less.lint.propertyIgnoredDueToDisplay.desc": "Property is ignored due to the display. E.g. with `display: inline`, the `width`, `height`, `margin-top`, `margin-bottom`, and `float` properties have no effect.",
56
"less.lint.universalSelector.desc": "The universal selector (`*`) is known to be slow.",
57
"less.lint.unknownAtRules.desc": "Unknown at-rule.",
58
"less.lint.unknownProperties.desc": "Unknown property.",
59
"less.lint.validProperties.desc": "A list of properties that are not validated against the `unknownProperties` rule.",
60
"less.lint.unknownVendorSpecificProperties.desc": "Unknown vendor specific property.",
61
"less.lint.vendorPrefix.desc": "When using a vendor-specific prefix, also include the standard property.",
62
"less.lint.zeroUnits.desc": "No unit for zero needed.",
63
"less.validate.title": "Controls LESS validation and problem severities.",
64
"less.validate.desc": "Enables or disables all validations.",
65
"less.hover.documentation": "Show property and value documentation in LESS hovers.",
66
"less.hover.references": "Show references to MDN in LESS hovers.",
67
"less.format.enable.desc": "Enable/disable default LESS formatter.",
68
"less.format.newlineBetweenSelectors.desc": "Separate selectors with a new line.",
69
"less.format.newlineBetweenRules.desc": "Separate rulesets by a blank line.",
70
"less.format.spaceAroundSelectorSeparator.desc": "Ensure a space character around selector separators '>', '+', '~' (e.g. `a > b`).",
71
"less.format.braceStyle.desc": "Put braces on the same line as rules (`collapse`) or put braces on own line (`expand`).",
72
"less.format.preserveNewLines.desc": "Whether existing line breaks before rules and declarations should be preserved.",
73
"less.format.maxPreserveNewLines.desc": "Maximum number of line breaks to be preserved in one chunk, when `#less.format.preserveNewLines#` is enabled.",
74
"scss.title": "SCSS (Sass)",
75
"scss.completion.triggerPropertyValueCompletion.desc": "By default, VS Code triggers property value completion after selecting a CSS property. Use this setting to disable this behavior.",
76
"scss.completion.completePropertyWithSemicolon.desc": "Insert semicolon at end of line when completing CSS properties.",
77
"scss.lint.argumentsInColorFunction.desc": "Invalid number of parameters.",
78
"scss.lint.boxModel.desc": "Do not use `width` or `height` when using `padding` or `border`.",
79
"scss.lint.compatibleVendorPrefixes.desc": "When using a vendor-specific prefix make sure to also include all other vendor-specific properties.",
80
"scss.lint.duplicateProperties.desc": "Do not use duplicate style definitions.",
81
"scss.lint.emptyRules.desc": "Do not use empty rulesets.",
82
"scss.lint.float.desc": "Avoid using `float`. Floats lead to fragile CSS that is easy to break if one aspect of the layout changes.",
83
"scss.lint.fontFaceProperties.desc": "`@font-face` rule must define `src` and `font-family` properties.",
84
"scss.lint.hexColorLength.desc": "Hex colors must consist of 3, 4, 6 or 8 hex numbers.",
85
"scss.lint.idSelector.desc": "Selectors should not contain IDs because these rules are too tightly coupled with the HTML.",
86
"scss.lint.ieHack.desc": "IE hacks are only necessary when supporting IE7 and older.",
87
"scss.lint.important.desc": "Avoid using `!important`. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored.",
88
"scss.lint.importStatement.desc": "Import statements do not load in parallel.",
89
"scss.lint.propertyIgnoredDueToDisplay.desc": "Property is ignored due to the display. E.g. with `display: inline`, the `width`, `height`, `margin-top`, `margin-bottom`, and `float` properties have no effect.",
90
"scss.lint.universalSelector.desc": "The universal selector (`*`) is known to be slow.",
91
"scss.lint.unknownAtRules.desc": "Unknown at-rule.",
92
"scss.lint.unknownProperties.desc": "Unknown property.",
93
"scss.lint.validProperties.desc": "A list of properties that are not validated against the `unknownProperties` rule.",
94
"scss.lint.unknownVendorSpecificProperties.desc": "Unknown vendor specific property.",
95
"scss.lint.vendorPrefix.desc": "When using a vendor-specific prefix, also include the standard property.",
96
"scss.lint.zeroUnits.desc": "No unit for zero needed.",
97
"scss.validate.title": "Controls SCSS validation and problem severities.",
98
"scss.validate.desc": "Enables or disables all validations.",
99
"scss.hover.documentation": "Show property and value documentation in SCSS hovers.",
100
"scss.hover.references": "Show references to MDN in SCSS hovers.",
101
"scss.format.enable.desc": "Enable/disable default SCSS formatter.",
102
"scss.format.newlineBetweenSelectors.desc": "Separate selectors with a new line.",
103
"scss.format.newlineBetweenRules.desc": "Separate rulesets by a blank line.",
104
"scss.format.spaceAroundSelectorSeparator.desc": "Ensure a space character around selector separators '>', '+', '~' (e.g. `a > b`).",
105
"scss.format.braceStyle.desc": "Put braces on the same line as rules (`collapse`) or put braces on own line (`expand`).",
106
"scss.format.preserveNewLines.desc": "Whether existing line breaks before rules and declarations should be preserved.",
107
"scss.format.maxPreserveNewLines.desc": "Maximum number of line breaks to be preserved in one chunk, when `#scss.format.preserveNewLines#` is enabled.",
108
"css.colorDecorators.enable.deprecationMessage": "The setting `css.colorDecorators.enable` has been deprecated in favor of `editor.colorDecorators`.",
109
"scss.colorDecorators.enable.deprecationMessage": "The setting `scss.colorDecorators.enable` has been deprecated in favor of `editor.colorDecorators`.",
110
"less.colorDecorators.enable.deprecationMessage": "The setting `less.colorDecorators.enable` has been deprecated in favor of `editor.colorDecorators`."
111
}
112
113