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