-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathen.py
More file actions
26 lines (26 loc) · 1.22 KB
/
en.py
File metadata and controls
26 lines (26 loc) · 1.22 KB
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
messages = {
# keys for the hello command
"welcome": "🌶️ Welcome to [bold red]SpiceCode[/]! 🌶️",
"description": "🔥 The [yellow]CLI tool[/] that makes your code [yellow]spicier[/] 🥵",
# error messages
"error": "Error:",
# keys for the analyze command output
"analyzing_file": "Analyzing file",
"line_count": "The file has {count} lines",
"function_count": "The file has {count} functions",
"comment_line_count": "The file has {count} comment lines",
"inline_comment_count": "The file has {count} inline comments",
# keys for analyze command checkbox menu
"select_stats": "Select stats to display:",
"line_count_option": "Line Count",
"function_count_option": "Function Count",
"comment_line_count_option": "Comment Line Count",
"inline_comment_count_option": "Inline Comment Count",
"no_stats_selected": "No stats selected. Analysis cancelled.",
"confirm_and_analyze": "Confirm and analyze",
"checkbox_hint": "(Use space to select, enter to confirm)",
# keys for the version command
"version_info": "SpiceCode Version:",
"version_not_found": "Version information not found in setup.py",
"setup_not_found": "Error: setup.py not found."
}