-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.nls.json
63 lines (63 loc) · 18.4 KB
/
package.nls.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"ext.settings.debug.description": "Enable or disable debug mode",
"ext.settings.colorCustomizations.description": "Manage extra matched characters color customizations. Set to `false` to turn it off",
"ext.settings.html.htmlDoctypeAttributes": "Matches the DOCTYPE attributes:\n\n* <!DOCTYPE `html` `PUBLIC`>\n\n```html\n\n<!DOCTYPE html PUBLIC>\n\n\n```\nLeave it empty to disable for this item only",
"ext.settings.html.htmlDoctypeExclamation": "Matches the exclamation point preceding the DOCTYPE tag:\n\n* <`!`DOCTYPE html PUBLIC>\n\n```html\n\n<!DOCTYPE html PUBLIC>\n\n\n```\nLeave it empty to disable for this item only",
"ext.settings.html.htmlDoctypeElement": "Matches the DOCTYPE tag:\n\n* <!`DOCTYPE` html PUBLIC>\n\n```html\n\n<!DOCTYPE html PUBLIC>\n\n\n```\nLeave it empty to disable for this item only",
"ext.settings.html.htmlEntitiesAmpersand": "Matches the ampersand in HTML entities:\n\n* `&`amp;\n\n* `&`#174;\n\n```html\n\n&\n®\n\n\n```\nLeave it empty to disable for this item only",
"ext.settings.html.htmlEntitiesSemicolon": "Matches the semicolon in HTML entities:\n\n* &amp`;`\n\n* &#174`;`\n\n```html\n\n&\n®\n\n\n```\nLeave it empty to disable for this item only",
"ext.settings.html.htmlGenericAttributesFollowedByParameter": "Matches HTML attributes followed by equals and a parameter.\nIt does not matches the HTML and SVG events attributes. [See HTML and SVG Events](#ADD-LINK).\n\n* <div `class`=\"class\"></div>\n\n* <div `generic-attribute`=\"parameter\"></div>\n\n```html\n\n<div class=\"class\"></div>\n<div generic-attribute=\"parameter\"></div>\n\n\n```\nLeave it empty to disable for this item only",
"ext.settings.html.htmlEventsAttributes": "Matches HTML event attributes. [See HTML and SVG Events](#ADD-LINK).\n\n* <div `onpointercancel`=\"callback()\"></div>\n\n* <div `onclick`=\"callback('with-parameters', variable)\"></div>\n\n```html\n\n<div onpointercancel=\"callback()\"></div>\n<div onclick=\"callback('with-parameters', variable)\"></div>\n\n\n```\nLeave it empty to disable for this item only",
"ext.settings.html.htmlAttributeValueSeparator": "Matches HTML attribute-value separator (=).\nThis is a global match.\n\n* <div onpointercancel`=`\"callback()\"></div>\n\n* <div class`=`\"test\"></div>\n\n```html\n\n<div onpointercancel=\"callback()\"></div>\n<div class=\"test\"></div>\n\n\n```\nLeave it empty to disable for this item only",
"ext.settings.html.htmlStyleAttributesLanguageIdentifier": "Matches HTML Style Type Attribute language identifier.\n\n* <style type=\"text/`css`\"></style>\n\n* <style type=\"text/`scss`\"></style>\n\n* <style type=\"text/`sass`\"></style>\n\n```html\n\n<style type=\"text/css\"></style>\n<style type=\"text/scss\"></style>\n<style type=\"text/sass\"></style>\n<style type=\"text/stylus\"></style>\n<style type=\"text/less\"></style>\n<style type=\"text/postcss\"></style>\n\n\n```\nLeave it empty to disable for this item only",
"ext.settings.html.htmlScriptAttributesLanguageIdentifier": "Matches HTML Script Type Attribute language identifier.\n\n* <script type=\"text/`javascript`\"></script>\n\n* <script type=\"text/`typescript`\"></script>\n\n* <script type=\"application/`dart`\"></script>\n\n```html\n\n<script type=\"text/javascript\"></script>\n<script type=\"text/typescript\"></script>\n<script type=\"text/coffeescript\"></script>\n<script type=\"application/dart\"></script>\n\n\n```\nLeave it empty to disable for this item only",
"ext.settings.html.htmlLinkAttributesMimeType": "Matches HTML link tag type attribute icon MIME type.\n\n* <link rel=\"icon\" type=\"image/`x-icon`\" />\n\n* <link rel=\"icon\" type=\"image/`svg+xml`\" />\n\n```html\n\n<link rel=\"icon\" type=\"image/svg+xml\" />\n<link rel=\"icon\" type=\"image/x-icon\" />\n\n\n```\nLeave it empty to disable for this item only",
"ext.settings.html.htmlTags": "Matches HTML known elements.\n\n* <`div`></`div`>\n\n* <`span`></`span`>\n\n```html\n\n<div></div>\n<span></span>\n\n\n```\nLeave it empty to disable for this item only",
"ext.settings.html.htmlCustomTags": "Matches non-standard HTML elements.\n\n* <`circle`></`circle`>\n\n* <`another-custom-element`></`another-custom-element`>\n\n```html\n\n<circle></circle>\n<another-custom-element></another-custom-element>\n\n\n```\nLeave it empty to disable for this item only",
"ext.settings.html.ariaAttributePrefix": "Matches aria-attributes aria prefix.\n\n* <div `aria-`label=\"label\"></div>\n\n```html\n\n<div aria-label=\"label\"></div>\n\n```\nLeave it empty to disable for this item only",
"ext.settings.html.ariaAttributeSuffix": "Matches aria-attributes suffix.\n\n* <div aria-`label`=\"label\"></div>\n\n```html\n\n<div aria-label=\"label\"></div>\n\n```\nLeave it empty to disable for this item only",
"ext.settings.html.dataAttributePrefix": "Matches data-attributes data prefix.\n\n* <div `data-`color=\"#000000\"></div>\n\n```html\n\n<div data-color=\"#000000\"></div>\n\n```\nLeave it empty to disable for this item only",
"ext.settings.html.dataAttributeSuffix": "Matches data-attributes suffix.\n\n* <div data-`color`=\"#000000\"></div>\n\n```html\n\n<div data-color=\"#000000\"></div>\n\n```\nLeave it empty to disable for this item only",
"ext.settings.angular.angularExpression": "Matches the curly braces preceding and succeeding an angular expression.\nFor both template string interpolation and temlate expressions.\n\n* `{{`condition?.met() ? 'value' : 'otherwise'`}}`\n\n* <div class=\"class `{{`condition?.met() ? 'value' : 'otherwise'`}}`\"></div>\n\n```html\n\n<div class=\"class {{condition?.met() ? 'value' : 'otherwise'}}\">\n\t{{condition?.met() ? 'value' : 'otherwise'}}\n</div>\n\n\n```\nLeave it empty to disable for this item only",
"ext.settings.angular.angularAndAngularMaterialElementTags": "Matches Angular-and-Angular-Material-specific element tags. [See Angular-specific tags](#ADD-LINK)\n\n* <`ng-container`></`ng-container`>\n\n* <`mat-action-list`></`mat-action-list`>\n\n```html\n\n<ng-container></ng-container>\n<mat-action-list></mat-action-list>\n\n\n```\nLeave it empty to disable for this item onlyLeave it empty to disable for this item only",
"ext.settings.angular.angularAnimationTriggerPrefix": "Matches Angular animation trigger attribute prefix.\n\n* <div `@`animationTrigger></div>\n\n```html\n\n<div @animationTrigger></div>\n\n\n```\nLeave it empty to disable for this item only",
"ext.settings.angular.angularAnimationTriggerVariableName": "Matches Angular animation trigger attribute variable name.\n\n* <div @`animationTrigger`></div>\n\n```html\n\n<div @animationTrigger></div>\n\n\n```\nLeave it empty to disable for this item only",
"ext.settings.angular.angularBindingAttributeDelimiter": "Matches Angular binding parenthesis and brackets delimiters.\nThis matches all angular bindings delimiters.\n\n* <div `(`click`)`=\"callback()\"></div>\n\n* <div `[`input`]`=\"element\"></div>\n\n* <div `[(`doubleWay`)]`=\"binding\"></div>\n\n```html\n\n<div (click)=\"callback()\"></div>\n<div [input]=\"element\"></div>\n<div [(doubleWay)]=\"binding\"></div>\n<div ([nonStandardDoubleWay])=\"binding\"></div>\n\n\n```\nLeave it empty to disable for this item only",
"ext.settings.angular.angularEventHandlerName": "Matches Angular event name.\n\n* <div (`click`)=\"callback()\"></div>\n\n```html\n\n<div (click)=\"callback()\"></div>\n\n\n```\nLeave it empty to disable for this item only",
"ext.settings.angular.angularOneWayBindingAnimationTriggerDecorator": "Matches Angular animation trigger decorator inside one-way bindings.\n\n* <div [`@`visibility]=\"getMenuState()\"></div>\n\n```html\n\n<div [@visibility]=\"getMenuState()\"></div>\n\n\n```\nLeave it empty to disable for this item only",
"ext.settings.angular.angularOneWayBindingFirstLevelDepth": "Matches Angular fisrt level depth properties in one-way bindings.\n\n* <div [`style`.font-size.px]=\"10\"></div>\n\n* <div [`property`]=\"element\"></div>\n\n```html\n\n<div [style.font-size.px]=\"10\"></div>\n<div [property]=\"element\"></div>\n\n\n```\nLeave it empty to disable for this item only",
"ext.settings.angular.angularOneWayBindingSecondLevelDepth": "Matches Angular second level depth properties in one-way bindings.\n\n* <div [style.`font-size`.px]=\"10\"></div>\n\n```html\n\n<div [style.font-size.px]=\"10\"></div>\n\n\n```\nLeave it empty to disable for this item only",
"ext.settings.angular.angularOneWayBindingThirdLevelDepth": "Matches Angular third level depth properties in one-way bindings.\n\n* <div [style.font-size.`px`]=\"10\"></div>\n\n```html\n\n<div [style.font-size.px]=\"10\"></div>\n\n\n```\nLeave it empty to disable for this item only",
"ext.settings.angular.angularPrefixedAttributesLetPrefix": "Matches Angular let- prefixed attributes' prefix.\n\n* <div `let-`variable=\"element\"></div>\n\n```html\n\n<div let-variable=\"element\"></div>\n\n\n```\nLeave it empty to disable for this item only",
"ext.settings.angular.angularPrefixedAttributesRefPrefix": "Matches Angular ref- prefixed attributes' prefix.\n\n* <div `ref-`variable=\"element\"></div>\n\n```html\n\n<div ref-variable=\"element\"></div>\n\n\n```\nLeave it empty to disable for this item only",
"ext.settings.angular.angularPrefixedAttributesVariableName": "Matches Angular ref- and let- prefixed attributes' variable name.\n\n* <div ref-`variable`=\"element\"></div>\n\n* <div let-`variable`=\"element\"></div>\n\n```html\n\n<div ref-variable=\"element\"></div>\n<div let-variable=\"element\"></div>\n\n\n```\nLeave it empty to disable for this item only",
"ext.settings.angular.angularPrefixedAttributesRxjsSuffix": "Matches Angular ref- and let- prefixed attributes' RxJS suffix.\n\n* <div let-variable`$`=\"element\"></div>\n\n```html\n\n<div let-variable$=\"element\"></div>\n\n\n```\nLeave it empty to disable for this item only",
"ext.settings.angular.angularSyntaxSugarAttributesPrefix": "Matches Angular syntax sugar attribute decorator.\n\n* <div `*`ngFor=\"let obs of observable | async as test\"></div>\n\n```html\n\n<div \n\t*ngFor=\"let obs of observable | async as test\"\n\t *matHeaderCellDef\n>\n</div>\n\n\n```\nLeave it empty to disable for this item only",
"ext.settings.angular.angularSyntaxSugarAttributesName": "Matches Angular syntax sugar attribute name.\n\n* <div *`ngFor`=\"let obs of observable | async as test\"></div>\n\n```html\n\n<div \n\t*ngFor=\"let obs of observable | async as test\"\n\t *matHeaderCellDef\n>\n</div>\n\n\n```\nLeave it empty to disable for this item only",
"ext.settings.angular.angularTemplateVariablePrefix": "Matches Angular template variable decorator.\n\n* <div `#`menu=\"parsedMenu\"></div>\n\n```html\n\n<div #menu=\"parsedMenu\"></div>\n\n\n```\nLeave it empty to disable for this item only",
"ext.settings.angular.angularTemplateVariableName": "Matches Angular template variable name.\n\n* <div #`menu`=\"parsedMenu\"></div>\n\n```html\n\n<div #menu=\"parsedMenu\"></div>\n\n\n```\nLeave it empty to disable for this item only",
"ext.settings.angular.angularExpressionOperatorsAndNavigatorsColor": "Matches Angular expressions' operators and navigators.\n\n* {{ if (key`?.`value `||` condition `&&` condition) {} }}\n\n* {{ if (key`.`value `!==` '') {} }}\n\n* {{ if (key`!.`value `===` '') {} }}\n\n```html{{\n\n{{\n\tif (key?.value || condition && condition) {}\n\tif (key.value !== '') {}\n\tif (key!.value === '') {}\n}}\n\n\n```\nLeave it empty to disable for this item only",
"ext.settings.angular.controlFlowPrefix": "Matches Angular's control flow keyword prefix (@).\n\n* `@`if (showBody) { <body-cmp/> }\n\n* `@`else if (showSummary) { <summary-cmp/> }\n\n* `@`else { Nothing to see here }\n\n```html\n\n@if (showBody) {\n\t<body-cmp />\n} @else if (showSummary) {\n\t<summary-cmp />\n} @else {\n\tNothing to see here\n}\n```\nLeave it empty to disable for this item only",
"ext.settings.angular.controlFlowKeyword": "Matches Angular's control flow keywords.\n\n* @`if` (showBody) { <body-cmp/> }\n\n* @`else if` (showSummary) { <summary-cmp/> }\n\n* @`else` { Nothing to see here }\n\n```html\n\n@if (showBody) {\n\t<body-cmp />\n} @else if (showSummary) {\n\t<summary-cmp />\n} @else {\n\tNothing to see here\n}\n```\nLeave it empty to disable for this item only",
"ext.settings.primeng.primeNgElementTags": "Matches PrimeNG-specific element tags.\n\n* <`p-calendar`></`p-calendar`>\n\n* <`p-button`></`p-button`>\n\n```html\n\n<p-calendar></p-calendar>\n<p-button></p-button>\n\n\n```\nLeave it empty to disable for this item only",
"ext.settings.ngBootstrap.ngBootstrapElementTags": "Matches NG Bootstrap-specific element tags.\n\n* <`ngb-alert`></`ngb-alert`>\n\n* <`ngb-carousel`></`ngb-carousel`>\n\n```html\n\n<ngb-alert></ngb-alert>\n<ngb-carousel></ngb-carousel>\n\n\n```\nLeave it empty to disable for this item only",
"ext.settings.kendo.kendoUiElementTags": "Matches Kendo UI-specific element tags.\n\n* <`kendo-window`></`kendo-window`>\n\n* <`kendo-upload`></`kendo-upload`>\n\n```html\n\n<kendo-window></kendo-window>\n<kendo-upload></kendo-upload>\n\n\n```\nLeave it empty to disable for this item only",
"ext.settings.svg.svgTags": "Matches known SVG elements.\n\n* <`circle`></`circle`>\n\n* <`path`></`path`>\n\n```html\n\n<circle></circle>\n<svg>\n\t<circle></circle>\n\t<path></path>\n</svg>\n\n\n```\nLeave it empty to disable for this item only",
"ext.settings.svg.svgDAttributePathCommands": "Matches SVG d attribute path commands.\n\n* <path d=\"`M`202.35,163.64`l`-4.38-13.1`h`-2.13`v`-3.85`h`9.1`v`3.85`h`-1.82`l`2.05,6.2`l`3.41-10.05\" />\n\n```html\n\n<svg>\n\t<path d=\"M202.35,163.64l-4.38-13.1h-2.13v-3.85h9.1v3.85h-1.82l2.05,6.2l3.41-10.05\" />\n</svg>\n\n\n```\nLeave it empty to disable for this item only",
"ext.settings.xml.xmlTagNamespaceDivider": "Matches XML/HTML element namespace colon separator.\n\n* <li`:`title>Book Title</li`:`title>\n\n```html\n\n<li:title>Book Title</li:title>\n\n\n```\nLeave it empty to disable for this item only",
"ext.settings.xml.xmlTagNamespaceSuffix": "Matches XML/HTML element namespace suffix.\n\n* <li:`title`>Book Title</li:`title`>\n\n```html\n\n<li:title>Book Title</li:title>\n\n\n```\nLeave it empty to disable for this item only",
"ext.settings.xml.xmlAttributeNamespaceDivider": "Matches XML/HTML attribute namespace colon separator.\n\n* <li:book xmlns`:`li=\"bookURI\">[...]</li:book>\n\n```html\n\n<li:book xmlns:li=\"bookURI\">[...]</li:book>\n\n\n```\nLeave it empty to disable for this item only",
"ext.settings.xml.xmlAttributeNamespaceSuffix": "Matches XML/HTML attribute namespace suffix.\n\n* <li:book xmlns:`li`=\"bookURI\">[...]</li:book>\n\n```html\n\n<li:book xmlns:li=\"bookURI\">[...]</li:book>\n\n\n```\nLeave it empty to disable for this item only",
"ext.settings.xml.xmlStylesheetAttributesLanguageIdentifier": "Matches xml-stylesheet Type Attribute language identifier.\n\n* <?xml-stylesheet ref=\"shakespeare.xsl\" type=\"text/`xsl`\"?>\n\n* <?xml-stylesheet ref=\"shakespeare.css\" type=\"text/`css`\"?>\n\n* <?xml-stylesheet ref=\"shakespeare.xml\" type=\"text/`xml`\"?>\n\n```html\n\n<?xml-stylesheet ref=\"shakespeare.xsl\" type=\"text/xsl\"?>\n<?xml-stylesheet ref=\"shakespeare.css\" type=\"text/css\"?>\n<?xml-stylesheet ref=\"shakespeare.xml\" type=\"text/xml\"?>\n\n\n```\nLeave it empty to disable for this item only",
"ext.settings.dtd.dtdDoctypeExclamation": "Matches the exclamation point preceding DTD element tags:\n\n* <`!`ELEMENT BANNER (#PCDATA)>\n\n* <`!`ATTLIST TVSCHEDULE NAME CDATA #REQUIRED>\n\n```html\n\n<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE TVSCHEDULE [\n\t<!ELEMENT BANNER (#PCDATA)>\n\t<!ELEMENT DAY (DATE,(HOLIDAY|PROGRAMSLOT+)+)>\n\t<!ATTLIST TVSCHEDULE NAME CDATA #REQUIRED>\n]>\n\n\n```\nLeave it empty to disable for this item only",
"ext.settings.dtd.dtdDoctypeElement": "Matches the DTD element tags:\n\n* <!`ELEMENT` `BANNER` (#PCDATA)>\n\n* <!`ATTLIST` TVSCHEDULE NAME CDATA #REQUIRED>\n\n```html\n\n<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE TVSCHEDULE [\n\t<!ELEMENT BANNER (#PCDATA)>\n\t<!ELEMENT DAY (DATE,(HOLIDAY|PROGRAMSLOT+)+)>\n\t<!ATTLIST TVSCHEDULE NAME CDATA #REQUIRED>\n]>\n\n\n```\nLeave it empty to disable for this item only",
"ext.settings.dtd.dtdDoctypeQualifier": "Matches the DTD qualifiers:\n\n* <!ELEMENT DAY (`DATE`,(`HOLIDAY`|`PROGRAMSLOT`+)+)>\n\n```html\n\n<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE TVSCHEDULE [\n\t<!ELEMENT BANNER (#PCDATA)>\n\t<!ELEMENT DAY (DATE,(HOLIDAY|PROGRAMSLOT+)+)>\n\t<!ATTLIST TVSCHEDULE NAME CDATA #REQUIRED>\n]>\n\n\n```\nLeave it empty to disable for this item only",
"ext.settings.dtd.dtdDoctypeQuantifier": "Matches the DTD quantifiers:\n\n* <!ELEMENT DAY (DATE,(HOLIDAY`|`PROGRAMSLOT`+`)`*`)>\n\n* <!ELEMENT PROGRAMSLOT (TIME,TITLE,DESCRIPTION`?`)>\n\n```html\n\n<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE TVSCHEDULE [\n\t<!ELEMENT BANNER (#PCDATA)>\n\t<!ELEMENT DAY (DATE,(HOLIDAY|PROGRAMSLOT+)*)>\n\t<!ELEMENT PROGRAMSLOT (TIME,TITLE,DESCRIPTION?)>\n]>\n\n\n```\nLeave it empty to disable for this item only",
"ext.command.updateTokenCustomization.title": "vscode-angular-html: Update color customizations",
"ext.command.disableTokenCustomization.title": "vscode-angular-html: Disable color customizations",
"ext.command.addLegacyColorCustomizations.title": "vscode-angular-html: Set custom colors customizations",
"ext.messages.updateNotice": "vscode-angular-html was updated and it now allows color customizations 🎉! Please check-out the settings page :)",
"ext.messages.enableLegacyColors": "Enable Custom Colors",
"ext.messages.goToSettingsPage": "Go to Settings Page",
"ext.messages.settingsNotice": "Please, close any open settings.json or Settings UI page before proceeding."
}