1
|
1 |
// UK lang variables
|
|
2 |
|
|
3 |
tinyMCE.addToLang('devkit',{
|
|
4 |
title : 'TinyMCE Development Kit',
|
|
5 |
info_tab : 'Info',
|
|
6 |
settings_tab : 'Settings',
|
|
7 |
log_tab : 'Log',
|
|
8 |
content_tab : 'Content',
|
|
9 |
command_states_tab : 'Commands',
|
|
10 |
undo_redo_tab : 'Undo/Redo',
|
|
11 |
misc_tab : 'Misc',
|
|
12 |
filter : 'Filter:',
|
|
13 |
clear_log : 'Clear log',
|
|
14 |
refresh : 'Refresh',
|
|
15 |
info_help : 'Press Refresh to view info.',
|
|
16 |
settings_help : 'Press Refresh to display the settings array for each TinyMCE_Control instance.',
|
|
17 |
content_help : 'Press Refresh to display the raw and cleaned HTML content for each TinyMCE_Control instance.',
|
|
18 |
command_states_help : 'Press Refresh to display the current command states from inst.queryCommandState. This list will also mark unsupported commands.',
|
|
19 |
undo_redo_help : 'Press Refresh to display the global and instance undo/redo levels.',
|
|
20 |
misc_help : 'Here are various tools for debugging and development purposes.',
|
|
21 |
debug_events : 'Debug events',
|
|
22 |
undo_diff : 'Diff undo levels'
|
|
23 |
});
|