Skip to content

Commit 8fc488e

Browse files
committed
Fixes some extensions strings missing for i18n
1 parent ad92e3f commit 8fc488e

5 files changed

Lines changed: 11 additions & 6 deletions

File tree

extensions/css/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
"title": "CSS",
5858
"allOf": [
5959
{
60-
"title": "Controls CSS validation and problem severities.",
60+
"title": "%css.validate.title%",
6161
"properties": {
6262
"css.validate": {
6363
"type": "boolean",
@@ -257,7 +257,7 @@
257257
"verbose"
258258
],
259259
"default": "off",
260-
"description": "Traces the communication between VS Code and the CSS language server."
260+
"description": "%css.trace.server.desc%"
261261
}
262262
}
263263
}
@@ -269,7 +269,7 @@
269269
"title": "SCSS (Sass)",
270270
"allOf": [
271271
{
272-
"title": "Controls SCSS validation and problem severities.",
272+
"title": "%scss.validate.title%",
273273
"properties": {
274274
"scss.validate": {
275275
"type": "boolean",
@@ -472,7 +472,7 @@
472472
"title": "LESS",
473473
"allOf": [
474474
{
475-
"title": "Controls LESS validation and problem severities.",
475+
"title": "%less.validate.title%",
476476
"properties": {
477477
"less.validate": {
478478
"type": "boolean",

extensions/css/package.nls.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
"css.lint.unknownVendorSpecificProperties.desc": "Unknown vendor specific property.",
1818
"css.lint.vendorPrefix.desc": "When using a vendor-specific prefix also include the standard property",
1919
"css.lint.zeroUnits.desc": "No unit for zero needed",
20+
"css.trace.server.desc": "Selectors should not contain IDs because these rules are too tightly coupled with the HTML.",
21+
"css.validate.title": "Controls CSS validation and problem severities.",
2022
"css.validate.desc": "Enables or disables all validations",
2123
"less.lint.argumentsInColorFunction.desc": "Invalid number of parameters",
2224
"less.lint.boxModel.desc": "Do not use width or height when using padding or border",
@@ -36,6 +38,7 @@
3638
"less.lint.unknownVendorSpecificProperties.desc": "Unknown vendor specific property.",
3739
"less.lint.vendorPrefix.desc": "When using a vendor-specific prefix also include the standard property",
3840
"less.lint.zeroUnits.desc": "No unit for zero needed",
41+
"less.validate.title": "Controls LESS validation and problem severities.",
3942
"less.validate.desc": "Enables or disables all validations",
4043
"scss.lint.argumentsInColorFunction.desc": "Invalid number of parameters",
4144
"scss.lint.boxModel.desc": "Do not use width or height when using padding or border",
@@ -55,6 +58,7 @@
5558
"scss.lint.unknownVendorSpecificProperties.desc": "Unknown vendor specific property.",
5659
"scss.lint.vendorPrefix.desc": "When using a vendor-specific prefix also include the standard property",
5760
"scss.lint.zeroUnits.desc": "No unit for zero needed",
61+
"scss.validate.title": "Controls SCSS validation and problem severities.",
5862
"scss.validate.desc": "Enables or disables all validations",
5963
"less.colorDecorators.enable.desc": "Enables or disables color decorators",
6064
"scss.colorDecorators.enable.desc": "Enables or disables color decorators",

extensions/html/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@
185185
"verbose"
186186
],
187187
"default": "off",
188-
"description": "Traces the communication between VS Code and the HTML language server."
188+
"description": "%html.trace.server.desc%"
189189
}
190190
}
191191
}

extensions/html/package.nls.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
"html.suggest.angular1.desc": "Configures if the built-in HTML language support suggests Angular V1 tags and properties.",
1818
"html.suggest.ionic.desc": "Configures if the built-in HTML language support suggests Ionic tags, properties and values.",
1919
"html.suggest.html5.desc":"Configures if the built-in HTML language support suggests HTML5 tags, properties and values.",
20+
"html.trace.server.desc": "Traces the communication between VS Code and the HTML language server.",
2021
"html.validate.scripts": "Configures if the built-in HTML language support validates embedded scripts.",
2122
"html.validate.styles": "Configures if the built-in HTML language support validates embedded styles."
2223
}

extensions/merge-conflict/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
},
4444
{
4545
"category": "%command.category%",
46-
"title": "Accept selection",
46+
"title": "%command.accept.selection%",
4747
"command": "merge-conflict.accept.selection"
4848
},
4949
{

0 commit comments

Comments
 (0)