5
5
"""
6
6
init exception
7
7
"""
8
- je_editor_init_error : str = "JEditor can't init "
9
- je_editor_init_exec_manager_exception : str = "JEditor can't init program manager"
8
+ je_editor_init_error : str = "JEditor failed to initialize "
9
+ je_editor_init_exec_manager_exception : str = "JEditor failed to initialize the program manager"
10
10
"""
11
11
exec exception
12
12
"""
13
- je_editor_exec_error : str = "JEditor exec error"
13
+ je_editor_exec_error : str = "JEditor execution error"
14
14
file_not_fond_error : str = "File not found"
15
15
compiler_not_found_error : str = "Compiler not found"
16
16
"""
17
17
shell exception
18
18
"""
19
- je_editor_shell_error : str = "JEditor run on shell error"
19
+ je_editor_shell_error : str = "JEditor shell execution error"
20
20
"""
21
21
file exception
22
22
"""
23
- je_editor_save_file_error : str = "JEditor save file error "
24
- je_editor_open_file_error : str = "JEditor open file error "
23
+ je_editor_save_file_error : str = "JEditor failed to save file"
24
+ je_editor_open_file_error : str = "JEditor failed to open file"
25
25
"""
26
26
json exception
27
27
"""
28
- cant_reformat_json_error : str = "Can't reformat json is type right ?"
29
- wrong_json_data_error : str = "Can't parser json "
30
- cant_find_json_error : str = "cant find json file"
31
- cant_save_json_error : str = "cant save json file"
28
+ cant_reformat_json_error : str = "Cannot reformat JSON: is the type correct ?"
29
+ wrong_json_data_error : str = "Failed to parse JSON "
30
+ cant_find_json_error : str = "Can't find JSON file"
31
+ cant_save_json_error : str = "Can't save JSON file"
32
32
"""
33
33
content data error
34
34
"""
35
- content_set_compiler_error : str = "When set compiler using content make an error "
36
- je_editor_content_file_error : str = "JEditor content file error"
35
+ content_set_compiler_error : str = "Error setting compiler using content"
36
+ je_editor_content_file_error : str = "JEditor content file error"
0 commit comments