package.nls.json 5.7 KB
Newer Older
1
{
2
	"description": "Emmet support for VS Code",
3
	"command.wrapWithAbbreviation": "Wrap with Abbreviation",
4
	"command.wrapIndividualLinesWithAbbreviation": "Wrap Individual Lines with Abbreviation",
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
	"command.removeTag": "Remove Tag",
	"command.updateTag": "Update Tag",
	"command.matchTag": "Go to Matching Pair",
	"command.balanceIn": "Balance (inward)",
	"command.balanceOut": "Balance (outward)",
	"command.prevEditPoint": "Go to Previous Edit Point",
	"command.nextEditPoint": "Go to Next Edit Point",
	"command.mergeLines": "Merge Lines",
	"command.selectPrevItem": "Select Previous Item",
	"command.selectNextItem": "Select Next Item",
	"command.splitJoinTag": "Split/Join Tag",
	"command.toggleComment": "Toggle Comment",
	"command.evaluateMathExpression": "Evaluate Math Expression",
	"command.updateImageSize": "Update Image Size",
	"command.reflectCSSValue": "Reflect CSS Value",
	"command.incrementNumberByOne": "Increment by 1",
	"command.decrementNumberByOne": "Decrement by 1",
	"command.incrementNumberByOneTenth": "Increment by 0.1",
	"command.decrementNumberByOneTenth": "Decrement by 0.1",
	"command.incrementNumberByTen": "Increment by 10",
25 26
	"command.decrementNumberByTen": "Decrement by 10",
	"emmetSyntaxProfiles": "Define profile for specified syntax or use your own profile with specific rules.",
27 28 29 30 31 32 33
	"emmetExclude": "An array of languages where Emmet abbreviations should not be expanded.",
	"emmetExtensionsPath": "Path to a folder containing Emmet profiles and snippets.'",
	"emmetShowExpandedAbbreviation": "Shows expanded Emmet abbreviations as suggestions.\nThe option \"inMarkupAndStylesheetFilesOnly\" applies to html, haml, jade, slim, xml, xsl, css, scss, sass, less and stylus.\nThe option \"always\" applies to all parts of the file regardless of markup/css.",
	"emmetShowAbbreviationSuggestions": "Shows possible Emmet abbreviations as suggestions. Not applicable in stylesheets or when emmet.showExpandedAbbreviation is set to \"never\".",
	"emmetIncludeLanguages": "Enable Emmet abbreviations in languages that are not supported by default. Add a mapping here between the language and emmet supported language.\n Eg: {\"vue-html\": \"html\", \"javascript\": \"javascriptreact\"}",
	"emmetVariables": "Variables to be used in Emmet snippets",
	"emmetTriggerExpansionOnTab": "When enabled, Emmet abbreviations are expanded when pressing TAB.",
34 35 36 37 38 39 40 41
	"emmetPreferences": "Preferences used to modify behavior of some actions and resolvers of Emmet.",
	"emmetPreferencesIntUnit": "Default unit for integer values",
	"emmetPreferencesFloatUnit": "Default unit for float values",
	"emmetPreferencesCssAfter": "Symbol to be placed at the end of CSS property when expanding CSS abbreviations",
	"emmetPreferencesSassAfter": "Symbol to be placed at the end of CSS property when expanding CSS abbreviations in Sass files",
	"emmetPreferencesStylusAfter": "Symbol to be placed at the end of CSS property when expanding CSS abbreviations in Stylus files",
	"emmetPreferencesCssBetween": "Symbol to be placed at the between CSS property and value when expanding CSS abbreviations",
	"emmetPreferencesSassBetween": "Symbol to be placed at the between CSS property and value when expanding CSS abbreviations in Sass files",
42
	"emmetPreferencesStylusBetween": "Symbol to be placed at the between CSS property and value when expanding CSS abbreviations in Stylus files",
43 44 45
	"emmetShowSuggestionsAsSnippets": "If true, then Emmet suggestions will show up as snippets allowing you to order them as per editor.snippetSuggestions setting.",
	"emmetPreferencesBemElementSeparator": "Element separator used for classes when using the BEM filter",
	"emmetPreferencesBemModifierSeparator": "Modifier separator used for classes when using the BEM filter",
46 47
	"emmetPreferencesFilterCommentBefore": "A definition of comment that should be placed before matched element when comment filter is applied.",
	"emmetPreferencesFilterCommentAfter": "A definition of comment that should be placed after matched element when comment filter is applied.",
48 49 50
	"emmetPreferencesFilterCommentTrigger": "A comma-separated list of attribute names that should exist in abbreviation for the comment filter to be applied",
	"emmetPreferencesFormatNoIndentTags": "An array of tag names that should not get inner indentation",
	"emmetPreferencesFormatForceIndentTags": "An array of tag names that should always get inner indentation",
51
	"emmetPreferencesAllowCompactBoolean": "If true, compact notation of boolean attributes are produced",
52 53 54
	"emmetPreferencesCssWebkitProperties": "Comma separated CSS properties that get the 'webkit' vendor prefix when used in Emmet abbreviation that starts with `-`. Set to empty string to always avoid the 'webkit' prefix.",
	"emmetPreferencesCssMozProperties": "Comma separated CSS properties that get the 'moz' vendor prefix when used in Emmet abbreviation that starts with `-`. Set to empty string to always avoid the 'moz' prefix.",
	"emmetPreferencesCssOProperties": "Comma separated CSS properties that get the 'o' vendor prefix when used in Emmet abbreviation that starts with `-`. Set to empty string to always avoid the 'o' prefix.",
55
	"emmetPreferencesCssMsProperties": "Comma separated CSS properties that get the 'ms' vendor prefix when used in Emmet abbreviation that starts with `-`. Set to empty string to always avoid the 'ms' prefix.",
56 57
	"emmetPreferencesCssFuzzySearchMinScore": "The minimum score (from 0 to 1) that fuzzy-matched abbreviation should achieve. Lower values may produce many false-positive matches, higher values may reduce possible matches.",
	"emmetOptimizeStylesheetParsing": "When set to false, the whole file is parsed to determine if current position is valid for expanding Emmet abbreviations. When set to true, only the content around the current position in css/scss/less files is parsed."
58
}