-
+ AB179A7467BA0742D64E0475070C8341B4C076C5747608012392C361AF061EB63EDDAE164A59C3CD556D1F5CE16A62038A8E791B780B6EB48C44CD4A886FD17E
mp-wp/wp-includes/js/tinymce/langs/wp-langs.php
(0 . 0)(1 . 455)
118750 <?php
118751
118752 function mce_put_file( $path, $content ) {
118753 if ( function_exists('file_put_contents') )
118754 return @file_put_contents( $path, $content );
118755
118756 $newfile = false;
118757 $fp = @fopen( $path, 'wb' );
118758 if ($fp) {
118759 $newfile = fwrite( $fp, $content );
118760 fclose($fp);
118761 }
118762 return $newfile;
118763 }
118764
118765 // escape text only if it needs translating
118766 function mce_escape($text) {
118767 global $language;
118768
118769 if ( 'en' == $language ) return $text;
118770 else return js_escape($text);
118771 }
118772
118773 $lang = 'tinyMCE.addI18n({' . $language . ':{
118774 common:{
118775 edit_confirm:"' . mce_escape( __('Do you want to use the WYSIWYG mode for this textarea?') ) . '",
118776 apply:"' . mce_escape( __('Apply') ) . '",
118777 insert:"' . mce_escape( __('Insert') ) . '",
118778 update:"' . mce_escape( __('Update') ) . '",
118779 cancel:"' . mce_escape( __('Cancel') ) . '",
118780 close:"' . mce_escape( __('Close') ) . '",
118781 browse:"' . mce_escape( __('Browse') ) . '",
118782 class_name:"' . mce_escape( __('Class') ) . '",
118783 not_set:"' . mce_escape( __('-- Not set --') ) . '",
118784 clipboard_msg:"' . mce_escape( __('Copy/Cut/Paste is not available in Mozilla and Firefox.') ) . '",
118785 clipboard_no_support:"' . mce_escape( __('Currently not supported by your browser, use keyboard shortcuts instead.') ) . '",
118786 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.') ) . '",
118787 invalid_data:"' . mce_escape( __('Error: Invalid values entered, these are marked in red.') ) . '",
118788 more_colors:"' . mce_escape( __('More colors') ) . '"
118789 },
118790 contextmenu:{
118791 align:"' . mce_escape( __('Alignment') ) . '",
118792 left:"' . mce_escape( __('Left') ) . '",
118793 center:"' . mce_escape( __('Center') ) . '",
118794 right:"' . mce_escape( __('Right') ) . '",
118795 full:"' . mce_escape( __('Full') ) . '"
118796 },
118797 insertdatetime:{
118798 date_fmt:"' . mce_escape( __('%Y-%m-%d') ) . '",
118799 time_fmt:"' . mce_escape( __('%H:%M:%S') ) . '",
118800 insertdate_desc:"' . mce_escape( __('Insert date') ) . '",
118801 inserttime_desc:"' . mce_escape( __('Insert time') ) . '",
118802 months_long:"' . mce_escape( __('January').','.__('February').','.__('March').','.__('April').','.__('May').','.__('June').','.__('July').','.__('August').','.__('September').','.__('October').','.__('November').','.__('December') ) . '",
118803 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') ) . '",
118804 day_long:"' . mce_escape( __('Sunday').','.__('Monday').','.__('Tuesday').','.__('Wednesday').','.__('Thursday').','.__('Friday').','.__('Saturday') ) . '",
118805 day_short:"' . mce_escape( __('Sun').','.__('Mon').','.__('Tue').','.__('Wed').','.__('Thu').','.__('Fri').','.__('Sat') ) . '"
118806 },
118807 print:{
118808 print_desc:"' . mce_escape( __('Print') ) . '"
118809 },
118810 preview:{
118811 preview_desc:"' . mce_escape( __('Preview') ) . '"
118812 },
118813 directionality:{
118814 ltr_desc:"' . mce_escape( __('Direction left to right') ) . '",
118815 rtl_desc:"' . mce_escape( __('Direction right to left') ) . '"
118816 },
118817 layer:{
118818 insertlayer_desc:"' . mce_escape( __('Insert new layer') ) . '",
118819 forward_desc:"' . mce_escape( __('Move forward') ) . '",
118820 backward_desc:"' . mce_escape( __('Move backward') ) . '",
118821 absolute_desc:"' . mce_escape( __('Toggle absolute positioning') ) . '",
118822 content:"' . mce_escape( __('New layer...') ) . '"
118823 },
118824 save:{
118825 save_desc:"' . mce_escape( __('Save') ) . '",
118826 cancel_desc:"' . mce_escape( __('Cancel all changes') ) . '"
118827 },
118828 nonbreaking:{
118829 nonbreaking_desc:"' . mce_escape( __('Insert non-breaking space character') ) . '"
118830 },
118831 iespell:{
118832 iespell_desc:"' . mce_escape( __('Run spell checking') ) . '",
118833 download:"' . mce_escape( __('ieSpell not detected. Do you want to install it now?') ) . '"
118834 },
118835 advhr:{
118836 advhr_desc:"' . mce_escape( __('Horizontale rule') ) . '"
118837 },
118838 emotions:{
118839 emotions_desc:"' . mce_escape( __('Emotions') ) . '"
118840 },
118841 searchreplace:{
118842 search_desc:"' . mce_escape( __('Find') ) . '",
118843 replace_desc:"' . mce_escape( __('Find/Replace') ) . '"
118844 },
118845 advimage:{
118846 image_desc:"' . mce_escape( __('Insert/edit image') ) . '"
118847 },
118848 advlink:{
118849 link_desc:"' . mce_escape( __('Insert/edit link') ) . '"
118850 },
118851 xhtmlxtras:{
118852 cite_desc:"' . mce_escape( __('Citation') ) . '",
118853 abbr_desc:"' . mce_escape( __('Abbreviation') ) . '",
118854 acronym_desc:"' . mce_escape( __('Acronym') ) . '",
118855 del_desc:"' . mce_escape( __('Deletion') ) . '",
118856 ins_desc:"' . mce_escape( __('Insertion') ) . '",
118857 attribs_desc:"' . mce_escape( __('Insert/Edit Attributes') ) . '"
118858 },
118859 style:{
118860 desc:"' . mce_escape( __('Edit CSS Style') ) . '"
118861 },
118862 paste:{
118863 paste_text_desc:"' . mce_escape( __('Paste as Plain Text') ) . '",
118864 paste_word_desc:"' . mce_escape( __('Paste from Word') ) . '",
118865 selectall_desc:"' . mce_escape( __('Select All') ) . '"
118866 },
118867 paste_dlg:{
118868 text_title:"' . mce_escape( __('Use CTRL+V on your keyboard to paste the text into the window.') ) . '",
118869 text_linebreaks:"' . mce_escape( __('Keep linebreaks') ) . '",
118870 word_title:"' . mce_escape( __('Use CTRL+V on your keyboard to paste the text into the window.') ) . '"
118871 },
118872 table:{
118873 desc:"' . mce_escape( __('Inserts a new table') ) . '",
118874 row_before_desc:"' . mce_escape( __('Insert row before') ) . '",
118875 row_after_desc:"' . mce_escape( __('Insert row after') ) . '",
118876 delete_row_desc:"' . mce_escape( __('Delete row') ) . '",
118877 col_before_desc:"' . mce_escape( __('Insert column before') ) . '",
118878 col_after_desc:"' . mce_escape( __('Insert column after') ) . '",
118879 delete_col_desc:"' . mce_escape( __('Remove column') ) . '",
118880 split_cells_desc:"' . mce_escape( __('Split merged table cells') ) . '",
118881 merge_cells_desc:"' . mce_escape( __('Merge table cells') ) . '",
118882 row_desc:"' . mce_escape( __('Table row properties') ) . '",
118883 cell_desc:"' . mce_escape( __('Table cell properties') ) . '",
118884 props_desc:"' . mce_escape( __('Table properties') ) . '",
118885 paste_row_before_desc:"' . mce_escape( __('Paste table row before') ) . '",
118886 paste_row_after_desc:"' . mce_escape( __('Paste table row after') ) . '",
118887 cut_row_desc:"' . mce_escape( __('Cut table row') ) . '",
118888 copy_row_desc:"' . mce_escape( __('Copy table row') ) . '",
118889 del:"' . mce_escape( __('Delete table') ) . '",
118890 row:"' . mce_escape( __('Row') ) . '",
118891 col:"' . mce_escape( __('Column') ) . '",
118892 cell:"' . mce_escape( __('Cell') ) . '"
118893 },
118894 autosave:{
118895 unload_msg:"' . mce_escape( __('The changes you made will be lost if you navigate away from this page.') ) . '"
118896 },
118897 fullscreen:{
118898 desc:"' . mce_escape( __('Toggle fullscreen mode') ) . ' (Alt+Shift+G)"
118899 },
118900 media:{
118901 desc:"' . mce_escape( __('Insert / edit embedded media') ) . '",
118902 delta_width:"' . mce_escape( _c('0| Extra width for the media popup in pixels') ) . '",
118903 delta_height:"' . mce_escape( _c('0| Extra height for the media popup in pixels') ) . '",
118904 edit:"' . mce_escape( __('Edit embedded media') ) . '"
118905 },
118906 fullpage:{
118907 desc:"' . mce_escape( __('Document properties') ) . '"
118908 },
118909 template:{
118910 desc:"' . mce_escape( __('Insert predefined template content') ) . '"
118911 },
118912 visualchars:{
118913 desc:"' . mce_escape( __('Visual control characters on/off.') ) . '"
118914 },
118915 spellchecker:{
118916 desc:"' . mce_escape( __('Toggle spellchecker') ) . ' (Alt+Shift+N)",
118917 menu:"' . mce_escape( __('Spellchecker settings') ) . '",
118918 ignore_word:"' . mce_escape( __('Ignore word') ) . '",
118919 ignore_words:"' . mce_escape( __('Ignore all') ) . '",
118920 langs:"' . mce_escape( __('Languages') ) . '",
118921 wait:"' . mce_escape( __('Please wait...') ) . '",
118922 sug:"' . mce_escape( __('Suggestions') ) . '",
118923 no_sug:"' . mce_escape( __('No suggestions') ) . '",
118924 no_mpell:"' . mce_escape( __('No misspellings found.') ) . '"
118925 },
118926 pagebreak:{
118927 desc:"' . mce_escape( __('Insert page break.') ) . '"
118928 }}});
118929
118930 tinyMCE.addI18n("' . $language . '.advanced",{
118931 style_select:"' . mce_escape( __('Styles') ) . '",
118932 font_size:"' . mce_escape( __('Font size') ) . '",
118933 fontdefault:"' . mce_escape( __('Font family') ) . '",
118934 block:"' . mce_escape( __('Format') ) . '",
118935 paragraph:"' . mce_escape( __('Paragraph') ) . '",
118936 div:"' . mce_escape( __('Div') ) . '",
118937 address:"' . mce_escape( __('Address') ) . '",
118938 pre:"' . mce_escape( __('Preformatted') ) . '",
118939 h1:"' . mce_escape( __('Heading 1') ) . '",
118940 h2:"' . mce_escape( __('Heading 2') ) . '",
118941 h3:"' . mce_escape( __('Heading 3') ) . '",
118942 h4:"' . mce_escape( __('Heading 4') ) . '",
118943 h5:"' . mce_escape( __('Heading 5') ) . '",
118944 h6:"' . mce_escape( __('Heading 6') ) . '",
118945 blockquote:"' . mce_escape( __('Blockquote') ) . '",
118946 code:"' . mce_escape( __('Code') ) . '",
118947 samp:"' . mce_escape( __('Code sample') ) . '",
118948 dt:"' . mce_escape( __('Definition term ') ) . '",
118949 dd:"' . mce_escape( __('Definition description') ) . '",
118950 bold_desc:"' . mce_escape( __('Bold') ) . ' (Ctrl / Alt+Shift + B)",
118951 italic_desc:"' . mce_escape( __('Italic') ) . ' (Ctrl / Alt+Shift + I)",
118952 underline_desc:"' . mce_escape( __('Underline') ) . '",
118953 striketrough_desc:"' . mce_escape( __('Strikethrough') ) . ' (Alt+Shift+D)",
118954 justifyleft_desc:"' . mce_escape( __('Align left') ) . ' (Alt+Shift+L)",
118955 justifycenter_desc:"' . mce_escape( __('Align center') ) . ' (Alt+Shift+C)",
118956 justifyright_desc:"' . mce_escape( __('Align right') ) . ' (Alt+Shift+R)",
118957 justifyfull_desc:"' . mce_escape( __('Align full') ) . ' (Alt+Shift+J)",
118958 bullist_desc:"' . mce_escape( __('Unordered list') ) . ' (Alt+Shift+U)",
118959 numlist_desc:"' . mce_escape( __('Ordered list') ) . ' (Alt+Shift+O)",
118960 outdent_desc:"' . mce_escape( __('Outdent') ) . '",
118961 indent_desc:"' . mce_escape( __('Indent') ) . '",
118962 undo_desc:"' . mce_escape( __('Undo') ) . ' (Ctrl+Z)",
118963 redo_desc:"' . mce_escape( __('Redo') ) . ' (Ctrl+Y)",
118964 link_desc:"' . mce_escape( __('Insert/edit link') ) . ' (Alt+Shift+A)",
118965 link_delta_width:"' . mce_escape( _c('0| Extra width for the link popup in pixels') ) . '",
118966 link_delta_height:"' . mce_escape( _c('0| Extra height for the link popup in pixels') ) . '",
118967 unlink_desc:"' . mce_escape( __('Unlink') ) . ' (Alt+Shift+S)",
118968 image_desc:"' . mce_escape( __('Insert/edit image') ) . ' (Alt+Shift+M)",
118969 image_delta_width:"' . mce_escape( _c('0| Extra width for the image popup in pixels') ) . '",
118970 image_delta_height:"' . mce_escape( _c('0| Extra height for the image popup in pixels') ) . '",
118971 cleanup_desc:"' . mce_escape( __('Cleanup messy code') ) . '",
118972 code_desc:"' . mce_escape( __('Edit HTML Source') ) . '",
118973 sub_desc:"' . mce_escape( __('Subscript') ) . '",
118974 sup_desc:"' . mce_escape( __('Superscript') ) . '",
118975 hr_desc:"' . mce_escape( __('Insert horizontal ruler') ) . '",
118976 removeformat_desc:"' . mce_escape( __('Remove formatting') ) . '",
118977 forecolor_desc:"' . mce_escape( __('Select text color') ) . '",
118978 backcolor_desc:"' . mce_escape( __('Select background color') ) . '",
118979 charmap_desc:"' . mce_escape( __('Insert custom character') ) . '",
118980 visualaid_desc:"' . mce_escape( __('Toggle guidelines/invisible elements') ) . '",
118981 anchor_desc:"' . mce_escape( __('Insert/edit anchor') ) . '",
118982 cut_desc:"' . mce_escape( __('Cut') ) . '",
118983 copy_desc:"' . mce_escape( __('Copy') ) . '",
118984 paste_desc:"' . mce_escape( __('Paste') ) . '",
118985 image_props_desc:"' . mce_escape( __('Image properties') ) . '",
118986 newdocument_desc:"' . mce_escape( __('New document') ) . '",
118987 help_desc:"' . mce_escape( __('Help') ) . '",
118988 blockquote_desc:"' . mce_escape( __('Blockquote') ) . ' (Alt+Shift+Q)",
118989 clipboard_msg:"' . mce_escape( __('Copy/Cut/Paste is not available in Mozilla and Firefox.') ) . '",
118990 path:"' . mce_escape( __('Path') ) . '",
118991 newdocument:"' . mce_escape( __('Are you sure you want to clear all contents?') ) . '",
118992 toolbar_focus:"' . mce_escape( __('Jump to tool buttons - Alt+Q, Jump to editor - Alt-Z, Jump to element path - Alt-X') ) . '",
118993 more_colors:"' . mce_escape( __('More colors') ) . '",
118994 colorpicker_delta_width:"' . mce_escape( _c('0| Extra width for the colorpicker popup in pixels') ) . '",
118995 colorpicker_delta_height:"' . mce_escape( _c('0| Extra height for the colorpicker popup in pixels') ) . '"
118996 });
118997
118998 tinyMCE.addI18n("' . $language . '.advanced_dlg",{
118999 about_title:"' . mce_escape( __('About TinyMCE') ) . '",
119000 about_general:"' . mce_escape( __('About') ) . '",
119001 about_help:"' . mce_escape( __('Help') ) . '",
119002 about_license:"' . mce_escape( __('License') ) . '",
119003 about_plugins:"' . mce_escape( __('Plugins') ) . '",
119004 about_plugin:"' . mce_escape( __('Plugin') ) . '",
119005 about_author:"' . mce_escape( __('Author') ) . '",
119006 about_version:"' . mce_escape( __('Version') ) . '",
119007 about_loaded:"' . mce_escape( __('Loaded plugins') ) . '",
119008 anchor_title:"' . mce_escape( __('Insert/edit anchor') ) . '",
119009 anchor_name:"' . mce_escape( __('Anchor name') ) . '",
119010 code_title:"' . mce_escape( __('HTML Source Editor') ) . '",
119011 code_wordwrap:"' . mce_escape( __('Word wrap') ) . '",
119012 colorpicker_title:"' . mce_escape( __('Select a color') ) . '",
119013 colorpicker_picker_tab:"' . mce_escape( __('Picker') ) . '",
119014 colorpicker_picker_title:"' . mce_escape( __('Color picker') ) . '",
119015 colorpicker_palette_tab:"' . mce_escape( __('Palette') ) . '",
119016 colorpicker_palette_title:"' . mce_escape( __('Palette colors') ) . '",
119017 colorpicker_named_tab:"' . mce_escape( __('Named') ) . '",
119018 colorpicker_named_title:"' . mce_escape( __('Named colors') ) . '",
119019 colorpicker_color:"' . mce_escape( __('Color:') ) . '",
119020 colorpicker_name:"' . mce_escape( __('Name:') ) . '",
119021 charmap_title:"' . mce_escape( __('Select custom character') ) . '",
119022 image_title:"' . mce_escape( __('Insert/edit image') ) . '",
119023 image_src:"' . mce_escape( __('Image URL') ) . '",
119024 image_alt:"' . mce_escape( __('Image description') ) . '",
119025 image_list:"' . mce_escape( __('Image list') ) . '",
119026 image_border:"' . mce_escape( __('Border') ) . '",
119027 image_dimensions:"' . mce_escape( __('Dimensions') ) . '",
119028 image_vspace:"' . mce_escape( __('Vertical space') ) . '",
119029 image_hspace:"' . mce_escape( __('Horizontal space') ) . '",
119030 image_align:"' . mce_escape( __('Alignment') ) . '",
119031 image_align_baseline:"' . mce_escape( __('Baseline') ) . '",
119032 image_align_top:"' . mce_escape( __('Top') ) . '",
119033 image_align_middle:"' . mce_escape( __('Middle') ) . '",
119034 image_align_bottom:"' . mce_escape( __('Bottom') ) . '",
119035 image_align_texttop:"' . mce_escape( __('Text top') ) . '",
119036 image_align_textbottom:"' . mce_escape( __('Text bottom') ) . '",
119037 image_align_left:"' . mce_escape( __('Left') ) . '",
119038 image_align_right:"' . mce_escape( __('Right') ) . '",
119039 link_title:"' . mce_escape( __('Insert/edit link') ) . '",
119040 link_url:"' . mce_escape( __('Link URL') ) . '",
119041 link_target:"' . mce_escape( __('Target') ) . '",
119042 link_target_same:"' . mce_escape( __('Open link in the same window') ) . '",
119043 link_target_blank:"' . mce_escape( __('Open link in a new window') ) . '",
119044 link_titlefield:"' . mce_escape( __('Title') ) . '",
119045 link_is_email:"' . mce_escape( __('The URL you entered seems to be an email address, do you want to add the required mailto: prefix?') ) . '",
119046 link_is_external:"' . mce_escape( __('The URL you entered seems to external link, do you want to add the required http:// prefix?') ) . '",
119047 link_list:"' . mce_escape( __('Link list') ) . '"
119048 });
119049
119050 tinyMCE.addI18n("' . $language . '.media_dlg",{
119051 title:"' . mce_escape( __('Insert / edit embedded media') ) . '",
119052 general:"' . mce_escape( __('General') ) . '",
119053 advanced:"' . mce_escape( __('Advanced') ) . '",
119054 file:"' . mce_escape( __('File/URL') ) . '",
119055 list:"' . mce_escape( __('List') ) . '",
119056 size:"' . mce_escape( __('Dimensions') ) . '",
119057 preview:"' . mce_escape( __('Preview') ) . '",
119058 constrain_proportions:"' . mce_escape( __('Constrain proportions') ) . '",
119059 type:"' . mce_escape( __('Type') ) . '",
119060 id:"' . mce_escape( __('Id') ) . '",
119061 name:"' . mce_escape( __('Name') ) . '",
119062 class_name:"' . mce_escape( __('Class') ) . '",
119063 vspace:"' . mce_escape( __('V-Space') ) . '",
119064 hspace:"' . mce_escape( __('H-Space') ) . '",
119065 play:"' . mce_escape( __('Auto play') ) . '",
119066 loop:"' . mce_escape( __('Loop') ) . '",
119067 menu:"' . mce_escape( __('Show menu') ) . '",
119068 quality:"' . mce_escape( __('Quality') ) . '",
119069 scale:"' . mce_escape( __('Scale') ) . '",
119070 align:"' . mce_escape( __('Align') ) . '",
119071 salign:"' . mce_escape( __('SAlign') ) . '",
119072 wmode:"' . mce_escape( __('WMode') ) . '",
119073 bgcolor:"' . mce_escape( __('Background') ) . '",
119074 base:"' . mce_escape( __('Base') ) . '",
119075 flashvars:"' . mce_escape( __('Flashvars') ) . '",
119076 liveconnect:"' . mce_escape( __('SWLiveConnect') ) . '",
119077 autohref:"' . mce_escape( __('AutoHREF') ) . '",
119078 cache:"' . mce_escape( __('Cache') ) . '",
119079 hidden:"' . mce_escape( __('Hidden') ) . '",
119080 controller:"' . mce_escape( __('Controller') ) . '",
119081 kioskmode:"' . mce_escape( __('Kiosk mode') ) . '",
119082 playeveryframe:"' . mce_escape( __('Play every frame') ) . '",
119083 targetcache:"' . mce_escape( __('Target cache') ) . '",
119084 correction:"' . mce_escape( __('No correction') ) . '",
119085 enablejavascript:"' . mce_escape( __('Enable JavaScript') ) . '",
119086 starttime:"' . mce_escape( __('Start time') ) . '",
119087 endtime:"' . mce_escape( __('End time') ) . '",
119088 href:"' . mce_escape( __('Href') ) . '",
119089 qtsrcchokespeed:"' . mce_escape( __('Choke speed') ) . '",
119090 target:"' . mce_escape( __('Target') ) . '",
119091 volume:"' . mce_escape( __('Volume') ) . '",
119092 autostart:"' . mce_escape( __('Auto start') ) . '",
119093 enabled:"' . mce_escape( __('Enabled') ) . '",
119094 fullscreen:"' . mce_escape( __('Fullscreen') ) . '",
119095 invokeurls:"' . mce_escape( __('Invoke URLs') ) . '",
119096 mute:"' . mce_escape( __('Mute') ) . '",
119097 stretchtofit:"' . mce_escape( __('Stretch to fit') ) . '",
119098 windowlessvideo:"' . mce_escape( __('Windowless video') ) . '",
119099 balance:"' . mce_escape( __('Balance') ) . '",
119100 baseurl:"' . mce_escape( __('Base URL') ) . '",
119101 captioningid:"' . mce_escape( __('Captioning id') ) . '",
119102 currentmarker:"' . mce_escape( __('Current marker') ) . '",
119103 currentposition:"' . mce_escape( __('Current position') ) . '",
119104 defaultframe:"' . mce_escape( __('Default frame') ) . '",
119105 playcount:"' . mce_escape( __('Play count') ) . '",
119106 rate:"' . mce_escape( __('Rate') ) . '",
119107 uimode:"' . mce_escape( __('UI Mode') ) . '",
119108 flash_options:"' . mce_escape( __('Flash options') ) . '",
119109 qt_options:"' . mce_escape( __('Quicktime options') ) . '",
119110 wmp_options:"' . mce_escape( __('Windows media player options') ) . '",
119111 rmp_options:"' . mce_escape( __('Real media player options') ) . '",
119112 shockwave_options:"' . mce_escape( __('Shockwave options') ) . '",
119113 autogotourl:"' . mce_escape( __('Auto goto URL') ) . '",
119114 center:"' . mce_escape( __('Center') ) . '",
119115 imagestatus:"' . mce_escape( __('Image status') ) . '",
119116 maintainaspect:"' . mce_escape( __('Maintain aspect') ) . '",
119117 nojava:"' . mce_escape( __('No java') ) . '",
119118 prefetch:"' . mce_escape( __('Prefetch') ) . '",
119119 shuffle:"' . mce_escape( __('Shuffle') ) . '",
119120 console:"' . mce_escape( __('Console') ) . '",
119121 numloop:"' . mce_escape( __('Num loops') ) . '",
119122 controls:"' . mce_escape( __('Controls') ) . '",
119123 scriptcallbacks:"' . mce_escape( __('Script callbacks') ) . '",
119124 swstretchstyle:"' . mce_escape( __('Stretch style') ) . '",
119125 swstretchhalign:"' . mce_escape( __('Stretch H-Align') ) . '",
119126 swstretchvalign:"' . mce_escape( __('Stretch V-Align') ) . '",
119127 sound:"' . mce_escape( __('Sound') ) . '",
119128 progress:"' . mce_escape( __('Progress') ) . '",
119129 qtsrc:"' . mce_escape( __('QT Src') ) . '",
119130 qt_stream_warn:"' . mce_escape( __('Streamed rtsp resources should be added to the QT Src field under the advanced tab.') ) . '",
119131 align_top:"' . mce_escape( __('Top') ) . '",
119132 align_right:"' . mce_escape( __('Right') ) . '",
119133 align_bottom:"' . mce_escape( __('Bottom') ) . '",
119134 align_left:"' . mce_escape( __('Left') ) . '",
119135 align_center:"' . mce_escape( __('Center') ) . '",
119136 align_top_left:"' . mce_escape( __('Top left') ) . '",
119137 align_top_right:"' . mce_escape( __('Top right') ) . '",
119138 align_bottom_left:"' . mce_escape( __('Bottom left') ) . '",
119139 align_bottom_right:"' . mce_escape( __('Bottom right') ) . '",
119140 flv_options:"' . mce_escape( __('Flash video options') ) . '",
119141 flv_scalemode:"' . mce_escape( __('Scale mode') ) . '",
119142 flv_buffer:"' . mce_escape( __('Buffer') ) . '",
119143 flv_startimage:"' . mce_escape( __('Start image') ) . '",
119144 flv_starttime:"' . mce_escape( __('Start time') ) . '",
119145 flv_defaultvolume:"' . mce_escape( __('Default volume') ) . '",
119146 flv_hiddengui:"' . mce_escape( __('Hidden GUI') ) . '",
119147 flv_autostart:"' . mce_escape( __('Auto start') ) . '",
119148 flv_loop:"' . mce_escape( __('Loop') ) . '",
119149 flv_showscalemodes:"' . mce_escape( __('Show scale modes') ) . '",
119150 flv_smoothvideo:"' . mce_escape( __('Smooth video') ) . '",
119151 flv_jscallback:"' . mce_escape( __('JS Callback') ) . '"
119152 });
119153
119154 tinyMCE.addI18n("' . $language . '.wordpress",{
119155 wp_adv_desc:"' . mce_escape( __('Show/Hide Kitchen Sink') ) . ' (Alt+Shift+Z)",
119156 wp_more_desc:"' . mce_escape( __('Insert More tag') ) . ' (Alt+Shift+T)",
119157 wp_page_desc:"' . mce_escape( __('Insert Page break') ) . ' (Alt+Shift+P)",
119158 wp_help_desc:"' . mce_escape( __('Help') ) . ' (Alt+Shift+H)",
119159 wp_more_alt:"' . mce_escape( __('More...') ) . '",
119160 wp_page_alt:"' . mce_escape( __('Next page...') ) . '",
119161 add_media:"' . mce_escape( __('Add Media') ) . '",
119162 add_image:"' . mce_escape( __('Add an Image') ) . '",
119163 add_video:"' . mce_escape( __('Add Video') ) . '",
119164 add_audio:"' . mce_escape( __('Add Audio') ) . '",
119165 editgallery:"' . mce_escape( __('Edit Gallery') ) . '",
119166 delgallery:"' . mce_escape( __('Delete Gallery') ) . '"
119167 });
119168
119169 tinyMCE.addI18n("' . $language . '.wpeditimage",{
119170 edit_img:"' . mce_escape( __('Edit Image') ) . '",
119171 del_img:"' . mce_escape( __('Delete Image') ) . '",
119172 adv_settings:"' . mce_escape( __('Advanced Settings') ) . '",
119173 none:"' . mce_escape( __('None') ) . '",
119174 size:"' . mce_escape( __('Size') ) . '",
119175 thumbnail:"' . mce_escape( __('Thumbnail') ) . '",
119176 medium:"' . mce_escape( __('Medium') ) . '",
119177 full_size:"' . mce_escape( __('Full Size') ) . '",
119178 current_link:"' . mce_escape( __('Current Link') ) . '",
119179 link_to_img:"' . mce_escape( __('Link to Image') ) . '",
119180 link_help:"' . mce_escape( __('Enter a link URL or click above for presets.') ) . '",
119181 adv_img_settings:"' . mce_escape( __('Advanced Image Settings') ) . '",
119182 source:"' . mce_escape( __('Source') ) . '",
119183 width:"' . mce_escape( __('Width') ) . '",
119184 height:"' . mce_escape( __('Height') ) . '",
119185 orig_size:"' . mce_escape( __('Original Size') ) . '",
119186 css:"' . mce_escape( __('CSS Class') ) . '",
119187 adv_link_settings:"' . mce_escape( __('Advanced Link Settings') ) . '",
119188 link_rel:"' . mce_escape( __('Link Rel') ) . '",
119189 height:"' . mce_escape( __('Height') ) . '",
119190 orig_size:"' . mce_escape( __('Original Size') ) . '",
119191 css:"' . mce_escape( __('CSS Class') ) . '",
119192 s60:"' . mce_escape( __('60%') ) . '",
119193 s70:"' . mce_escape( __('70%') ) . '",
119194 s80:"' . mce_escape( __('80%') ) . '",
119195 s90:"' . mce_escape( __('90%') ) . '",
119196 s100:"' . mce_escape( __('100%') ) . '",
119197 s110:"' . mce_escape( __('110%') ) . '",
119198 s120:"' . mce_escape( __('120%') ) . '",
119199 s130:"' . mce_escape( __('130%') ) . '",
119200 img_title:"' . mce_escape( __('Edit Image Title') ) . '",
119201 caption:"' . mce_escape( __('Edit Image Caption') ) . '",
119202 alt:"' . mce_escape( __('Edit Alternate Text') ) . '"
119203 });
119204 ';