Merge pull request #31253 from yfdyh000/i18n-fixes
Fixes some extensions strings missing for i18npull/33454/head
commit
256b02f921
|
@ -58,7 +58,7 @@
|
|||
"title": "CSS",
|
||||
"allOf": [
|
||||
{
|
||||
"title": "Controls CSS validation and problem severities.",
|
||||
"title": "%css.validate.title%",
|
||||
"properties": {
|
||||
"css.validate": {
|
||||
"type": "boolean",
|
||||
|
@ -280,7 +280,7 @@
|
|||
"verbose"
|
||||
],
|
||||
"default": "off",
|
||||
"description": "Traces the communication between VS Code and the CSS language server."
|
||||
"description": "%css.trace.server.desc%"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -292,7 +292,7 @@
|
|||
"title": "SCSS (Sass)",
|
||||
"allOf": [
|
||||
{
|
||||
"title": "Controls SCSS validation and problem severities.",
|
||||
"title": "%scss.validate.title%",
|
||||
"properties": {
|
||||
"scss.validate": {
|
||||
"type": "boolean",
|
||||
|
@ -516,7 +516,7 @@
|
|||
"title": "LESS",
|
||||
"allOf": [
|
||||
{
|
||||
"title": "Controls LESS validation and problem severities.",
|
||||
"title": "%less.validate.title%",
|
||||
"properties": {
|
||||
"less.validate": {
|
||||
"type": "boolean",
|
||||
|
|
|
@ -17,6 +17,8 @@
|
|||
"css.lint.unknownVendorSpecificProperties.desc": "Unknown vendor specific property.",
|
||||
"css.lint.vendorPrefix.desc": "When using a vendor-specific prefix also include the standard property",
|
||||
"css.lint.zeroUnits.desc": "No unit for zero needed",
|
||||
"css.trace.server.desc": "Selectors should not contain IDs because these rules are too tightly coupled with the HTML.",
|
||||
"css.validate.title": "Controls CSS validation and problem severities.",
|
||||
"css.validate.desc": "Enables or disables all validations",
|
||||
"less.lint.argumentsInColorFunction.desc": "Invalid number of parameters",
|
||||
"less.lint.boxModel.desc": "Do not use width or height when using padding or border",
|
||||
|
@ -36,6 +38,7 @@
|
|||
"less.lint.unknownVendorSpecificProperties.desc": "Unknown vendor specific property.",
|
||||
"less.lint.vendorPrefix.desc": "When using a vendor-specific prefix also include the standard property",
|
||||
"less.lint.zeroUnits.desc": "No unit for zero needed",
|
||||
"less.validate.title": "Controls LESS validation and problem severities.",
|
||||
"less.validate.desc": "Enables or disables all validations",
|
||||
"scss.lint.argumentsInColorFunction.desc": "Invalid number of parameters",
|
||||
"scss.lint.boxModel.desc": "Do not use width or height when using padding or border",
|
||||
|
@ -55,6 +58,7 @@
|
|||
"scss.lint.unknownVendorSpecificProperties.desc": "Unknown vendor specific property.",
|
||||
"scss.lint.vendorPrefix.desc": "When using a vendor-specific prefix also include the standard property",
|
||||
"scss.lint.zeroUnits.desc": "No unit for zero needed",
|
||||
"scss.validate.title": "Controls SCSS validation and problem severities.",
|
||||
"scss.validate.desc": "Enables or disables all validations",
|
||||
"less.colorDecorators.enable.desc": "Enables or disables color decorators",
|
||||
"scss.colorDecorators.enable.desc": "Enables or disables color decorators",
|
||||
|
|
|
@ -209,7 +209,7 @@
|
|||
"verbose"
|
||||
],
|
||||
"default": "off",
|
||||
"description": "Traces the communication between VS Code and the HTML language server."
|
||||
"description": "%html.trace.server.desc%"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -17,6 +17,7 @@
|
|||
"html.suggest.angular1.desc": "Configures if the built-in HTML language support suggests Angular V1 tags and properties.",
|
||||
"html.suggest.ionic.desc": "Configures if the built-in HTML language support suggests Ionic tags, properties and values.",
|
||||
"html.suggest.html5.desc":"Configures if the built-in HTML language support suggests HTML5 tags, properties and values.",
|
||||
"html.trace.server.desc": "Traces the communication between VS Code and the HTML language server.",
|
||||
"html.validate.scripts": "Configures if the built-in HTML language support validates embedded scripts.",
|
||||
"html.validate.styles": "Configures if the built-in HTML language support validates embedded styles.",
|
||||
"html.autoClosingTags.enable": "Enable/disable autoclosing of HTML tags."
|
||||
|
|
|
@ -43,7 +43,7 @@
|
|||
},
|
||||
{
|
||||
"category": "%command.category%",
|
||||
"title": "Accept selection",
|
||||
"title": "%command.accept.selection%",
|
||||
"command": "merge-conflict.accept.selection"
|
||||
},
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue