-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.nls.json
74 lines (74 loc) · 7.67 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
64
65
66
67
68
69
70
71
72
73
74
{
"description": "Sets file header information globally or for a project, generate function comment quickly, support multiple languages.",
"turboFileHeader.addFileheader.title": "Turbo File Header: Add Fileheader",
"turboFileHeader.generateTemplateConfig.title": "Turbo File Header: Generate Custom Template Config File",
"turboFileHeader.batchUpdateFileheader.title": "Turbo File Header: Batch Update File Header",
"turboFileHeader.addFunctionComment.title": "Turbo File Header: Add Function Comment",
"configuration.title": "Turbo File Header",
"turboFileHeader.userName.description": "The fixed current user. The default is from your VCS",
"turboFileHeader.userEmail.description": "The fixed current user email. the default is from your VCS",
"turboFileHeader.companyName.description": "Your company name, if not set, it will be use the value of `userName`",
"turboFileHeader.dateFormat.markdownDescription": "The date format, see [Dayjs Document](https://momentjs.com/docs/#/displaying/format)",
"turboFileHeader.autoInsertOnCreateFile.description": "Auto insert fileheader when create file",
"turboFileHeader.autoUpdateOnSave.description": "Auto update fileheader when save file",
"turboFileHeader.include.description": "Insert header to files which match the glob pattern. Affects batchUpdateFileheader command and while autoInsertOnCreateFile is true",
"turboFileHeader.exclude.description": "Do not insert header to files which match the glob pattern",
"turboFileHeader.disableLabels.markdownDescription": "Disable some fields in default fileheader. This properties can not affect the custom fileheader config file.",
"turboFileHeader.customVariables.description": "Custom variables that can be referenced in the header support {{name}} form to be referenced, and {{now}} to refer to built-in variables.",
"turboFileHeader.customVariables.items.properties.name.description": "The name of custom variable. Can be used in `turboFileHeader.fileheader` with {{name}}.",
"turboFileHeader.customVariables.items.properties.value.description": "The value of custom field. Can use {{name}} built-in variable.",
"turboFileHeader.fileheader.description": "File header, if set, will be overwrite efault file header",
"turboFileHeader.fileheader.items.properties.label.description": "The left label of file header",
"turboFileHeader.fileheader.items.properties.value.description": "The value of file header",
"turboFileHeader.fileheader.items.properties.usePrevious.description": "Use the previous value",
"turboFileHeader.fileheader.items.properties.wholeLine.description": "Is whole line file header(don't display the key)",
"turboFileHeader.patternMultiline.description": "Match the original file header to get information using multiline regex pattern.",
"turboFileHeader.updateHeaderForModifiedFilesOnly.description": "Only dirty file to support update file header.",
"turboFileHeader.languages.description": "Custom Language to support.",
"turboFileHeader.languages.items.title": "Language item.",
"turboFileHeader.languages.items.properties.id.description": "Language id.",
"turboFileHeader.languages.items.properties.extensions.description": "Language file extensions.",
"turboFileHeader.languages.items.properties.extensions.items.description": "file extension.",
"turboFileHeader.languages.items.properties.aliases.description": "Language aliases.",
"turboFileHeader.languages.items.properties.aliases.items.description": "Language alias.",
"turboFileHeader.languages.items.properties.configuration.title": "Language configuration.",
"turboFileHeader.languages.items.properties.configuration.description": "Language configuration.",
"turboFileHeader.languages.items.properties.configuration.properties.description": "Language comments.",
"turboFileHeader.useJSDocStyle.description": "File header user JSDoc style comments for js/ts.",
"turboFileHeader.functionComment.description": "function comment settings.",
"turboFileHeader.functionComment.languagesSettings.description": "Language settings for function comment.",
"turboFileHeader.functionComment.languagesSettings.items.properties.languageId.markdownDescription": "LanguageId for [VSCode known identifiers](https://code.visualstudio.com/docs/languages/identifiers#_known-language-identifiers)",
"turboFileHeader.functionComment.languagesSettings.items.properties.defaultReturnName.description": "Function default return name.",
"turboFileHeader.functionComment.languagesSettings.items.properties.defaultReturnType.description": "Function default return type.",
"turboFileHeader.functionComment.languagesSettings.items.properties.defaultParamType.description": "Function default param type.",
"turboFileHeader.functionComment.languagesSettings.items.properties.typesUsingDefaultReturnType.description": "What type use defaultReturnType to display",
"turboFileHeader.functionComment.languagesSettings.items.properties.useTypeAlias.description": "Return type use type alias.",
"turboFileHeader.functionComment.languagesSettings.items.properties.paramNameBeforeType.description": "Param name before param type.",
"turboFileHeader.multilineComments.description": "Whether the multiline comment highlighter should be active.",
"turboFileHeader.highlightPlainText.description": "Whether the plaintext comment highlighter should be active.",
"turboFileHeader.tags.description": "Tags which are used to color the comments.",
"turboFileHeader.tags.items.title": "Tag item.",
"turboFileHeader.tags.items.properties.tag.description": "Name of tag, case insensitive, could be string or string[].",
"turboFileHeader.tags.items.properties.color.description": "Font color, eg: #FF2D00.",
"turboFileHeader.tags.items.properties.strikethrough.description": "Enable text strikethrough.",
"turboFileHeader.tags.items.properties.underline.description": "Enable text underline.",
"turboFileHeader.tags.items.properties.backgroundColor.description": "Background color, eg: transparent.",
"turboFileHeader.tags.items.properties.bold.description": "Set text font style to bold.",
"turboFileHeader.tags.items.properties.italic.description": "Set text font style to italic.",
"turboFileHeader.tagsLight.description": "Overwrite tags options for light themes.",
"turboFileHeader.tagsLight.items.properties.tag.description": "Name of tag, case insensitive, could be string or string[].",
"turboFileHeader.tagsLight.items.properties.color.description": "Font color, eg: #FF2D00.",
"turboFileHeader.tagsLight.items.properties.strikethrough.description": "Enable text strikethrough.",
"turboFileHeader.tagsLight.items.properties.underline.description": "Enable text underline.",
"turboFileHeader.tagsLight.items.properties.backgroundColor.description": "Background color, eg: transparent.",
"turboFileHeader.tagsLight.items.properties.bold.description": "Set text font style to bold.",
"turboFileHeader.tagsLight.items.properties.italic.description": "Set text font style to italic.",
"turboFileHeader.tagsDark.description": "Overwrite tags options for light themes.",
"turboFileHeader.tagsDark.items.properties.tag.description": "Name of tag, case insensitive, could be string or string[].",
"turboFileHeader.tagsDark.items.properties.color.description": "Font color, eg: #FF2D00.",
"turboFileHeader.tagsDark.items.properties.strikethrough.description": "Enable text strikethrough.",
"turboFileHeader.tagsDark.items.properties.underline.description": "Enable text underline.",
"turboFileHeader.tagsDark.items.properties.backgroundColor.description": "Background color, eg: transparent.",
"turboFileHeader.tagsDark.items.properties.bold.description": "Set text font style to bold.",
"turboFileHeader.tagsDark.items.properties.italic.description": "Set text font style to italic."
}