233
by mattgiuca
Added a shaky implementation of EditArea as the text editor. |
1 |
editAreaLoader.lang["en"]={ |
2 |
new_document: "new empty document", |
|
3 |
search_button: "search and replace", |
|
4 |
search_command: "search next / open search area", |
|
5 |
search: "search", |
|
6 |
replace: "replace", |
|
7 |
replace_command: "replace / open search area", |
|
8 |
find_next: "find next", |
|
9 |
replace_all: "replace all", |
|
10 |
reg_exp: "regular expressions", |
|
11 |
match_case: "match case", |
|
12 |
not_found: "not found.", |
|
13 |
occurrence_replaced: "occurences replaced.", |
|
14 |
search_field_empty: "Search field empty", |
|
15 |
restart_search_at_begin: "End of area reached. Restart at begin.", |
|
16 |
move_popup: "move search popup", |
|
17 |
font_size: "--Font size--", |
|
18 |
go_to_line: "go to line", |
|
19 |
go_to_line_prompt: "go to line number:", |
|
20 |
undo: "undo", |
|
21 |
redo: "redo", |
|
22 |
change_smooth_selection: "enable/disable some display features (smarter display but more CPU charge)", |
|
23 |
highlight: "toggle syntax highlight on/off", |
|
24 |
reset_highlight: "reset highlight (if desyncronized from text)", |
|
25 |
help: "about", |
|
26 |
save: "save", |
|
27 |
load: "load", |
|
28 |
line_abbr: "Ln", |
|
29 |
char_abbr: "Ch", |
|
30 |
position: "Position", |
|
31 |
total: "Total", |
|
32 |
close_popup: "close popup", |
|
33 |
shortcuts: "Shortcuts", |
|
34 |
add_tab: "add tabulation to text", |
|
35 |
remove_tab: "remove tabulation to text", |
|
36 |
about_notice: "Notice: syntax highlight function is only for small text", |
|
37 |
toggle: "Toggle editor", |
|
38 |
accesskey: "Accesskey", |
|
39 |
tab: "Tab", |
|
40 |
shift: "Shift", |
|
41 |
ctrl: "Ctrl", |
|
42 |
esc: "Esc", |
|
43 |
processing: "Processing...", |
|
44 |
fullscreen: "fullscreen", |
|
45 |
syntax_selection: "--Syntax--", |
|
46 |
syntax_css: "CSS", |
|
47 |
syntax_html: "HTML", |
|
48 |
syntax_js: "Javascript", |
|
49 |
syntax_php: "Php", |
|
50 |
syntax_python: "Python", |
|
51 |
syntax_vb: "Visual Basic", |
|
52 |
syntax_xml: "Xml", |
|
53 |
syntax_c: "C", |
|
54 |
syntax_cpp: "CPP", |
|
55 |
syntax_basic: "Basic", |
|
56 |
syntax_pas: "Pascal", |
|
57 |
syntax_brainfuck: "Brainfuck", |
|
58 |
syntax_sql: "SQL", |
|
59 |
close_tab: "Close file" |
|
60 |
};
|