-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.nls.json
34 lines (33 loc) · 3.27 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
{
"commands.countInFile.title": "Toggle Real-time Counter Visibility",
"commands.countInDirectory.title": "Count lines in directory",
"commands.countInWorkspace.title": "Count lines in workspace",
"commands.outputAvailableLanguages.title": "Check available languages",
"commands.saveLanguageConfigurations.title": "Save the collected language configurations",
"configuration.useGitignore.description": "Whether to use '.gitignore' files for excluding files.",
"configuration.useFilesExclude.description": "Whether to use setting 'files.exclude' for excluding files.",
"configuration.maxFindFiles.description": "Maximum number of searchable files.",
"configuration.maxOpenFiles.description": "Maximum number of files that VSCodeCounter can read simultaneously.",
"configuration.printNumberWithCommas.description": "Whether to print a number with commas as thousands separators.(except for CSV)",
"configuration.ignoreUnsupportedFile.description": "Ignore unsupported files.",
"configuration.includeIncompleteLine.description": "Include lines that do not end in a newline (last line).",
"configuration.endOfLine.description": "A new line character to be used in the output file.",
"configuration.exclude.description": "Configure glob patterns for excluding files and folders.",
"configuration.include.description": "Configure glob patterns for including files and folders.",
"configuration.history.description": "Controls the number of recent result to keep in history. If it is greater than 1, save the results in separate directories.",
"configuration.countDirectLevelFiles.description": "Count the files in the direct level as a separate item.",
"configuration.outputDirectory.description": "Directory path for outputting results. Variables can be included in that path for when output is defined outside of the project directory.\n- `${workspaceName}`: workspace name\n- `${workspacePath}`: name based on the workspace path",
"configuration.outputAsText.description": "Whether to output the result as a text file.",
"configuration.outputAsCSV.description": "Whether to output the result as a CSV file.",
"configuration.outputAsMarkdown.description": "Whether to output the result as a Markdown file.",
"configuration.outputPreviewType.description": "Type of output file to preview after counting.",
"configuration.saveLocation.description": "Specify where to store the collected language configurations.",
"configuration.languageConfUri.description": "The destination file path or URI to be used if saveLocation `use languageConfUri` is specified.",
"configuration.languages.description": "Saved Language Configurations.",
"configuration.languages.aliases.description": "Name aliases for the language.",
"configuration.languages.filenames.description": "Filenames associated to the language.",
"configuration.languages.extensions.description": "File extensions associated to the language.",
"configuration.languages.lineComments.description": "The character sequence that starts a line comment.",
"configuration.languages.blockComments.description": "The character sequence indicating the beginning and end of the block comment.",
"configuration.languages.blockStrings.description": "The character sequence indicating the beginning and end of the block document(here document)."
}