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