source: trunk/www.guidonia.net/wp/wp-includes/js/tinymce/langs/wp-langs.php@ 44

Last change on this file since 44 was 44, checked in by luciano, 14 years ago
File size: 22.8 KB
Line 
1<?php
2
3function mce_put_file( $path, $content ) {
4 if ( function_exists('file_put_contents') )
5 return @file_put_contents( $path, $content );
6
7 $newfile = false;
8 $fp = @fopen( $path, 'wb' );
9 if ($fp) {
10 $newfile = fwrite( $fp, $content );
11 fclose($fp);
12 }
13 return $newfile;
14}
15
16// escape text only if it needs translating
17function mce_escape($text) {
18 global $language;
19
20 if ( 'en' == $language ) return $text;
21 else return esc_js($text);
22}
23
24$lang = 'tinyMCE.addI18n({' . $language . ':{
25common:{
26edit_confirm:"' . mce_escape( __('Do you want to use the WYSIWYG mode for this textarea?') ) . '",
27apply:"' . mce_escape( __('Apply') ) . '",
28insert:"' . mce_escape( __('Insert') ) . '",
29update:"' . mce_escape( __('Update') ) . '",
30cancel:"' . mce_escape( __('Cancel') ) . '",
31close:"' . mce_escape( __('Close') ) . '",
32browse:"' . mce_escape( __('Browse') ) . '",
33class_name:"' . mce_escape( __('Class') ) . '",
34not_set:"' . mce_escape( __('-- Not set --') ) . '",
35clipboard_msg:"' . mce_escape( __('Copy/Cut/Paste is not available in Mozilla and Firefox.') ) . '",
36clipboard_no_support:"' . mce_escape( __('Currently not supported by your browser, use keyboard shortcuts instead.') ) . '",
37popup_blocked:"' . mce_escape( __('Sorry, but we have noticed that your popup-blocker has disabled a window that provides application functionality. You will need to disable popup blocking on this site in order to fully utilize this tool.') ) . '",
38invalid_data:"' . mce_escape( __('Error: Invalid values entered, these are marked in red.') ) . '",
39more_colors:"' . mce_escape( __('More colors') ) . '"
40},
41contextmenu:{
42align:"' . mce_escape( __('Alignment') ) . '",
43left:"' . mce_escape( __('Left') ) . '",
44center:"' . mce_escape( __('Center') ) . '",
45right:"' . mce_escape( __('Right') ) . '",
46full:"' . mce_escape( __('Full') ) . '"
47},
48insertdatetime:{
49date_fmt:"' . mce_escape( __('%Y-%m-%d') ) . '",
50time_fmt:"' . mce_escape( __('%H:%M:%S') ) . '",
51insertdate_desc:"' . mce_escape( __('Insert date') ) . '",
52inserttime_desc:"' . mce_escape( __('Insert time') ) . '",
53months_long:"' . mce_escape( __('January').','.__('February').','.__('March').','.__('April').','.__('May').','.__('June').','.__('July').','.__('August').','.__('September').','.__('October').','.__('November').','.__('December') ) . '",
54months_short:"' . mce_escape( __('Jan_January_abbreviation').','.__('Feb_February_abbreviation').','.__('Mar_March_abbreviation').','.__('Apr_April_abbreviation').','.__('May_May_abbreviation').','.__('Jun_June_abbreviation').','.__('Jul_July_abbreviation').','.__('Aug_August_abbreviation').','.__('Sep_September_abbreviation').','.__('Oct_October_abbreviation').','.__('Nov_November_abbreviation').','.__('Dec_December_abbreviation') ) . '",
55day_long:"' . mce_escape( __('Sunday').','.__('Monday').','.__('Tuesday').','.__('Wednesday').','.__('Thursday').','.__('Friday').','.__('Saturday') ) . '",
56day_short:"' . mce_escape( __('Sun').','.__('Mon').','.__('Tue').','.__('Wed').','.__('Thu').','.__('Fri').','.__('Sat') ) . '"
57},
58print:{
59print_desc:"' . mce_escape( __('Print') ) . '"
60},
61preview:{
62preview_desc:"' . mce_escape( __('Preview') ) . '"
63},
64directionality:{
65ltr_desc:"' . mce_escape( __('Direction left to right') ) . '",
66rtl_desc:"' . mce_escape( __('Direction right to left') ) . '"
67},
68layer:{
69insertlayer_desc:"' . mce_escape( __('Insert new layer') ) . '",
70forward_desc:"' . mce_escape( __('Move forward') ) . '",
71backward_desc:"' . mce_escape( __('Move backward') ) . '",
72absolute_desc:"' . mce_escape( __('Toggle absolute positioning') ) . '",
73content:"' . mce_escape( __('New layer...') ) . '"
74},
75save:{
76save_desc:"' . mce_escape( __('Save') ) . '",
77cancel_desc:"' . mce_escape( __('Cancel all changes') ) . '"
78},
79nonbreaking:{
80nonbreaking_desc:"' . mce_escape( __('Insert non-breaking space character') ) . '"
81},
82iespell:{
83iespell_desc:"' . mce_escape( __('Run spell checking') ) . '",
84download:"' . mce_escape( __('ieSpell not detected. Do you want to install it now?') ) . '"
85},
86advhr:{
87advhr_desc:"' . mce_escape( __('Horizontale rule') ) . '"
88},
89emotions:{
90emotions_desc:"' . mce_escape( __('Emotions') ) . '"
91},
92searchreplace:{
93search_desc:"' . mce_escape( __('Find') ) . '",
94replace_desc:"' . mce_escape( __('Find/Replace') ) . '"
95},
96advimage:{
97image_desc:"' . mce_escape( __('Insert/edit image') ) . '"
98},
99advlink:{
100link_desc:"' . mce_escape( __('Insert/edit link') ) . '"
101},
102xhtmlxtras:{
103cite_desc:"' . mce_escape( __('Citation') ) . '",
104abbr_desc:"' . mce_escape( __('Abbreviation') ) . '",
105acronym_desc:"' . mce_escape( __('Acronym') ) . '",
106del_desc:"' . mce_escape( __('Deletion') ) . '",
107ins_desc:"' . mce_escape( __('Insertion') ) . '",
108attribs_desc:"' . mce_escape( __('Insert/Edit Attributes') ) . '"
109},
110style:{
111desc:"' . mce_escape( __('Edit CSS Style') ) . '"
112},
113paste:{
114paste_text_desc:"' . mce_escape( __('Paste as Plain Text') ) . '",
115paste_word_desc:"' . mce_escape( __('Paste from Word') ) . '",
116selectall_desc:"' . mce_escape( __('Select All') ) . '"
117},
118paste_dlg:{
119text_title:"' . mce_escape( __('Use CTRL+V on your keyboard to paste the text into the window.') ) . '",
120text_linebreaks:"' . mce_escape( __('Keep linebreaks') ) . '",
121word_title:"' . mce_escape( __('Use CTRL+V on your keyboard to paste the text into the window.') ) . '"
122},
123table:{
124desc:"' . mce_escape( __('Inserts a new table') ) . '",
125row_before_desc:"' . mce_escape( __('Insert row before') ) . '",
126row_after_desc:"' . mce_escape( __('Insert row after') ) . '",
127delete_row_desc:"' . mce_escape( __('Delete row') ) . '",
128col_before_desc:"' . mce_escape( __('Insert column before') ) . '",
129col_after_desc:"' . mce_escape( __('Insert column after') ) . '",
130delete_col_desc:"' . mce_escape( __('Remove column') ) . '",
131split_cells_desc:"' . mce_escape( __('Split merged table cells') ) . '",
132merge_cells_desc:"' . mce_escape( __('Merge table cells') ) . '",
133row_desc:"' . mce_escape( __('Table row properties') ) . '",
134cell_desc:"' . mce_escape( __('Table cell properties') ) . '",
135props_desc:"' . mce_escape( __('Table properties') ) . '",
136paste_row_before_desc:"' . mce_escape( __('Paste table row before') ) . '",
137paste_row_after_desc:"' . mce_escape( __('Paste table row after') ) . '",
138cut_row_desc:"' . mce_escape( __('Cut table row') ) . '",
139copy_row_desc:"' . mce_escape( __('Copy table row') ) . '",
140del:"' . mce_escape( __('Delete table') ) . '",
141row:"' . mce_escape( __('Row') ) . '",
142col:"' . mce_escape( __('Column') ) . '",
143cell:"' . mce_escape( __('Cell') ) . '"
144},
145autosave:{
146unload_msg:"' . mce_escape( __('The changes you made will be lost if you navigate away from this page.') ) . '"
147},
148fullscreen:{
149desc:"' . mce_escape( __('Toggle fullscreen mode') ) . ' (Alt+Shift+G)"
150},
151media:{
152desc:"' . mce_escape( __('Insert / edit embedded media') ) . '",
153delta_width:"' . /* translators: Extra width for the media popup in pixels */ mce_escape( _x('0', 'media popup width') ) . '",
154delta_height:"' . /* translators: Extra height for the media popup in pixels */ mce_escape( _x('0', 'media popup height') ) . '",
155edit:"' . mce_escape( __('Edit embedded media') ) . '"
156},
157fullpage:{
158desc:"' . mce_escape( __('Document properties') ) . '"
159},
160template:{
161desc:"' . mce_escape( __('Insert predefined template content') ) . '"
162},
163visualchars:{
164desc:"' . mce_escape( __('Visual control characters on/off.') ) . '"
165},
166spellchecker:{
167desc:"' . mce_escape( __('Toggle spellchecker') ) . ' (Alt+Shift+N)",
168menu:"' . mce_escape( __('Spellchecker settings') ) . '",
169ignore_word:"' . mce_escape( __('Ignore word') ) . '",
170ignore_words:"' . mce_escape( __('Ignore all') ) . '",
171langs:"' . mce_escape( __('Languages') ) . '",
172wait:"' . mce_escape( __('Please wait...') ) . '",
173sug:"' . mce_escape( __('Suggestions') ) . '",
174no_sug:"' . mce_escape( __('No suggestions') ) . '",
175no_mpell:"' . mce_escape( __('No misspellings found.') ) . '"
176},
177pagebreak:{
178desc:"' . mce_escape( __('Insert page break.') ) . '"
179}}});
180
181tinyMCE.addI18n("' . $language . '.advanced",{
182style_select:"' . mce_escape( /* translators: TinyMCE font styles */ _x('Styles', 'TinyMCE font styles') ) . '",
183font_size:"' . mce_escape( __('Font size') ) . '",
184fontdefault:"' . mce_escape( __('Font family') ) . '",
185block:"' . mce_escape( __('Format') ) . '",
186paragraph:"' . mce_escape( __('Paragraph') ) . '",
187div:"' . mce_escape( __('Div') ) . '",
188address:"' . mce_escape( __('Address') ) . '",
189pre:"' . mce_escape( __('Preformatted') ) . '",
190h1:"' . mce_escape( __('Heading 1') ) . '",
191h2:"' . mce_escape( __('Heading 2') ) . '",
192h3:"' . mce_escape( __('Heading 3') ) . '",
193h4:"' . mce_escape( __('Heading 4') ) . '",
194h5:"' . mce_escape( __('Heading 5') ) . '",
195h6:"' . mce_escape( __('Heading 6') ) . '",
196blockquote:"' . mce_escape( __('Blockquote') ) . '",
197code:"' . mce_escape( __('Code') ) . '",
198samp:"' . mce_escape( __('Code sample') ) . '",
199dt:"' . mce_escape( __('Definition term ') ) . '",
200dd:"' . mce_escape( __('Definition description') ) . '",
201bold_desc:"' . mce_escape( __('Bold') ) . ' (Ctrl / Alt+Shift + B)",
202italic_desc:"' . mce_escape( __('Italic') ) . ' (Ctrl / Alt+Shift + I)",
203underline_desc:"' . mce_escape( __('Underline') ) . '",
204striketrough_desc:"' . mce_escape( __('Strikethrough') ) . ' (Alt+Shift+D)",
205justifyleft_desc:"' . mce_escape( __('Align left') ) . ' (Alt+Shift+L)",
206justifycenter_desc:"' . mce_escape( __('Align center') ) . ' (Alt+Shift+C)",
207justifyright_desc:"' . mce_escape( __('Align right') ) . ' (Alt+Shift+R)",
208justifyfull_desc:"' . mce_escape( __('Align full') ) . ' (Alt+Shift+J)",
209bullist_desc:"' . mce_escape( __('Unordered list') ) . ' (Alt+Shift+U)",
210numlist_desc:"' . mce_escape( __('Ordered list') ) . ' (Alt+Shift+O)",
211outdent_desc:"' . mce_escape( __('Outdent') ) . '",
212indent_desc:"' . mce_escape( __('Indent') ) . '",
213undo_desc:"' . mce_escape( __('Undo') ) . ' (Ctrl+Z)",
214redo_desc:"' . mce_escape( __('Redo') ) . ' (Ctrl+Y)",
215link_desc:"' . mce_escape( __('Insert/edit link') ) . ' (Alt+Shift+A)",
216link_delta_width:"' . /* translators: Extra width for the link popup in pixels */ mce_escape( _x('0', 'link popup width') ) . '",
217link_delta_height:"' . /* translators: Extra height for the link popup in pixels */ mce_escape( _x('0', 'link popup height') ) . '",
218unlink_desc:"' . mce_escape( __('Unlink') ) . ' (Alt+Shift+S)",
219image_desc:"' . mce_escape( __('Insert/edit image') ) . ' (Alt+Shift+M)",
220image_delta_width:"' . /* translators: Extra width for the image popup in pixels */ mce_escape( _x('0', 'image popup width') ) . '",
221image_delta_height:"' . /* translators: Extra height for the image popup in pixels */ mce_escape( _x('0', 'image popup height') ) . '",
222cleanup_desc:"' . mce_escape( __('Cleanup messy code') ) . '",
223code_desc:"' . mce_escape( __('Edit HTML Source') ) . '",
224sub_desc:"' . mce_escape( __('Subscript') ) . '",
225sup_desc:"' . mce_escape( __('Superscript') ) . '",
226hr_desc:"' . mce_escape( __('Insert horizontal ruler') ) . '",
227removeformat_desc:"' . mce_escape( __('Remove formatting') ) . '",
228forecolor_desc:"' . mce_escape( __('Select text color') ) . '",
229backcolor_desc:"' . mce_escape( __('Select background color') ) . '",
230charmap_desc:"' . mce_escape( __('Insert custom character') ) . '",
231visualaid_desc:"' . mce_escape( __('Toggle guidelines/invisible elements') ) . '",
232anchor_desc:"' . mce_escape( __('Insert/edit anchor') ) . '",
233cut_desc:"' . mce_escape( __('Cut') ) . '",
234copy_desc:"' . mce_escape( __('Copy') ) . '",
235paste_desc:"' . mce_escape( __('Paste') ) . '",
236image_props_desc:"' . mce_escape( __('Image properties') ) . '",
237newdocument_desc:"' . mce_escape( __('New document') ) . '",
238help_desc:"' . mce_escape( __('Help') ) . '",
239blockquote_desc:"' . mce_escape( __('Blockquote') ) . ' (Alt+Shift+Q)",
240clipboard_msg:"' . mce_escape( __('Copy/Cut/Paste is not available in Mozilla and Firefox.') ) . '",
241path:"' . mce_escape( __('Path') ) . '",
242newdocument:"' . mce_escape( __('Are you sure you want to clear all contents?') ) . '",
243toolbar_focus:"' . mce_escape( __('Jump to tool buttons - Alt+Q, Jump to editor - Alt-Z, Jump to element path - Alt-X') ) . '",
244more_colors:"' . mce_escape( __('More colors') ) . '",
245colorpicker_delta_width:"' . /* translators: Extra width for the colorpicker popup in pixels */ mce_escape( _x('0', 'colorpicker popup width') ) . '",
246colorpicker_delta_height:"' . /* translators: Extra height for the colorpicker popup in pixels */ mce_escape( _x('0', 'colorpicker popup height') ) . '"
247});
248
249tinyMCE.addI18n("' . $language . '.advanced_dlg",{
250about_title:"' . mce_escape( __('About TinyMCE') ) . '",
251about_general:"' . mce_escape( __('About') ) . '",
252about_help:"' . mce_escape( __('Help') ) . '",
253about_license:"' . mce_escape( __('License') ) . '",
254about_plugins:"' . mce_escape( __('Plugins') ) . '",
255about_plugin:"' . mce_escape( __('Plugin') ) . '",
256about_author:"' . mce_escape( __('Author') ) . '",
257about_version:"' . mce_escape( __('Version') ) . '",
258about_loaded:"' . mce_escape( __('Loaded plugins') ) . '",
259anchor_title:"' . mce_escape( __('Insert/edit anchor') ) . '",
260anchor_name:"' . mce_escape( __('Anchor name') ) . '",
261code_title:"' . mce_escape( __('HTML Source Editor') ) . '",
262code_wordwrap:"' . mce_escape( __('Word wrap') ) . '",
263colorpicker_title:"' . mce_escape( __('Select a color') ) . '",
264colorpicker_picker_tab:"' . mce_escape( __('Picker') ) . '",
265colorpicker_picker_title:"' . mce_escape( __('Color picker') ) . '",
266colorpicker_palette_tab:"' . mce_escape( __('Palette') ) . '",
267colorpicker_palette_title:"' . mce_escape( __('Palette colors') ) . '",
268colorpicker_named_tab:"' . mce_escape( __('Named') ) . '",
269colorpicker_named_title:"' . mce_escape( __('Named colors') ) . '",
270colorpicker_color:"' . mce_escape( __('Color:') ) . '",
271colorpicker_name:"' . mce_escape( __('Name:') ) . '",
272charmap_title:"' . mce_escape( __('Select custom character') ) . '",
273image_title:"' . mce_escape( __('Insert/edit image') ) . '",
274image_src:"' . mce_escape( __('Image URL') ) . '",
275image_alt:"' . mce_escape( __('Image description') ) . '",
276image_list:"' . mce_escape( __('Image list') ) . '",
277image_border:"' . mce_escape( __('Border') ) . '",
278image_dimensions:"' . mce_escape( __('Dimensions') ) . '",
279image_vspace:"' . mce_escape( __('Vertical space') ) . '",
280image_hspace:"' . mce_escape( __('Horizontal space') ) . '",
281image_align:"' . mce_escape( __('Alignment') ) . '",
282image_align_baseline:"' . mce_escape( __('Baseline') ) . '",
283image_align_top:"' . mce_escape( __('Top') ) . '",
284image_align_middle:"' . mce_escape( __('Middle') ) . '",
285image_align_bottom:"' . mce_escape( __('Bottom') ) . '",
286image_align_texttop:"' . mce_escape( __('Text top') ) . '",
287image_align_textbottom:"' . mce_escape( __('Text bottom') ) . '",
288image_align_left:"' . mce_escape( __('Left') ) . '",
289image_align_right:"' . mce_escape( __('Right') ) . '",
290link_title:"' . mce_escape( __('Insert/edit link') ) . '",
291link_url:"' . mce_escape( __('Link URL') ) . '",
292link_target:"' . mce_escape( __('Target') ) . '",
293link_target_same:"' . mce_escape( __('Open link in the same window') ) . '",
294link_target_blank:"' . mce_escape( __('Open link in a new window') ) . '",
295link_titlefield:"' . mce_escape( __('Title') ) . '",
296link_is_email:"' . mce_escape( __('The URL you entered seems to be an email address, do you want to add the required mailto: prefix?') ) . '",
297link_is_external:"' . mce_escape( __('The URL you entered seems to external link, do you want to add the required http:// prefix?') ) . '",
298link_list:"' . mce_escape( __('Link list') ) . '"
299});
300
301tinyMCE.addI18n("' . $language . '.media_dlg",{
302title:"' . mce_escape( __('Insert / edit embedded media') ) . '",
303general:"' . mce_escape( __('General') ) . '",
304advanced:"' . mce_escape( __('Advanced') ) . '",
305file:"' . mce_escape( __('File/URL') ) . '",
306list:"' . mce_escape( __('List') ) . '",
307size:"' . mce_escape( __('Dimensions') ) . '",
308preview:"' . mce_escape( __('Preview') ) . '",
309constrain_proportions:"' . mce_escape( __('Constrain proportions') ) . '",
310type:"' . mce_escape( __('Type') ) . '",
311id:"' . mce_escape( __('Id') ) . '",
312name:"' . mce_escape( __('Name') ) . '",
313class_name:"' . mce_escape( __('Class') ) . '",
314vspace:"' . mce_escape( __('V-Space') ) . '",
315hspace:"' . mce_escape( __('H-Space') ) . '",
316play:"' . mce_escape( __('Auto play') ) . '",
317loop:"' . mce_escape( __('Loop') ) . '",
318menu:"' . mce_escape( __('Show menu') ) . '",
319quality:"' . mce_escape( __('Quality') ) . '",
320scale:"' . mce_escape( __('Scale') ) . '",
321align:"' . mce_escape( __('Align') ) . '",
322salign:"' . mce_escape( __('SAlign') ) . '",
323wmode:"' . mce_escape( __('WMode') ) . '",
324bgcolor:"' . mce_escape( __('Background') ) . '",
325base:"' . mce_escape( __('Base') ) . '",
326flashvars:"' . mce_escape( __('Flashvars') ) . '",
327liveconnect:"' . mce_escape( __('SWLiveConnect') ) . '",
328autohref:"' . mce_escape( __('AutoHREF') ) . '",
329cache:"' . mce_escape( __('Cache') ) . '",
330hidden:"' . mce_escape( __('Hidden') ) . '",
331controller:"' . mce_escape( __('Controller') ) . '",
332kioskmode:"' . mce_escape( __('Kiosk mode') ) . '",
333playeveryframe:"' . mce_escape( __('Play every frame') ) . '",
334targetcache:"' . mce_escape( __('Target cache') ) . '",
335correction:"' . mce_escape( __('No correction') ) . '",
336enablejavascript:"' . mce_escape( __('Enable JavaScript') ) . '",
337starttime:"' . mce_escape( __('Start time') ) . '",
338endtime:"' . mce_escape( __('End time') ) . '",
339href:"' . mce_escape( __('Href') ) . '",
340qtsrcchokespeed:"' . mce_escape( __('Choke speed') ) . '",
341target:"' . mce_escape( __('Target') ) . '",
342volume:"' . mce_escape( __('Volume') ) . '",
343autostart:"' . mce_escape( __('Auto start') ) . '",
344enabled:"' . mce_escape( __('Enabled') ) . '",
345fullscreen:"' . mce_escape( __('Fullscreen') ) . '",
346invokeurls:"' . mce_escape( __('Invoke URLs') ) . '",
347mute:"' . mce_escape( __('Mute') ) . '",
348stretchtofit:"' . mce_escape( __('Stretch to fit') ) . '",
349windowlessvideo:"' . mce_escape( __('Windowless video') ) . '",
350balance:"' . mce_escape( __('Balance') ) . '",
351baseurl:"' . mce_escape( __('Base URL') ) . '",
352captioningid:"' . mce_escape( __('Captioning id') ) . '",
353currentmarker:"' . mce_escape( __('Current marker') ) . '",
354currentposition:"' . mce_escape( __('Current position') ) . '",
355defaultframe:"' . mce_escape( __('Default frame') ) . '",
356playcount:"' . mce_escape( __('Play count') ) . '",
357rate:"' . mce_escape( __('Rate') ) . '",
358uimode:"' . mce_escape( __('UI Mode') ) . '",
359flash_options:"' . mce_escape( __('Flash options') ) . '",
360qt_options:"' . mce_escape( __('Quicktime options') ) . '",
361wmp_options:"' . mce_escape( __('Windows media player options') ) . '",
362rmp_options:"' . mce_escape( __('Real media player options') ) . '",
363shockwave_options:"' . mce_escape( __('Shockwave options') ) . '",
364autogotourl:"' . mce_escape( __('Auto goto URL') ) . '",
365center:"' . mce_escape( __('Center') ) . '",
366imagestatus:"' . mce_escape( __('Image status') ) . '",
367maintainaspect:"' . mce_escape( __('Maintain aspect') ) . '",
368nojava:"' . mce_escape( __('No java') ) . '",
369prefetch:"' . mce_escape( __('Prefetch') ) . '",
370shuffle:"' . mce_escape( __('Shuffle') ) . '",
371console:"' . mce_escape( __('Console') ) . '",
372numloop:"' . mce_escape( __('Num loops') ) . '",
373controls:"' . mce_escape( __('Controls') ) . '",
374scriptcallbacks:"' . mce_escape( __('Script callbacks') ) . '",
375swstretchstyle:"' . mce_escape( __('Stretch style') ) . '",
376swstretchhalign:"' . mce_escape( __('Stretch H-Align') ) . '",
377swstretchvalign:"' . mce_escape( __('Stretch V-Align') ) . '",
378sound:"' . mce_escape( __('Sound') ) . '",
379progress:"' . mce_escape( __('Progress') ) . '",
380qtsrc:"' . mce_escape( __('QT Src') ) . '",
381qt_stream_warn:"' . mce_escape( __('Streamed rtsp resources should be added to the QT Src field under the advanced tab.') ) . '",
382align_top:"' . mce_escape( __('Top') ) . '",
383align_right:"' . mce_escape( __('Right') ) . '",
384align_bottom:"' . mce_escape( __('Bottom') ) . '",
385align_left:"' . mce_escape( __('Left') ) . '",
386align_center:"' . mce_escape( __('Center') ) . '",
387align_top_left:"' . mce_escape( __('Top left') ) . '",
388align_top_right:"' . mce_escape( __('Top right') ) . '",
389align_bottom_left:"' . mce_escape( __('Bottom left') ) . '",
390align_bottom_right:"' . mce_escape( __('Bottom right') ) . '",
391flv_options:"' . mce_escape( __('Flash video options') ) . '",
392flv_scalemode:"' . mce_escape( __('Scale mode') ) . '",
393flv_buffer:"' . mce_escape( __('Buffer') ) . '",
394flv_startimage:"' . mce_escape( __('Start image') ) . '",
395flv_starttime:"' . mce_escape( __('Start time') ) . '",
396flv_defaultvolume:"' . mce_escape( __('Default volume') ) . '",
397flv_hiddengui:"' . mce_escape( __('Hidden GUI') ) . '",
398flv_autostart:"' . mce_escape( __('Auto start') ) . '",
399flv_loop:"' . mce_escape( __('Loop') ) . '",
400flv_showscalemodes:"' . mce_escape( __('Show scale modes') ) . '",
401flv_smoothvideo:"' . mce_escape( __('Smooth video') ) . '",
402flv_jscallback:"' . mce_escape( __('JS Callback') ) . '"
403});
404
405tinyMCE.addI18n("' . $language . '.wordpress",{
406wp_adv_desc:"' . mce_escape( __('Show/Hide Kitchen Sink') ) . ' (Alt+Shift+Z)",
407wp_more_desc:"' . mce_escape( __('Insert More tag') ) . ' (Alt+Shift+T)",
408wp_page_desc:"' . mce_escape( __('Insert Page break') ) . ' (Alt+Shift+P)",
409wp_help_desc:"' . mce_escape( __('Help') ) . ' (Alt+Shift+H)",
410wp_more_alt:"' . mce_escape( __('More...') ) . '",
411wp_page_alt:"' . mce_escape( __('Next page...') ) . '",
412add_media:"' . mce_escape( __('Add Media') ) . '",
413add_image:"' . mce_escape( __('Add an Image') ) . '",
414add_video:"' . mce_escape( __('Add Video') ) . '",
415add_audio:"' . mce_escape( __('Add Audio') ) . '",
416editgallery:"' . mce_escape( __('Edit Gallery') ) . '",
417delgallery:"' . mce_escape( __('Delete Gallery') ) . '"
418});
419
420tinyMCE.addI18n("' . $language . '.wpeditimage",{
421edit_img:"' . mce_escape( __('Edit Image') ) . '",
422del_img:"' . mce_escape( __('Delete Image') ) . '",
423adv_settings:"' . mce_escape( __('Advanced Settings') ) . '",
424none:"' . mce_escape( __('None') ) . '",
425size:"' . mce_escape( __('Size') ) . '",
426thumbnail:"' . mce_escape( __('Thumbnail') ) . '",
427medium:"' . mce_escape( __('Medium') ) . '",
428full_size:"' . mce_escape( __('Full Size') ) . '",
429current_link:"' . mce_escape( __('Current Link') ) . '",
430link_to_img:"' . mce_escape( __('Link to Image') ) . '",
431link_help:"' . mce_escape( __('Enter a link URL or click above for presets.') ) . '",
432adv_img_settings:"' . mce_escape( __('Advanced Image Settings') ) . '",
433source:"' . mce_escape( __('Source') ) . '",
434width:"' . mce_escape( __('Width') ) . '",
435height:"' . mce_escape( __('Height') ) . '",
436orig_size:"' . mce_escape( __('Original Size') ) . '",
437css:"' . mce_escape( __('CSS Class') ) . '",
438adv_link_settings:"' . mce_escape( __('Advanced Link Settings') ) . '",
439link_rel:"' . mce_escape( __('Link Rel') ) . '",
440height:"' . mce_escape( __('Height') ) . '",
441orig_size:"' . mce_escape( __('Original Size') ) . '",
442css:"' . mce_escape( __('CSS Class') ) . '",
443s60:"' . mce_escape( __('60%') ) . '",
444s70:"' . mce_escape( __('70%') ) . '",
445s80:"' . mce_escape( __('80%') ) . '",
446s90:"' . mce_escape( __('90%') ) . '",
447s100:"' . mce_escape( __('100%') ) . '",
448s110:"' . mce_escape( __('110%') ) . '",
449s120:"' . mce_escape( __('120%') ) . '",
450s130:"' . mce_escape( __('130%') ) . '",
451img_title:"' . mce_escape( __('Edit Image Title') ) . '",
452caption:"' . mce_escape( __('Edit Image Caption') ) . '",
453alt:"' . mce_escape( __('Edit Alternate Text') ) . '"
454});
455';
Note: See TracBrowser for help on using the repository browser.