-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.nls.json
40 lines (36 loc) · 3.05 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
{
"yayalint.yayalint_path.description": "path to yayalint.exe",
"yayalint.yaya_cfg.description": "path to yaya.txt",
"yayalint.trace.server.description": "Traces the communication between VS Code and the language server.",
"yayalint.analysis.complete": "yayalint analysis finished with {0} hints for {1} files.",
"yayalint.analysis.error.not_configured.yayalint_path": "yayalint_path is not configured.",
"yayalint.analysis.error.not_configured.yaya_cfg": "yaya_cfg is not configured.",
"yayalint.analysis.error.no_workspace_folder": "No workspace folder found.",
"yayalint.analysis.message.charge_updateing.header": "Updating yayalint charge:",
"yayalint.analysis.error.invalid_format": "Invalid format of analysis line: {0}",
"yayalint.analysis.info.unused_variable": "unused variable: {0}",
"yayalint.analysis.info.unused_function": "unused function: {0}",
"yayalint.analysis.warning.undefined_variable": "undefined variable: {0}",
"yayalint.analysis.warning.undefined_function": "undefined function: {0}",
"yayalint.analysis.warning.case_statement_contains_not_when_or_other": "case statement contains a clause that is neither a when clause nor others clause: {0}",
"yayalint.analysis.warning.assign_in_conditional_statement": "assignment in conditional statement: {0}",
"yayalint.analysis.warning.dic_not_found": "dic not found: {0}",
"yayalint.analysis.warning.dicdir_not_found": "dicdir not found: {0}",
"yayalint.analysis.warning.dic_or_dicdir_not_found": "dic or dicdir not found: {0}",
"yayalint.analysis.info.not_include_line_in_dicdir_config_file": "not include line in dicdir config file: {0}",
"yayalint.analysis.info.double_quoted_string_that_can_convert_to_single_quoted": "double quoted string that can convert to single quoted: {0}",
"yayalint.analysis.warning.single_quoted_string_that_may_need_double_quoted": "single quoted string that may need double quoted: {0}",
"yayalint.analysis.warning.maybe_unstopable_loop": "maybe unstopable loop: {0}",
"yayalint.analysis.error.syntax_error": "syntax error: {0}",
"yayalint.quickfix.unused_variable.remove": "Remove this unused variable",
"yayalint.quickfix.unused_function.remove": "Remove this unused function",
"yayalint.quickfix.undefined_variable.add": "Add this variable's definition",
"yayalint.quickfix.undefined_function.add.before": "Add this function's definition before current one",
"yayalint.quickfix.undefined_function.add.after": "Add this function's definition after current one",
"yayalint.quickfix.dic_not_found.add": "Add this dic",
"yayalint.quickfix.dic_not_found.remove": "Remove this line",
"yayalint.quickfix.dicdir_not_found.add": "Add this dicdir",
"yayalint.quickfix.dicdir_not_found.remove": "Remove this line",
"yayalint.quickfix.single_quoted_string_that_may_need_double_quoted.convert": "Convert to double quoted string",
"yayalint.quickfix.double_quoted_string_that_can_convert_to_single_quoted.convert": "Convert to single quoted string"
}