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