<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>[19993] trunk/wp-includes/js/tinymce/langs/wp-langs.php: Use json_encode when outputting translated strings for use in TinyMCE, fixes #20119</title>
</head>
<body>

<style type="text/css"><!--
#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dl.meta dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; }
#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; }
#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; }
#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; }
#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; }
#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; }
#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; }
#logmsg > ul, #logmsg > ol { margin-left: 0; margin: 0 0 1em 0; }
#logmsg pre { background: #eee; padding: 1em; }
#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;}
#logmsg dl { margin: 0; }
#logmsg dt { font-weight: bold; }
#logmsg dd { margin: 0; padding: 0 0 0.5em 0; }
#logmsg dd:before { content:'\00bb';}
#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; }
#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; }
#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; }
#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; }
#logmsg table th.Corner { text-align: left; }
#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<div id="msg">
<dl class="meta">
<dt>Revision</dt> <dd><a href="http://core.trac.wordpress.org/changeset/19993">19993</a></dd>
<dt>Author</dt> <dd>azaozz</dd>
<dt>Date</dt> <dd>2012-02-25 02:11:29 +0000 (Sat, 25 Feb 2012)</dd>
</dl>

<h3>Log Message</h3>
<pre>Use json_encode when outputting translated strings for use in TinyMCE, fixes <a href="http://core.trac.wordpress.org/ticket/20119">#20119</a></pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpincludesjstinymcelangswplangsphp">trunk/wp-includes/js/tinymce/langs/wp-langs.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpincludesjstinymcelangswplangsphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/js/tinymce/langs/wp-langs.php (19992 => 19993)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/js/tinymce/langs/wp-langs.php        2012-02-25 02:04:17 UTC (rev 19992)
+++ trunk/wp-includes/js/tinymce/langs/wp-langs.php        2012-02-25 02:11:29 UTC (rev 19993)
</span><span class="lines">@@ -1,5 +1,6 @@
</span><span class="cx"> &lt;?php
</span><span class="cx"> 
</span><ins>+// deprecated, not used
</ins><span class="cx"> function mce_escape($text) {
</span><span class="cx">         return esc_js($text);
</span><span class="cx"> }
</span><span class="lines">@@ -7,509 +8,556 @@
</span><span class="cx"> if ( ! class_exists( '_WP_Editors' ) )
</span><span class="cx">         require( ABSPATH . WPINC . '/class-wp-editor.php' );
</span><span class="cx"> 
</span><del>-$lang = 'tinyMCE.addI18n({' . _WP_Editors::$mce_locale . ':{
-common:{
-edit_confirm:&quot;' . mce_escape( __('Do you want to use the WYSIWYG mode for this textarea?') ) . '&quot;,
-apply:&quot;' . mce_escape( __('Apply') ) . '&quot;,
-insert:&quot;' . mce_escape( __('Insert') ) . '&quot;,
-update:&quot;' . mce_escape( __('Update') ) . '&quot;,
-cancel:&quot;' . mce_escape( __('Cancel') ) . '&quot;,
-close:&quot;' . mce_escape( __('Close') ) . '&quot;,
-browse:&quot;' . mce_escape( __('Browse') ) . '&quot;,
-class_name:&quot;' . mce_escape( __('Class') ) . '&quot;,
-not_set:&quot;' . mce_escape( __('-- Not set --') ) . '&quot;,
-clipboard_msg:&quot;' . mce_escape( __('Copy/Cut/Paste is not available in Mozilla and Firefox.') ) . '&quot;,
-clipboard_no_support:&quot;' . mce_escape( __('Currently not supported by your browser, use keyboard shortcuts instead.') ) . '&quot;,
-popup_blocked:&quot;' . 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.') ) . '&quot;,
-invalid_data:&quot;' . mce_escape( __('ERROR: Invalid values entered, these are marked in red.') ) . '&quot;,
-invalid_data_number:&quot;' . mce_escape( __('{#field} must be a number') ) . '&quot;,
-invalid_data_min:&quot;' . mce_escape( __('{#field} must be a number greater than {#min}') ) . '&quot;,
-invalid_data_size:&quot;' . mce_escape( __('{#field} must be a number or percentage') ) . '&quot;,
-more_colors:&quot;' . mce_escape( __('More colors') ) . '&quot;
-},
-colors:{
-&quot;000000&quot;:&quot;' . mce_escape( __('Black') ) . '&quot;,
-&quot;993300&quot;:&quot;' . mce_escape( __('Burnt orange') ) . '&quot;,
-&quot;333300&quot;:&quot;' . mce_escape( __('Dark olive') ) . '&quot;,
-&quot;003300&quot;:&quot;' . mce_escape( __('Dark green') ) . '&quot;,
-&quot;003366&quot;:&quot;' . mce_escape( __('Dark azure') ) . '&quot;,
-&quot;000080&quot;:&quot;' . mce_escape( __('Navy Blue') ) . '&quot;,
-&quot;333399&quot;:&quot;' . mce_escape( __('Indigo') ) . '&quot;,
-&quot;333333&quot;:&quot;' . mce_escape( __('Very dark gray') ) . '&quot;,
-&quot;800000&quot;:&quot;' . mce_escape( __('Maroon') ) . '&quot;,
-&quot;FF6600&quot;:&quot;' . mce_escape( __('Orange') ) . '&quot;,
-&quot;808000&quot;:&quot;' . mce_escape( __('Olive') ) . '&quot;,
-&quot;008000&quot;:&quot;' . mce_escape( __('Green') ) . '&quot;,
-&quot;008080&quot;:&quot;' . mce_escape( __('Teal') ) . '&quot;,
-&quot;0000FF&quot;:&quot;' . mce_escape( __('Blue') ) . '&quot;,
-&quot;666699&quot;:&quot;' . mce_escape( __('Grayish blue') ) . '&quot;,
-&quot;808080&quot;:&quot;' . mce_escape( __('Gray') ) . '&quot;,
-&quot;FF0000&quot;:&quot;' . mce_escape( __('Red') ) . '&quot;,
-&quot;FF9900&quot;:&quot;' . mce_escape( __('Amber') ) . '&quot;,
-&quot;99CC00&quot;:&quot;' . mce_escape( __('Yellow green') ) . '&quot;,
-&quot;339966&quot;:&quot;' . mce_escape( __('Sea green') ) . '&quot;,
-&quot;33CCCC&quot;:&quot;' . mce_escape( __('Turquoise') ) . '&quot;,
-&quot;3366FF&quot;:&quot;' . mce_escape( __('Royal blue') ) . '&quot;,
-&quot;800080&quot;:&quot;' . mce_escape( __('Purple') ) . '&quot;,
-&quot;999999&quot;:&quot;' . mce_escape( __('Medium gray') ) . '&quot;,
-&quot;FF00FF&quot;:&quot;' . mce_escape( __('Magenta') ) . '&quot;,
-&quot;FFCC00&quot;:&quot;' . mce_escape( __('Gold') ) . '&quot;,
-&quot;FFFF00&quot;:&quot;' . mce_escape( __('Yellow') ) . '&quot;,
-&quot;00FF00&quot;:&quot;' . mce_escape( __('Lime') ) . '&quot;,
-&quot;00FFFF&quot;:&quot;' . mce_escape( __('Aqua') ) . '&quot;,
-&quot;00CCFF&quot;:&quot;' . mce_escape( __('Sky blue') ) . '&quot;,
-&quot;993366&quot;:&quot;' . mce_escape( __('Brown') ) . '&quot;,
-&quot;C0C0C0&quot;:&quot;' . mce_escape( __('Silver') ) . '&quot;,
-&quot;FF99CC&quot;:&quot;' . mce_escape( __('Pink') ) . '&quot;,
-&quot;FFCC99&quot;:&quot;' . mce_escape( __('Peach') ) . '&quot;,
-&quot;FFFF99&quot;:&quot;' . mce_escape( __('Light yellow') ) . '&quot;,
-&quot;CCFFCC&quot;:&quot;' . mce_escape( __('Pale green') ) . '&quot;,
-&quot;CCFFFF&quot;:&quot;' . mce_escape( __('Pale cyan') ) . '&quot;,
-&quot;99CCFF&quot;:&quot;' . mce_escape( __('Light sky blue') ) . '&quot;,
-&quot;CC99FF&quot;:&quot;' . mce_escape( __('Plum') ) . '&quot;,
-&quot;FFFFFF&quot;:&quot;' . mce_escape( __('White') ) . '&quot;
-},
-contextmenu:{
-align:&quot;' . mce_escape( /* translators: alignment */ __('Alignment') ) . '&quot;,
-left:&quot;' . mce_escape( /* translators: alignment */ __('Left') ) . '&quot;,
-center:&quot;' . mce_escape( /* translators: alignment */ __('Center') ) . '&quot;,
-right:&quot;' . mce_escape( /* translators: alignment */ __('Right') ) . '&quot;,
-full:&quot;' . mce_escape( /* translators: alignment */ __('Full') ) . '&quot;
-},
-insertdatetime:{
-date_fmt:&quot;' . mce_escape( /* translators: year, month, date */ __('%Y-%m-%d') ) . '&quot;,
-time_fmt:&quot;' . mce_escape( /* translators: hours, minutes, seconds */ __('%H:%M:%S') ) . '&quot;,
-insertdate_desc:&quot;' . mce_escape( __('Insert date') ) . '&quot;,
-inserttime_desc:&quot;' . mce_escape( __('Insert time') ) . '&quot;,
-months_long:&quot;' . mce_escape( __('January').','.__('February').','.__('March').','.__('April').','.__('May').','.__('June').','.__('July').','.__('August').','.__('September').','.__('October').','.__('November').','.__('December') ) . '&quot;,
-months_short:&quot;' . 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') ) . '&quot;,
-day_long:&quot;' . mce_escape( __('Sunday').','.__('Monday').','.__('Tuesday').','.__('Wednesday').','.__('Thursday').','.__('Friday').','.__('Saturday') ) . '&quot;,
-day_short:&quot;' . mce_escape( __('Sun').','.__('Mon').','.__('Tue').','.__('Wed').','.__('Thu').','.__('Fri').','.__('Sat') ) . '&quot;
-},
-print:{
-print_desc:&quot;' . mce_escape( __('Print') ) . '&quot;
-},
-preview:{
-preview_desc:&quot;' . mce_escape( __('Preview') ) . '&quot;
-},
-directionality:{
-ltr_desc:&quot;' . mce_escape( __('Direction left to right') ) . '&quot;,
-rtl_desc:&quot;' . mce_escape( __('Direction right to left') ) . '&quot;
-},
-layer:{
-insertlayer_desc:&quot;' . mce_escape( __('Insert new layer') ) . '&quot;,
-forward_desc:&quot;' . mce_escape( __('Move forward') ) . '&quot;,
-backward_desc:&quot;' . mce_escape( __('Move backward') ) . '&quot;,
-absolute_desc:&quot;' . mce_escape( __('Toggle absolute positioning') ) . '&quot;,
-content:&quot;' . mce_escape( __('New layer...') ) . '&quot;
-},
-save:{
-save_desc:&quot;' . mce_escape( __('Save') ) . '&quot;,
-cancel_desc:&quot;' . mce_escape( __('Cancel all changes') ) . '&quot;
-},
-nonbreaking:{
-nonbreaking_desc:&quot;' . mce_escape( __('Insert non-breaking space character') ) . '&quot;
-},
-iespell:{
-iespell_desc:&quot;' . mce_escape( __('Run spell checking') ) . '&quot;,
-download:&quot;' . mce_escape( __('ieSpell not detected. Do you want to install it now?') ) . '&quot;
-},
-advhr:{
-advhr_desc:&quot;' . mce_escape( __('Horizontale rule') ) . '&quot;
-},
-emotions:{
-emotions_desc:&quot;' . mce_escape( __('Emotions') ) . '&quot;
-},
-searchreplace:{
-search_desc:&quot;' . mce_escape( __('Find') ) . '&quot;,
-replace_desc:&quot;' . mce_escape( __('Find/Replace') ) . '&quot;
-},
-advimage:{
-image_desc:&quot;' . mce_escape( __('Insert/edit image') ) . '&quot;
-},
-advlink:{
-link_desc:&quot;' . mce_escape( __('Insert/edit link') ) . '&quot;
-},
-xhtmlxtras:{
-cite_desc:&quot;' . mce_escape( __('Citation') ) . '&quot;,
-abbr_desc:&quot;' . mce_escape( __('Abbreviation') ) . '&quot;,
-acronym_desc:&quot;' . mce_escape( __('Acronym') ) . '&quot;,
-del_desc:&quot;' . mce_escape( __('Deletion') ) . '&quot;,
-ins_desc:&quot;' . mce_escape( __('Insertion') ) . '&quot;,
-attribs_desc:&quot;' . mce_escape( __('Insert/Edit Attributes') ) . '&quot;
-},
-style:{
-desc:&quot;' . mce_escape( __('Edit CSS Style') ) . '&quot;
-},
-paste:{
-paste_text_desc:&quot;' . mce_escape( __('Paste as Plain Text') ) . '&quot;,
-paste_word_desc:&quot;' . mce_escape( __('Paste from Word') ) . '&quot;,
-selectall_desc:&quot;' . mce_escape( __('Select All') ) . '&quot;,
-plaintext_mode_sticky:&quot;' . 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.') ) . '&quot;,
-plaintext_mode:&quot;' . mce_escape( __('Paste is now in plain text mode. Click again to toggle back to regular paste mode.') ) . '&quot;
-},
-paste_dlg:{
-text_title:&quot;' . mce_escape( __('Use CTRL+V on your keyboard to paste the text into the window.') ) . '&quot;,
-text_linebreaks:&quot;' . mce_escape( __('Keep linebreaks') ) . '&quot;,
-word_title:&quot;' . mce_escape( __('Use CTRL+V on your keyboard to paste the text into the window.') ) . '&quot;
-},
-table:{
-desc:&quot;' . mce_escape( __('Inserts a new table') ) . '&quot;,
-row_before_desc:&quot;' . mce_escape( __('Insert row before') ) . '&quot;,
-row_after_desc:&quot;' . mce_escape( __('Insert row after') ) . '&quot;,
-delete_row_desc:&quot;' . mce_escape( __('Delete row') ) . '&quot;,
-col_before_desc:&quot;' . mce_escape( __('Insert column before') ) . '&quot;,
-col_after_desc:&quot;' . mce_escape( __('Insert column after') ) . '&quot;,
-delete_col_desc:&quot;' . mce_escape( __('Remove column') ) . '&quot;,
-split_cells_desc:&quot;' . mce_escape( __('Split merged table cells') ) . '&quot;,
-merge_cells_desc:&quot;' . mce_escape( __('Merge table cells') ) . '&quot;,
-row_desc:&quot;' . mce_escape( __('Table row properties') ) . '&quot;,
-cell_desc:&quot;' . mce_escape( __('Table cell properties') ) . '&quot;,
-props_desc:&quot;' . mce_escape( __('Table properties') ) . '&quot;,
-paste_row_before_desc:&quot;' . mce_escape( __('Paste table row before') ) . '&quot;,
-paste_row_after_desc:&quot;' . mce_escape( __('Paste table row after') ) . '&quot;,
-cut_row_desc:&quot;' . mce_escape( __('Cut table row') ) . '&quot;,
-copy_row_desc:&quot;' . mce_escape( __('Copy table row') ) . '&quot;,
-del:&quot;' . mce_escape( __('Delete table') ) . '&quot;,
-row:&quot;' . mce_escape( __('Row') ) . '&quot;,
-col:&quot;' . mce_escape( __('Column') ) . '&quot;,
-cell:&quot;' . mce_escape( __('Cell') ) . '&quot;
-},
-autosave:{
-unload_msg:&quot;' . mce_escape( __('The changes you made will be lost if you navigate away from this page.') ) . '&quot;
-},
-fullscreen:{
-desc:&quot;' . mce_escape( __('Toggle fullscreen mode (Alt + Shift + G)') ) . '&quot;
-},
-media:{
-desc:&quot;' . mce_escape( __('Insert / edit embedded media') ) . '&quot;,
-edit:&quot;' . mce_escape( __('Edit embedded media') ) . '&quot;
-},
-fullpage:{
-desc:&quot;' . mce_escape( __('Document properties') ) . '&quot;
-},
-template:{
-desc:&quot;' . mce_escape( __('Insert predefined template content') ) . '&quot;
-},
-visualchars:{
-desc:&quot;' . mce_escape( __('Visual control characters on/off.') ) . '&quot;
-},
-spellchecker:{
-desc:&quot;' . mce_escape( __('Toggle spellchecker (Alt + Shift + N)') ) . '&quot;,
-menu:&quot;' . mce_escape( __('Spellchecker settings') ) . '&quot;,
-ignore_word:&quot;' . mce_escape( __('Ignore word') ) . '&quot;,
-ignore_words:&quot;' . mce_escape( __('Ignore all') ) . '&quot;,
-langs:&quot;' . mce_escape( __('Languages') ) . '&quot;,
-wait:&quot;' . mce_escape( __('Please wait...') ) . '&quot;,
-sug:&quot;' . mce_escape( __('Suggestions') ) . '&quot;,
-no_sug:&quot;' . mce_escape( __('No suggestions') ) . '&quot;,
-no_mpell:&quot;' . mce_escape( __('No misspellings found.') ) . '&quot;,
-learn_word:&quot;' . mce_escape( __('Learn word') ) . '&quot; 
-},
-pagebreak:{
-desc:&quot;' . mce_escape( __('Insert Page Break') ) . '&quot;
-},
-advlist:{
-types:&quot;' . mce_escape( __('Types') ) . '&quot;,
-def:&quot;' . mce_escape( __('Default') ) . '&quot;,
-lower_alpha:&quot;' . mce_escape( __('Lower alpha') ) . '&quot;,
-lower_greek:&quot;' . mce_escape( __('Lower greek') ) . '&quot;,
-lower_roman:&quot;' . mce_escape( __('Lower roman') ) . '&quot;,
-upper_alpha:&quot;' . mce_escape( __('Upper alpha') ) . '&quot;,
-upper_roman:&quot;' . mce_escape( __('Upper roman') ) . '&quot;,
-circle:&quot;' . mce_escape( __('Circle') ) . '&quot;,
-disc:&quot;' . mce_escape( __('Disc') ) . '&quot;,
-square:&quot;' . mce_escape( __('Square') ) . '&quot;
-},
-aria:{
-rich_text_area:&quot;' . mce_escape( __('Rich Text Area') ) . '&quot;
-},
-wordcount:{
-words:&quot;' . mce_escape( __('Words:') ) . ' &quot;
-}
-}});
</del><ins>+function wp_mce_translation() {
</ins><span class="cx"> 
</span><del>-tinyMCE.addI18n(&quot;' . _WP_Editors::$mce_locale . '.advanced&quot;,{
-style_select:&quot;' . mce_escape( /* translators: TinyMCE font styles */ _x('Styles', 'TinyMCE font styles') ) . '&quot;,
-font_size:&quot;' . mce_escape( __('Font size') ) . '&quot;,
-fontdefault:&quot;' . mce_escape( __('Font family') ) . '&quot;,
-block:&quot;' . mce_escape( __('Format') ) . '&quot;,
-paragraph:&quot;' . mce_escape( __('Paragraph') ) . '&quot;,
-div:&quot;' . mce_escape( __('Div') ) . '&quot;,
-address:&quot;' . mce_escape( __('Address') ) . '&quot;,
-pre:&quot;' . mce_escape( __('Preformatted') ) . '&quot;,
-h1:&quot;' . mce_escape( __('Heading 1') ) . '&quot;,
-h2:&quot;' . mce_escape( __('Heading 2') ) . '&quot;,
-h3:&quot;' . mce_escape( __('Heading 3') ) . '&quot;,
-h4:&quot;' . mce_escape( __('Heading 4') ) . '&quot;,
-h5:&quot;' . mce_escape( __('Heading 5') ) . '&quot;,
-h6:&quot;' . mce_escape( __('Heading 6') ) . '&quot;,
-blockquote:&quot;' . mce_escape( __('Blockquote') ) . '&quot;,
-code:&quot;' . mce_escape( __('Code') ) . '&quot;,
-samp:&quot;' . mce_escape( __('Code sample') ) . '&quot;,
-dt:&quot;' . mce_escape( __('Definition term ') ) . '&quot;,
-dd:&quot;' . mce_escape( __('Definition description') ) . '&quot;,
-bold_desc:&quot;' . mce_escape( __('Bold (Ctrl + B)') ) . '&quot;,
-italic_desc:&quot;' . mce_escape( __('Italic (Ctrl + I)') ) . '&quot;,
-underline_desc:&quot;' . mce_escape( __('Underline') ) . '&quot;,
-striketrough_desc:&quot;' . mce_escape( __('Strikethrough (Alt + Shift + D)') ) . '&quot;,
-justifyleft_desc:&quot;' . mce_escape( __('Align Left (Alt + Shift + L)') ) . '&quot;,
-justifycenter_desc:&quot;' . mce_escape( __('Align Center (Alt + Shift + C)') ) . '&quot;,
-justifyright_desc:&quot;' . mce_escape( __('Align Right (Alt + Shift + R)') ) . '&quot;,
-justifyfull_desc:&quot;' . mce_escape( __('Align Full (Alt + Shift + J)') ) . '&quot;,
-bullist_desc:&quot;' . mce_escape( __('Unordered list (Alt + Shift + U)') ) . '&quot;,
-numlist_desc:&quot;' . mce_escape( __('Ordered list (Alt + Shift + O)') ) . '&quot;,
-outdent_desc:&quot;' . mce_escape( __('Outdent') ) . '&quot;,
-indent_desc:&quot;' . mce_escape( __('Indent') ) . '&quot;,
-undo_desc:&quot;' . mce_escape( __('Undo (Ctrl + Z)') ) . '&quot;,
-redo_desc:&quot;' . mce_escape( __('Redo (Ctrl + Y)') ) . '&quot;,
-link_desc:&quot;' . mce_escape( __('Insert/edit link (Alt + Shift + A)') ) . '&quot;,
-unlink_desc:&quot;' . mce_escape( __('Unlink (Alt + Shift + S)') ) . '&quot;,
-image_desc:&quot;' . mce_escape( __('Insert/edit image (Alt + Shift + M)') ) . '&quot;,
-cleanup_desc:&quot;' . mce_escape( __('Cleanup messy code') ) . '&quot;,
-code_desc:&quot;' . mce_escape( __('Edit HTML Source') ) . '&quot;,
-sub_desc:&quot;' . mce_escape( __('Subscript') ) . '&quot;,
-sup_desc:&quot;' . mce_escape( __('Superscript') ) . '&quot;,
-hr_desc:&quot;' . mce_escape( __('Insert horizontal ruler') ) . '&quot;,
-removeformat_desc:&quot;' . mce_escape( __('Remove formatting') ) . '&quot;,
-forecolor_desc:&quot;' . mce_escape( __('Select text color') ) . '&quot;,
-backcolor_desc:&quot;' . mce_escape( __('Select background color') ) . '&quot;,
-charmap_desc:&quot;' . mce_escape( __('Insert custom character') ) . '&quot;,
-visualaid_desc:&quot;' . mce_escape( __('Toggle guidelines/invisible elements') ) . '&quot;,
-anchor_desc:&quot;' . mce_escape( __('Insert/edit anchor') ) . '&quot;,
-cut_desc:&quot;' . mce_escape( __('Cut') ) . '&quot;,
-copy_desc:&quot;' . mce_escape( __('Copy') ) . '&quot;,
-paste_desc:&quot;' . mce_escape( __('Paste') ) . '&quot;,
-image_props_desc:&quot;' . mce_escape( __('Image properties') ) . '&quot;,
-newdocument_desc:&quot;' . mce_escape( __('New document') ) . '&quot;,
-help_desc:&quot;' . mce_escape( __('Help') ) . '&quot;,
-blockquote_desc:&quot;' . mce_escape( __('Blockquote (Alt + Shift + Q)') ) . '&quot;,
-clipboard_msg:&quot;' . mce_escape( __('Copy/Cut/Paste is not available in Mozilla and Firefox.') ) . '&quot;,
-path:&quot;' . mce_escape( __('Path') ) . '&quot;,
-newdocument:&quot;' . mce_escape( __('Are you sure you want to clear all contents?') ) . '&quot;,
-toolbar_focus:&quot;' . mce_escape( __('Jump to tool buttons - Alt+Q, Jump to editor - Alt-Z, Jump to element path - Alt-X') ) . '&quot;,
-more_colors:&quot;' . mce_escape( __('More colors') ) . '&quot;,
-shortcuts_desc:&quot;' . mce_escape( __('Accessibility Help') ) . '&quot;,
-help_shortcut:&quot; ' . mce_escape( __('Press ALT F10 for toolbar. Press ALT 0 for help.') ) . '&quot;,
-rich_text_area:&quot;' . mce_escape( __('Rich Text Area') ) . '&quot;,
-toolbar:&quot;' . mce_escape( __('Toolbar') ) . '&quot;
-});
</del><ins>+        $default = array(
+                'common' =&gt; array(
+                        'edit_confirm' =&gt; __('Do you want to use the WYSIWYG mode for this textarea?'),
+                        'apply' =&gt; __('Apply'),
+                        'insert' =&gt; __('Insert'),
+                        'update' =&gt; __('Update'),
+                        'cancel' =&gt; __('Cancel'),
+                        'close' =&gt; __('Close'),
+                        'browse' =&gt; __('Browse'),
+                        'class_name' =&gt; __('Class'),
+                        'not_set' =&gt; __('-- Not set --'),
+                        'clipboard_msg' =&gt; __('Copy/Cut/Paste is not available in Mozilla and Firefox.'),
+                        'clipboard_no_support' =&gt; __('Currently not supported by your browser, use keyboard shortcuts instead.'),
+                        'popup_blocked' =&gt; __('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.'),
+                        'invalid_data' =&gt; __('ERROR: Invalid values entered, these are marked in red.'),
+                        'invalid_data_number' =&gt; __('{#field} must be a number'),
+                        'invalid_data_min' =&gt; __('{#field} must be a number greater than {#min}'),
+                        'invalid_data_size' =&gt; __('{#field} must be a number or percentage'),
+                        'more_colors' =&gt; __('More colors')
+                ),
</ins><span class="cx"> 
</span><del>-tinyMCE.addI18n(&quot;' . _WP_Editors::$mce_locale . '.advanced_dlg&quot;,{
-about_title:&quot;' . mce_escape( __('About TinyMCE') ) . '&quot;,
-about_general:&quot;' . mce_escape( __('About') ) . '&quot;,
-about_help:&quot;' . mce_escape( __('Help') ) . '&quot;,
-about_license:&quot;' . mce_escape( __('License') ) . '&quot;,
-about_plugins:&quot;' . mce_escape( __('Plugins') ) . '&quot;,
-about_plugin:&quot;' . mce_escape( __('Plugin') ) . '&quot;,
-about_author:&quot;' . mce_escape( __('Author') ) . '&quot;,
-about_version:&quot;' . mce_escape( __('Version') ) . '&quot;,
-about_loaded:&quot;' . mce_escape( __('Loaded plugins') ) . '&quot;,
-anchor_title:&quot;' . mce_escape( __('Insert/edit anchor') ) . '&quot;,
-anchor_name:&quot;' . mce_escape( __('Anchor name') ) . '&quot;,
-code_title:&quot;' . mce_escape( __('HTML Source Editor') ) . '&quot;,
-code_wordwrap:&quot;' . mce_escape( __('Word wrap') ) . '&quot;,
-colorpicker_title:&quot;' . mce_escape( __('Select a color') ) . '&quot;,
-colorpicker_picker_tab:&quot;' . mce_escape( __('Picker') ) . '&quot;,
-colorpicker_picker_title:&quot;' . mce_escape( __('Color picker') ) . '&quot;,
-colorpicker_palette_tab:&quot;' . mce_escape( __('Palette') ) . '&quot;,
-colorpicker_palette_title:&quot;' . mce_escape( __('Palette colors') ) . '&quot;,
-colorpicker_named_tab:&quot;' . mce_escape( __('Named') ) . '&quot;,
-colorpicker_named_title:&quot;' . mce_escape( __('Named colors') ) . '&quot;,
-colorpicker_color:&quot;' . mce_escape( __('Color:') ) . '&quot;,
-colorpicker_name:&quot;' . mce_escape( _x('Name:', 'html attribute') ) . '&quot;,
-charmap_title:&quot;' . mce_escape( __('Select custom character') ) . '&quot;,
-charmap_usage:&quot;' . mce_escape( __('Use left and right arrows to navigate.') ) . '&quot;,
-image_title:&quot;' . mce_escape( __('Insert/edit image') ) . '&quot;,
-image_src:&quot;' . mce_escape( __('Image URL') ) . '&quot;,
-image_alt:&quot;' . mce_escape( __('Image description') ) . '&quot;,
-image_list:&quot;' . mce_escape( __('Image list') ) . '&quot;,
-image_border:&quot;' . mce_escape( __('Border') ) . '&quot;,
-image_dimensions:&quot;' . mce_escape( __('Dimensions') ) . '&quot;,
-image_vspace:&quot;' . mce_escape( __('Vertical space') ) . '&quot;,
-image_hspace:&quot;' . mce_escape( __('Horizontal space') ) . '&quot;,
-image_align:&quot;' . mce_escape( __('Alignment') ) . '&quot;,
-image_align_baseline:&quot;' . mce_escape( __('Baseline') ) . '&quot;,
-image_align_top:&quot;' . mce_escape( __('Top') ) . '&quot;,
-image_align_middle:&quot;' . mce_escape( __('Middle') ) . '&quot;,
-image_align_bottom:&quot;' . mce_escape( __('Bottom') ) . '&quot;,
-image_align_texttop:&quot;' . mce_escape( __('Text top') ) . '&quot;,
-image_align_textbottom:&quot;' . mce_escape( __('Text bottom') ) . '&quot;,
-image_align_left:&quot;' . mce_escape( __('Left') ) . '&quot;,
-image_align_right:&quot;' . mce_escape( __('Right') ) . '&quot;,
-link_title:&quot;' . mce_escape( __('Insert/edit link') ) . '&quot;,
-link_url:&quot;' . mce_escape( __('Link URL') ) . '&quot;,
-link_target:&quot;' . mce_escape( __('Target') ) . '&quot;,
-link_target_same:&quot;' . mce_escape( __('Open link in the same window') ) . '&quot;,
-link_target_blank:&quot;' . mce_escape( __('Open link in a new window') ) . '&quot;,
-link_titlefield:&quot;' . mce_escape( __('Title') ) . '&quot;,
-link_is_email:&quot;' . mce_escape( __('The URL you entered seems to be an email address, do you want to add the required mailto: prefix?') ) . '&quot;,
-link_is_external:&quot;' . mce_escape( __('The URL you entered seems to external link, do you want to add the required http:// prefix?') ) . '&quot;,
-link_list:&quot;' . mce_escape( __('Link list') ) . '&quot;,
-accessibility_help:&quot;' . mce_escape( __('Accessibility Help') ) . '&quot;,
-accessibility_usage_title:&quot;' . mce_escape( __('General Usage') ) . '&quot;
-});
</del><ins>+                'colors' =&gt; array(
+                        '000000' =&gt; __('Black'),
+                        '993300' =&gt; __('Burnt orange'),
+                        '333300' =&gt; __('Dark olive'),
+                        '003300' =&gt; __('Dark green'),
+                        '003366' =&gt; __('Dark azure'),
+                        '000080' =&gt; __('Navy Blue'),
+                        '333399' =&gt; __('Indigo'),
+                        '333333' =&gt; __('Very dark gray'),
+                        '800000' =&gt; __('Maroon'),
+                        'FF6600' =&gt; __('Orange'),
+                        '808000' =&gt; __('Olive'),
+                        '008000' =&gt; __('Green'),
+                        '008080' =&gt; __('Teal'),
+                        '0000FF' =&gt; __('Blue'),
+                        '666699' =&gt; __('Grayish blue'),
+                        '808080' =&gt; __('Gray'),
+                        'FF0000' =&gt; __('Red'),
+                        'FF9900' =&gt; __('Amber'),
+                        '99CC00' =&gt; __('Yellow green'),
+                        '339966' =&gt; __('Sea green'),
+                        '33CCCC' =&gt; __('Turquoise'),
+                        '3366FF' =&gt; __('Royal blue'),
+                        '800080' =&gt; __('Purple'),
+                        '999999' =&gt; __('Medium gray'),
+                        'FF00FF' =&gt; __('Magenta'),
+                        'FFCC00' =&gt; __('Gold'),
+                        'FFFF00' =&gt; __('Yellow'),
+                        '00FF00' =&gt; __('Lime'),
+                        '00FFFF' =&gt; __('Aqua'),
+                        '00CCFF' =&gt; __('Sky blue'),
+                        '993366' =&gt; __('Brown'),
+                        'C0C0C0' =&gt; __('Silver'),
+                        'FF99CC' =&gt; __('Pink'),
+                        'FFCC99' =&gt; __('Peach'),
+                        'FFFF99' =&gt; __('Light yellow'),
+                        'CCFFCC' =&gt; __('Pale green'),
+                        'CCFFFF' =&gt; __('Pale cyan'),
+                        '99CCFF' =&gt; __('Light sky blue'),
+                        'CC99FF' =&gt; __('Plum'),
+                        'FFFFFF' =&gt; __('White')
+                ),
</ins><span class="cx"> 
</span><del>-tinyMCE.addI18n(&quot;' . _WP_Editors::$mce_locale . '.media_dlg&quot;,{
-title:&quot;' . mce_escape( __('Insert / edit embedded media') ) . '&quot;,
-general:&quot;' . mce_escape( __('General') ) . '&quot;,
-advanced:&quot;' . mce_escape( __('Advanced') ) . '&quot;,
-file:&quot;' . mce_escape( __('File/URL') ) . '&quot;,
-list:&quot;' . mce_escape( __('List') ) . '&quot;,
-size:&quot;' . mce_escape( __('Dimensions') ) . '&quot;,
-preview:&quot;' . mce_escape( __('Preview') ) . '&quot;,
-constrain_proportions:&quot;' . mce_escape( __('Constrain proportions') ) . '&quot;,
-type:&quot;' . mce_escape( __('Type') ) . '&quot;,
-id:&quot;' . mce_escape( __('Id') ) . '&quot;,
-name:&quot;' . mce_escape( _x('Name', 'html attribute') ) . '&quot;,
-class_name:&quot;' . mce_escape( __('Class') ) . '&quot;,
-vspace:&quot;' . mce_escape( __('V-Space') ) . '&quot;,
-hspace:&quot;' . mce_escape( __('H-Space') ) . '&quot;,
-play:&quot;' . mce_escape( __('Auto play') ) . '&quot;,
-loop:&quot;' . mce_escape( __('Loop') ) . '&quot;,
-menu:&quot;' . mce_escape( __('Show menu') ) . '&quot;,
-quality:&quot;' . mce_escape( __('Quality') ) . '&quot;,
-scale:&quot;' . mce_escape( __('Scale') ) . '&quot;,
-align:&quot;' . mce_escape( __('Align') ) . '&quot;,
-salign:&quot;' . mce_escape( __('SAlign') ) . '&quot;,
-wmode:&quot;' . mce_escape( __('WMode') ) . '&quot;,
-bgcolor:&quot;' . mce_escape( __('Background') ) . '&quot;,
-base:&quot;' . mce_escape( __('Base') ) . '&quot;,
-flashvars:&quot;' . mce_escape( __('Flashvars') ) . '&quot;,
-liveconnect:&quot;' . mce_escape( __('SWLiveConnect') ) . '&quot;,
-autohref:&quot;' . mce_escape( __('AutoHREF') ) . '&quot;,
-cache:&quot;' . mce_escape( __('Cache') ) . '&quot;,
-hidden:&quot;' . mce_escape( __('Hidden') ) . '&quot;,
-controller:&quot;' . mce_escape( __('Controller') ) . '&quot;,
-kioskmode:&quot;' . mce_escape( __('Kiosk mode') ) . '&quot;,
-playeveryframe:&quot;' . mce_escape( __('Play every frame') ) . '&quot;,
-targetcache:&quot;' . mce_escape( __('Target cache') ) . '&quot;,
-correction:&quot;' . mce_escape( __('No correction') ) . '&quot;,
-enablejavascript:&quot;' . mce_escape( __('Enable JavaScript') ) . '&quot;,
-starttime:&quot;' . mce_escape( __('Start time') ) . '&quot;,
-endtime:&quot;' . mce_escape( __('End time') ) . '&quot;,
-href:&quot;' . mce_escape( __('href') ) . '&quot;,
-qtsrcchokespeed:&quot;' . mce_escape( __('Choke speed') ) . '&quot;,
-target:&quot;' . mce_escape( __('Target') ) . '&quot;,
-volume:&quot;' . mce_escape( __('Volume') ) . '&quot;,
-autostart:&quot;' . mce_escape( __('Auto start') ) . '&quot;,
-enabled:&quot;' . mce_escape( __('Enabled') ) . '&quot;,
-fullscreen:&quot;' . mce_escape( __('Fullscreen') ) . '&quot;,
-invokeurls:&quot;' . mce_escape( __('Invoke URLs') ) . '&quot;,
-mute:&quot;' . mce_escape( __('Mute') ) . '&quot;,
-stretchtofit:&quot;' . mce_escape( __('Stretch to fit') ) . '&quot;,
-windowlessvideo:&quot;' . mce_escape( __('Windowless video') ) . '&quot;,
-balance:&quot;' . mce_escape( __('Balance') ) . '&quot;,
-baseurl:&quot;' . mce_escape( __('Base URL') ) . '&quot;,
-captioningid:&quot;' . mce_escape( __('Captioning id') ) . '&quot;,
-currentmarker:&quot;' . mce_escape( __('Current marker') ) . '&quot;,
-currentposition:&quot;' . mce_escape( __('Current position') ) . '&quot;,
-defaultframe:&quot;' . mce_escape( __('Default frame') ) . '&quot;,
-playcount:&quot;' . mce_escape( __('Play count') ) . '&quot;,
-rate:&quot;' . mce_escape( __('Rate') ) . '&quot;,
-uimode:&quot;' . mce_escape( __('UI Mode') ) . '&quot;,
-flash_options:&quot;' . mce_escape( __('Flash options') ) . '&quot;,
-qt_options:&quot;' . mce_escape( __('Quicktime options') ) . '&quot;,
-wmp_options:&quot;' . mce_escape( __('Windows media player options') ) . '&quot;,
-rmp_options:&quot;' . mce_escape( __('Real media player options') ) . '&quot;,
-shockwave_options:&quot;' . mce_escape( __('Shockwave options') ) . '&quot;,
-autogotourl:&quot;' . mce_escape( __('Auto goto URL') ) . '&quot;,
-center:&quot;' . mce_escape( __('Center') ) . '&quot;,
-imagestatus:&quot;' . mce_escape( __('Image status') ) . '&quot;,
-maintainaspect:&quot;' . mce_escape( __('Maintain aspect') ) . '&quot;,
-nojava:&quot;' . mce_escape( __('No java') ) . '&quot;,
-prefetch:&quot;' . mce_escape( __('Prefetch') ) . '&quot;,
-shuffle:&quot;' . mce_escape( __('Shuffle') ) . '&quot;,
-console:&quot;' . mce_escape( __('Console') ) . '&quot;,
-numloop:&quot;' . mce_escape( __('Num loops') ) . '&quot;,
-controls:&quot;' . mce_escape( __('Controls') ) . '&quot;,
-scriptcallbacks:&quot;' . mce_escape( __('Script callbacks') ) . '&quot;,
-swstretchstyle:&quot;' . mce_escape( __('Stretch style') ) . '&quot;,
-swstretchhalign:&quot;' . mce_escape( __('Stretch H-Align') ) . '&quot;,
-swstretchvalign:&quot;' . mce_escape( __('Stretch V-Align') ) . '&quot;,
-sound:&quot;' . mce_escape( __('Sound') ) . '&quot;,
-progress:&quot;' . mce_escape( __('Progress') ) . '&quot;,
-qtsrc:&quot;' . mce_escape( __('QT Src') ) . '&quot;,
-qt_stream_warn:&quot;' . mce_escape( __('Streamed rtsp resources should be added to the QT Src field under the advanced tab.') ) . '&quot;,
-align_top:&quot;' . mce_escape( __('Top') ) . '&quot;,
-align_right:&quot;' . mce_escape( __('Right') ) . '&quot;,
-align_bottom:&quot;' . mce_escape( __('Bottom') ) . '&quot;,
-align_left:&quot;' . mce_escape( __('Left') ) . '&quot;,
-align_center:&quot;' . mce_escape( __('Center') ) . '&quot;,
-align_top_left:&quot;' . mce_escape( __('Top left') ) . '&quot;,
-align_top_right:&quot;' . mce_escape( __('Top right') ) . '&quot;,
-align_bottom_left:&quot;' . mce_escape( __('Bottom left') ) . '&quot;,
-align_bottom_right:&quot;' . mce_escape( __('Bottom right') ) . '&quot;,
-flv_options:&quot;' . mce_escape( __('Flash video options') ) . '&quot;,
-flv_scalemode:&quot;' . mce_escape( __('Scale mode') ) . '&quot;,
-flv_buffer:&quot;' . mce_escape( __('Buffer') ) . '&quot;,
-flv_startimage:&quot;' . mce_escape( __('Start image') ) . '&quot;,
-flv_starttime:&quot;' . mce_escape( __('Start time') ) . '&quot;,
-flv_defaultvolume:&quot;' . mce_escape( __('Default volume') ) . '&quot;,
-flv_hiddengui:&quot;' . mce_escape( __('Hidden GUI') ) . '&quot;,
-flv_autostart:&quot;' . mce_escape( __('Auto start') ) . '&quot;,
-flv_loop:&quot;' . mce_escape( __('Loop') ) . '&quot;,
-flv_showscalemodes:&quot;' . mce_escape( __('Show scale modes') ) . '&quot;,
-flv_smoothvideo:&quot;' . mce_escape( __('Smooth video') ) . '&quot;,
-flv_jscallback:&quot;' . mce_escape( __('JS Callback') ) . '&quot;,
-html5_video_options:&quot;' . mce_escape( __('HTML5 Video Options') ) . '&quot;,
-altsource1:&quot;' . mce_escape( __('Alternative source 1') ) . '&quot;,
-altsource2:&quot;' . mce_escape( __('Alternative source 2') ) . '&quot;,
-preload:&quot;' . mce_escape( __('Preload') ) . '&quot;,
-poster:&quot;' . mce_escape( __('Poster') ) . '&quot;,
-source:&quot;' . mce_escape( __('Source') ) . '&quot;
-});
</del><ins>+                'contextmenu' =&gt; array(
+                        'align' =&gt; __('Alignment'), /* translators: alignment */
+                        'left' =&gt; __('Left'), /* translators: alignment */
+                        'center' =&gt; __('Center'), /* translators: alignment */
+                        'right' =&gt; __('Right'), /* translators: alignment */
+                        'full' =&gt; __('Full') /* translators: alignment */
+                ),
</ins><span class="cx"> 
</span><del>-tinyMCE.addI18n(&quot;' . _WP_Editors::$mce_locale . '.wordpress&quot;,{
-wp_adv_desc:&quot;' . mce_escape( __('Show/Hide Kitchen Sink (Alt + Shift + Z)') )  . '&quot;,
-wp_more_desc:&quot;' . mce_escape( __('Insert More Tag (Alt + Shift + T)') ) . '&quot;,
-wp_page_desc:&quot;' . mce_escape( __('Insert Page break (Alt + Shift + P)') ) . '&quot;,
-wp_help_desc:&quot;' . mce_escape( __('Help (Alt + Shift + H)') ) . '&quot;,
-wp_more_alt:&quot;' . mce_escape( __('More...') ) . '&quot;,
-wp_page_alt:&quot;' . mce_escape( __('Next page...') ) . '&quot;,
-add_media:&quot;' . mce_escape( __('Add Media') ) . '&quot;,
-add_image:&quot;' . mce_escape( __('Add an Image') ) . '&quot;,
-add_video:&quot;' . mce_escape( __('Add Video') ) . '&quot;,
-add_audio:&quot;' . mce_escape( __('Add Audio') ) . '&quot;,
-editgallery:&quot;' . mce_escape( __('Edit Gallery') ) . '&quot;,
-delgallery:&quot;' . mce_escape( __('Delete Gallery') ) . '&quot;
-});
</del><ins>+                'insertdatetime' =&gt; array(
+                        'date_fmt' =&gt; __('%Y-%m-%d'), /* translators: year, month, date */
+                        'time_fmt' =&gt; __('%H:%M:%S'), /* translators: hours, minutes, seconds */
+                        'insertdate_desc' =&gt; __('Insert date'),
+                        'inserttime_desc' =&gt; __('Insert time'),
+                        'months_long' =&gt; __('January').','.__('February').','.__('March').','.__('April').','.__('May').','.__('June').','.__('July').','.__('August').','.__('September').','.__('October').','.__('November').','.__('December'),
+                        'months_short' =&gt; __('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'),
+                        'day_long' =&gt; __('Sunday').','.__('Monday').','.__('Tuesday').','.__('Wednesday').','.__('Thursday').','.__('Friday').','.__('Saturday'),
+                        'day_short' =&gt; __('Sun').','.__('Mon').','.__('Tue').','.__('Wed').','.__('Thu').','.__('Fri').','.__('Sat')
+                ),
</ins><span class="cx"> 
</span><del>-tinyMCE.addI18n(&quot;' . _WP_Editors::$mce_locale . '.wpeditimage&quot;,{
-edit_img:&quot;' . mce_escape( __('Edit Image') )  . '&quot;,
-del_img:&quot;' . mce_escape( __('Delete Image') )  . '&quot;,
-adv_settings:&quot;' . mce_escape( __('Advanced Settings') )  . '&quot;,
-none:&quot;' . mce_escape( __('None') )  . '&quot;,
-size:&quot;' . mce_escape( __('Size') ) . '&quot;,
-thumbnail:&quot;' . mce_escape( __('Thumbnail') ) . '&quot;,
-medium:&quot;' . mce_escape( __('Medium') ) . '&quot;,
-full_size:&quot;' . mce_escape( __('Full Size') ) . '&quot;,
-current_link:&quot;' . mce_escape( __('Current Link') ) . '&quot;,
-link_to_img:&quot;' . mce_escape( __('Link to Image') ) . '&quot;,
-link_help:&quot;' . mce_escape( __('Enter a link URL or click above for presets.') ) . '&quot;,
-adv_img_settings:&quot;' . mce_escape( __('Advanced Image Settings') ) . '&quot;,
-source:&quot;' . mce_escape( __('Source') )  . '&quot;,
-width:&quot;' . mce_escape( __('Width') ) . '&quot;,
-height:&quot;' . mce_escape( __('Height') ) . '&quot;,
-orig_size:&quot;' . mce_escape( __('Original Size') ) . '&quot;,
-css:&quot;' . mce_escape( __('CSS Class') ) . '&quot;,
-adv_link_settings:&quot;' . mce_escape( __('Advanced Link Settings') )  . '&quot;,
-link_rel:&quot;' . mce_escape( __('Link Rel') ) . '&quot;,
-height:&quot;' . mce_escape( __('Height') ) . '&quot;,
-orig_size:&quot;' . mce_escape( __('Original Size') ) . '&quot;,
-css:&quot;' . mce_escape( __('CSS Class') ) . '&quot;,
-s60:&quot;' . mce_escape( __('60%') ) . '&quot;,
-s70:&quot;' . mce_escape( __('70%') ) . '&quot;,
-s80:&quot;' . mce_escape( __('80%') ) . '&quot;,
-s90:&quot;' . mce_escape( __('90%') ) . '&quot;,
-s100:&quot;' . mce_escape( __('100%') ) . '&quot;,
-s110:&quot;' . mce_escape( __('110%') ) . '&quot;,
-s120:&quot;' . mce_escape( __('120%') ) . '&quot;,
-s130:&quot;' . mce_escape( __('130%') ) . '&quot;,
-img_title:&quot;' . mce_escape( __('Title') ) . '&quot;,
-caption:&quot;' . mce_escape( __('Caption') ) . '&quot;,
-insert_link:&quot;' . mce_escape( __('Insert link') ) . '&quot;,
-linked_text:&quot;' . mce_escape( __('Linked text') ) . '&quot;,
-alt:&quot;' . mce_escape( __('Alternate Text') ) . '&quot;
-});
-';
</del><ins>+                'print' =&gt; array(
+                        'print_desc' =&gt; __('Print')
+                ),
+
+                'preview' =&gt; array(
+                        'preview_desc' =&gt; __('Preview')
+                ),
+
+                'directionality' =&gt; array(
+                        'ltr_desc' =&gt; __('Direction left to right'),
+                        'rtl_desc' =&gt; __('Direction right to left')
+                ),
+
+                'layer' =&gt; array(
+                        'insertlayer_desc' =&gt; __('Insert new layer'),
+                        'forward_desc' =&gt; __('Move forward'),
+                        'backward_desc' =&gt; __('Move backward'),
+                        'absolute_desc' =&gt; __('Toggle absolute positioning'),
+                        'content' =&gt; __('New layer...')
+                ),
+
+                'save' =&gt; array(
+                        'save_desc' =&gt; __('Save'),
+                        'cancel_desc' =&gt; __('Cancel all changes')
+                ),
+
+                'nonbreaking' =&gt; array(
+                        'nonbreaking_desc' =&gt; __('Insert non-breaking space character')
+                ),
+
+                'iespell' =&gt; array(
+                        'iespell_desc' =&gt; __('Run spell checking'),
+                        'download' =&gt; __('ieSpell not detected. Do you want to install it now?')
+                ),
+
+                'advhr' =&gt; array(
+                        'advhr_desc' =&gt; __('Horizontale rule')
+                ),
+
+                'emotions' =&gt; array(
+                        'emotions_desc' =&gt; __('Emotions')
+                ),
+
+                'searchreplace' =&gt; array(
+                        'search_desc' =&gt; __('Find'),
+                        'replace_desc' =&gt; __('Find/Replace')
+                ),
+
+                'advimage' =&gt; array(
+                        'image_desc' =&gt; __('Insert/edit image')
+                ),
+
+                'advlink' =&gt; array(
+                        'link_desc' =&gt; __('Insert/edit link')
+                ),
+
+                'xhtmlxtras' =&gt; array(
+                        'cite_desc' =&gt; __('Citation'),
+                        'abbr_desc' =&gt; __('Abbreviation'),
+                        'acronym_desc' =&gt; __('Acronym'),
+                        'del_desc' =&gt; __('Deletion'),
+                        'ins_desc' =&gt; __('Insertion'),
+                        'attribs_desc' =&gt; __('Insert/Edit Attributes')
+                ),
+
+                'style' =&gt; array(
+                        'desc' =&gt; __('Edit CSS Style')
+                ),
+
+                'paste' =&gt; array(
+                        'paste_text_desc' =&gt; __('Paste as Plain Text'),
+                        'paste_word_desc' =&gt; __('Paste from Word'),
+                        'selectall_desc' =&gt; __('Select All'),
+                        'plaintext_mode_sticky' =&gt; __('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.'),
+                        'plaintext_mode' =&gt; __('Paste is now in plain text mode. Click again to toggle back to regular paste mode.')
+                ),
+
+                'paste_dlg' =&gt; array(
+                        'text_title' =&gt; __('Use CTRL+V on your keyboard to paste the text into the window.'),
+                        'text_linebreaks' =&gt; __('Keep linebreaks'),
+                        'word_title' =&gt; __('Use CTRL+V on your keyboard to paste the text into the window.')
+                ),
+
+                'table' =&gt; array(
+                        'desc' =&gt; __('Inserts a new table'),
+                        'row_before_desc' =&gt; __('Insert row before'),
+                        'row_after_desc' =&gt; __('Insert row after'),
+                        'delete_row_desc' =&gt; __('Delete row'),
+                        'col_before_desc' =&gt; __('Insert column before'),
+                        'col_after_desc' =&gt; __('Insert column after'),
+                        'delete_col_desc' =&gt; __('Remove column'),
+                        'split_cells_desc' =&gt; __('Split merged table cells'),
+                        'merge_cells_desc' =&gt; __('Merge table cells'),
+                        'row_desc' =&gt; __('Table row properties'),
+                        'cell_desc' =&gt; __('Table cell properties'),
+                        'props_desc' =&gt; __('Table properties'),
+                        'paste_row_before_desc' =&gt; __('Paste table row before'),
+                        'paste_row_after_desc' =&gt; __('Paste table row after'),
+                        'cut_row_desc' =&gt; __('Cut table row'),
+                        'copy_row_desc' =&gt; __('Copy table row'),
+                        'del' =&gt; __('Delete table'),
+                        'row' =&gt; __('Row'),
+                        'col' =&gt; __('Column'),
+                        'cell' =&gt; __('Cell')
+                ),
+
+                'autosave' =&gt; array(
+                        'unload_msg' =&gt; __('The changes you made will be lost if you navigate away from this page.')
+                ),
+
+                'fullscreen' =&gt; array(
+                        'desc' =&gt; __('Toggle fullscreen mode (Alt + Shift + G)')
+                ),
+
+                'media' =&gt; array(
+                        'desc' =&gt; __('Insert / edit embedded media'),
+                        'edit' =&gt; __('Edit embedded media')
+                ),
+
+                'fullpage' =&gt; array(
+                        'desc' =&gt; __('Document properties')
+                ),
+
+                'template' =&gt; array(
+                        'desc' =&gt; __('Insert predefined template content')
+                ),
+
+                'visualchars' =&gt; array(
+                        'desc' =&gt; __('Visual control characters on/off.')
+                ),
+
+                'spellchecker' =&gt; array(
+                        'desc' =&gt; __('Toggle spellchecker (Alt + Shift + N)'),
+                        'menu' =&gt; __('Spellchecker settings'),
+                        'ignore_word' =&gt; __('Ignore word'),
+                        'ignore_words' =&gt; __('Ignore all'),
+                        'langs' =&gt; __('Languages'),
+                        'wait' =&gt; __('Please wait...'),
+                        'sug' =&gt; __('Suggestions'),
+                        'no_sug' =&gt; __('No suggestions'),
+                        'no_mpell' =&gt; __('No misspellings found.'),
+                        'learn_word' =&gt; __('Learn word')
+                ),
+
+                'pagebreak' =&gt; array(
+                        'desc' =&gt; __('Insert Page Break')
+                ),
+
+                'advlist' =&gt; array(
+                        'types' =&gt; __('Types'),
+                        'def' =&gt; __('Default'),
+                        'lower_alpha' =&gt; __('Lower alpha'),
+                        'lower_greek' =&gt; __('Lower greek'),
+                        'lower_roman' =&gt; __('Lower roman'),
+                        'upper_alpha' =&gt; __('Upper alpha'),
+                        'upper_roman' =&gt; __('Upper roman'),
+                        'circle' =&gt; __('Circle'),
+                        'disc' =&gt; __('Disc'),
+                        'square' =&gt; __('Square')
+                ),
+
+                'aria' =&gt; array(
+                        'rich_text_area' =&gt; __('Rich Text Area')
+                ),
+
+                'wordcount' =&gt; array(
+                        'words' =&gt; __('Words:')
+                )
+        );
+
+        $advanced = array(
+                'style_select' =&gt; __('Styles'), /* translators: TinyMCE inline styles */
+                'font_size' =&gt; __('Font size'),
+                'fontdefault' =&gt; __('Font family'),
+                'block' =&gt; __('Format'),
+                'paragraph' =&gt; __('Paragraph'),
+                'div' =&gt; __('Div'),
+                'address' =&gt; __('Address'),
+                'pre' =&gt; __('Preformatted'),
+                'h1' =&gt; __('Heading 1'),
+                'h2' =&gt; __('Heading 2'),
+                'h3' =&gt; __('Heading 3'),
+                'h4' =&gt; __('Heading 4'),
+                'h5' =&gt; __('Heading 5'),
+                'h6' =&gt; __('Heading 6'),
+                'blockquote' =&gt; __('Blockquote'),
+                'code' =&gt; __('Code'),
+                'samp' =&gt; __('Code sample'),
+                'dt' =&gt; __('Definition term '),
+                'dd' =&gt; __('Definition description'),
+                'bold_desc' =&gt; __('Bold (Ctrl + B)'),
+                'italic_desc' =&gt; __('Italic (Ctrl + I)'),
+                'underline_desc' =&gt; __('Underline'),
+                'striketrough_desc' =&gt; __('Strikethrough (Alt + Shift + D)'),
+                'justifyleft_desc' =&gt; __('Align Left (Alt + Shift + L)'),
+                'justifycenter_desc' =&gt; __('Align Center (Alt + Shift + C)'),
+                'justifyright_desc' =&gt; __('Align Right (Alt + Shift + R)'),
+                'justifyfull_desc' =&gt; __('Align Full (Alt + Shift + J)'),
+                'bullist_desc' =&gt; __('Unordered list (Alt + Shift + U)'),
+                'numlist_desc' =&gt; __('Ordered list (Alt + Shift + O)'),
+                'outdent_desc' =&gt; __('Outdent'),
+                'indent_desc' =&gt; __('Indent'),
+                'undo_desc' =&gt; __('Undo (Ctrl + Z)'),
+                'redo_desc' =&gt; __('Redo (Ctrl + Y)'),
+                'link_desc' =&gt; __('Insert/edit link (Alt + Shift + A)'),
+                'unlink_desc' =&gt; __('Unlink (Alt + Shift + S)'),
+                'image_desc' =&gt; __('Insert/edit image (Alt + Shift + M)'),
+                'cleanup_desc' =&gt; __('Cleanup messy code'),
+                'code_desc' =&gt; __('Edit HTML Source'),
+                'sub_desc' =&gt; __('Subscript'),
+                'sup_desc' =&gt; __('Superscript'),
+                'hr_desc' =&gt; __('Insert horizontal ruler'),
+                'removeformat_desc' =&gt; __('Remove formatting'),
+                'forecolor_desc' =&gt; __('Select text color'),
+                'backcolor_desc' =&gt; __('Select background color'),
+                'charmap_desc' =&gt; __('Insert custom character'),
+                'visualaid_desc' =&gt; __('Toggle guidelines/invisible elements'),
+                'anchor_desc' =&gt; __('Insert/edit anchor'),
+                'cut_desc' =&gt; __('Cut'),
+                'copy_desc' =&gt; __('Copy'),
+                'paste_desc' =&gt; __('Paste'),
+                'image_props_desc' =&gt; __('Image properties'),
+                'newdocument_desc' =&gt; __('New document'),
+                'help_desc' =&gt; __('Help'),
+                'blockquote_desc' =&gt; __('Blockquote (Alt + Shift + Q)'),
+                'clipboard_msg' =&gt; __('Copy/Cut/Paste is not available in Mozilla and Firefox.'),
+                'path' =&gt; __('Path'),
+                'newdocument' =&gt; __('Are you sure you want to clear all contents?'),
+                'toolbar_focus' =&gt; __('Jump to tool buttons - Alt+Q, Jump to editor - Alt-Z, Jump to element path - Alt-X'),
+                'more_colors' =&gt; __('More colors'),
+                'shortcuts_desc' =&gt; __('Accessibility Help'),
+                'help_shortcut' =&gt; __('Press ALT F10 for toolbar. Press ALT 0 for help.'),
+                'rich_text_area' =&gt; __('Rich Text Area'),
+                'toolbar' =&gt; __('Toolbar')
+        );
+
+        $advanced_dlg = array(
+                'about_title' =&gt; __('About TinyMCE'),
+                'about_general' =&gt; __('About'),
+                'about_help' =&gt; __('Help'),
+                'about_license' =&gt; __('License'),
+                'about_plugins' =&gt; __('Plugins'),
+                'about_plugin' =&gt; __('Plugin'),
+                'about_author' =&gt; __('Author'),
+                'about_version' =&gt; __('Version'),
+                'about_loaded' =&gt; __('Loaded plugins'),
+                'anchor_title' =&gt; __('Insert/edit anchor'),
+                'anchor_name' =&gt; __('Anchor name'),
+                'code_title' =&gt; __('HTML Source Editor'),
+                'code_wordwrap' =&gt; __('Word wrap'),
+                'colorpicker_title' =&gt; __('Select a color'),
+                'colorpicker_picker_tab' =&gt; __('Picker'),
+                'colorpicker_picker_title' =&gt; __('Color picker'),
+                'colorpicker_palette_tab' =&gt; __('Palette'),
+                'colorpicker_palette_title' =&gt; __('Palette colors'),
+                'colorpicker_named_tab' =&gt; __('Named'),
+                'colorpicker_named_title' =&gt; __('Named colors'),
+                'colorpicker_color' =&gt; __('Color:'),
+                'colorpicker_name' =&gt; _x('Name:', 'html attribute'),
+                'charmap_title' =&gt; __('Select custom character'),
+                'charmap_usage' =&gt; __('Use left and right arrows to navigate.'),
+                'image_title' =&gt; __('Insert/edit image'),
+                'image_src' =&gt; __('Image URL'),
+                'image_alt' =&gt; __('Image description'),
+                'image_list' =&gt; __('Image list'),
+                'image_border' =&gt; __('Border'),
+                'image_dimensions' =&gt; __('Dimensions'),
+                'image_vspace' =&gt; __('Vertical space'),
+                'image_hspace' =&gt; __('Horizontal space'),
+                'image_align' =&gt; __('Alignment'),
+                'image_align_baseline' =&gt; __('Baseline'),
+                'image_align_top' =&gt; __('Top'),
+                'image_align_middle' =&gt; __('Middle'),
+                'image_align_bottom' =&gt; __('Bottom'),
+                'image_align_texttop' =&gt; __('Text top'),
+                'image_align_textbottom' =&gt; __('Text bottom'),
+                'image_align_left' =&gt; __('Left'),
+                'image_align_right' =&gt; __('Right'),
+                'link_title' =&gt; __('Insert/edit link'),
+                'link_url' =&gt; __('Link URL'),
+                'link_target' =&gt; __('Target'),
+                'link_target_same' =&gt; __('Open link in the same window'),
+                'link_target_blank' =&gt; __('Open link in a new window'),
+                'link_titlefield' =&gt; __('Title'),
+                'link_is_email' =&gt; __('The URL you entered seems to be an email address, do you want to add the required mailto: prefix?'),
+                'link_is_external' =&gt; __('The URL you entered seems to external link, do you want to add the required http:// prefix?'),
+                'link_list' =&gt; __('Link list'),
+                'accessibility_help' =&gt; __('Accessibility Help'),
+                'accessibility_usage_title' =&gt; __('General Usage')
+        );
+
+        $media_dlg = array(
+                'title' =&gt; __('Insert / edit embedded media'),
+                'general' =&gt; __('General'),
+                'advanced' =&gt; __('Advanced'),
+                'file' =&gt; __('File/URL'),
+                'list' =&gt; __('List'),
+                'size' =&gt; __('Dimensions'),
+                'preview' =&gt; __('Preview'),
+                'constrain_proportions' =&gt; __('Constrain proportions'),
+                'type' =&gt; __('Type'),
+                'id' =&gt; __('Id'),
+                'name' =&gt; _x('Name', 'html attribute'),
+                'class_name' =&gt; __('Class'),
+                'vspace' =&gt; __('V-Space'),
+                'hspace' =&gt; __('H-Space'),
+                'play' =&gt; __('Auto play'),
+                'loop' =&gt; __('Loop'),
+                'menu' =&gt; __('Show menu'),
+                'quality' =&gt; __('Quality'),
+                'scale' =&gt; __('Scale'),
+                'align' =&gt; __('Align'),
+                'salign' =&gt; __('SAlign'),
+                'wmode' =&gt; __('WMode'),
+                'bgcolor' =&gt; __('Background'),
+                'base' =&gt; __('Base'),
+                'flashvars' =&gt; __('Flashvars'),
+                'liveconnect' =&gt; __('SWLiveConnect'),
+                'autohref' =&gt; __('AutoHREF'),
+                'cache' =&gt; __('Cache'),
+                'hidden' =&gt; __('Hidden'),
+                'controller' =&gt; __('Controller'),
+                'kioskmode' =&gt; __('Kiosk mode'),
+                'playeveryframe' =&gt; __('Play every frame'),
+                'targetcache' =&gt; __('Target cache'),
+                'correction' =&gt; __('No correction'),
+                'enablejavascript' =&gt; __('Enable JavaScript'),
+                'starttime' =&gt; __('Start time'),
+                'endtime' =&gt; __('End time'),
+                'href' =&gt; __('href'),
+                'qtsrcchokespeed' =&gt; __('Choke speed'),
+                'target' =&gt; __('Target'),
+                'volume' =&gt; __('Volume'),
+                'autostart' =&gt; __('Auto start'),
+                'enabled' =&gt; __('Enabled'),
+                'fullscreen' =&gt; __('Fullscreen'),
+                'invokeurls' =&gt; __('Invoke URLs'),
+                'mute' =&gt; __('Mute'),
+                'stretchtofit' =&gt; __('Stretch to fit'),
+                'windowlessvideo' =&gt; __('Windowless video'),
+                'balance' =&gt; __('Balance'),
+                'baseurl' =&gt; __('Base URL'),
+                'captioningid' =&gt; __('Captioning id'),
+                'currentmarker' =&gt; __('Current marker'),
+                'currentposition' =&gt; __('Current position'),
+                'defaultframe' =&gt; __('Default frame'),
+                'playcount' =&gt; __('Play count'),
+                'rate' =&gt; __('Rate'),
+                'uimode' =&gt; __('UI Mode'),
+                'flash_options' =&gt; __('Flash options'),
+                'qt_options' =&gt; __('Quicktime options'),
+                'wmp_options' =&gt; __('Windows media player options'),
+                'rmp_options' =&gt; __('Real media player options'),
+                'shockwave_options' =&gt; __('Shockwave options'),
+                'autogotourl' =&gt; __('Auto goto URL'),
+                'center' =&gt; __('Center'),
+                'imagestatus' =&gt; __('Image status'),
+                'maintainaspect' =&gt; __('Maintain aspect'),
+                'nojava' =&gt; __('No java'),
+                'prefetch' =&gt; __('Prefetch'),
+                'shuffle' =&gt; __('Shuffle'),
+                'console' =&gt; __('Console'),
+                'numloop' =&gt; __('Num loops'),
+                'controls' =&gt; __('Controls'),
+                'scriptcallbacks' =&gt; __('Script callbacks'),
+                'swstretchstyle' =&gt; __('Stretch style'),
+                'swstretchhalign' =&gt; __('Stretch H-Align'),
+                'swstretchvalign' =&gt; __('Stretch V-Align'),
+                'sound' =&gt; __('Sound'),
+                'progress' =&gt; __('Progress'),
+                'qtsrc' =&gt; __('QT Src'),
+                'qt_stream_warn' =&gt; __('Streamed rtsp resources should be added to the QT Src field under the advanced tab.'),
+                'align_top' =&gt; __('Top'),
+                'align_right' =&gt; __('Right'),
+                'align_bottom' =&gt; __('Bottom'),
+                'align_left' =&gt; __('Left'),
+                'align_center' =&gt; __('Center'),
+                'align_top_left' =&gt; __('Top left'),
+                'align_top_right' =&gt; __('Top right'),
+                'align_bottom_left' =&gt; __('Bottom left'),
+                'align_bottom_right' =&gt; __('Bottom right'),
+                'flv_options' =&gt; __('Flash video options'),
+                'flv_scalemode' =&gt; __('Scale mode'),
+                'flv_buffer' =&gt; __('Buffer'),
+                'flv_startimage' =&gt; __('Start image'),
+                'flv_starttime' =&gt; __('Start time'),
+                'flv_defaultvolume' =&gt; __('Default volume'),
+                'flv_hiddengui' =&gt; __('Hidden GUI'),
+                'flv_autostart' =&gt; __('Auto start'),
+                'flv_loop' =&gt; __('Loop'),
+                'flv_showscalemodes' =&gt; __('Show scale modes'),
+                'flv_smoothvideo' =&gt; __('Smooth video'),
+                'flv_jscallback' =&gt; __('JS Callback'),
+                'html5_video_options' =&gt; __('HTML5 Video Options'),
+                'altsource1' =&gt; __('Alternative source 1'),
+                'altsource2' =&gt; __('Alternative source 2'),
+                'preload' =&gt; __('Preload'),
+                'poster' =&gt; __('Poster'),
+                'source' =&gt; __('Source')
+        );
+
+        $wordpress = array(
+                'wp_adv_desc' =&gt; __('Show/Hide Kitchen Sink (Alt + Shift + Z)'),
+                'wp_more_desc' =&gt; __('Insert More Tag (Alt + Shift + T)'),
+                'wp_page_desc' =&gt; __('Insert Page break (Alt + Shift + P)'),
+                'wp_help_desc' =&gt; __('Help (Alt + Shift + H)'),
+                'wp_more_alt' =&gt; __('More...'),
+                'wp_page_alt' =&gt; __('Next page...'),
+                'add_media' =&gt; __('Add Media'),
+                'add_image' =&gt; __('Add an Image'),
+                'add_video' =&gt; __('Add Video'),
+                'add_audio' =&gt; __('Add Audio'),
+                'editgallery' =&gt; __('Edit Gallery'),
+                'delgallery' =&gt; __('Delete Gallery')
+        );
+
+        $wpeditimage = array(
+                'edit_img' =&gt; __('Edit Image'),
+                'del_img' =&gt; __('Delete Image'),
+                'adv_settings' =&gt; __('Advanced Settings'),
+                'none' =&gt; __('None'),
+                'size' =&gt; __('Size'),
+                'thumbnail' =&gt; __('Thumbnail'),
+                'medium' =&gt; __('Medium'),
+                'full_size' =&gt; __('Full Size'),
+                'current_link' =&gt; __('Current Link'),
+                'link_to_img' =&gt; __('Link to Image'),
+                'link_help' =&gt; __('Enter a link URL or click above for presets.'),
+                'adv_img_settings' =&gt; __('Advanced Image Settings'),
+                'source' =&gt; __('Source'),
+                'width' =&gt; __('Width'),
+                'height' =&gt; __('Height'),
+                'orig_size' =&gt; __('Original Size'),
+                'css' =&gt; __('CSS Class'),
+                'adv_link_settings' =&gt; __('Advanced Link Settings'),
+                'link_rel' =&gt; __('Link Rel'),
+                'height' =&gt; __('Height'),
+                'orig_size' =&gt; __('Original Size'),
+                'css' =&gt; __('CSS Class'),
+                's60' =&gt; __('60%'),
+                's70' =&gt; __('70%'),
+                's80' =&gt; __('80%'),
+                's90' =&gt; __('90%'),
+                's100' =&gt; __('100%'),
+                's110' =&gt; __('110%'),
+                's120' =&gt; __('120%'),
+                's130' =&gt; __('130%'),
+                'img_title' =&gt; __('Title'),
+                'caption' =&gt; __('Caption'),
+                'insert_link' =&gt; __('Insert link'),
+                'linked_text' =&gt; __('Linked text'),
+                'alt' =&gt; __('Alternate Text')
+        );
+
+        $locale = _WP_Editors::$mce_locale;
+
+        $translated = 'tinyMCE.addI18n({' . $locale . ':' . json_encode( $default ) . &quot;});\n&quot;;
+        $translated .= 'tinyMCE.addI18n(&quot;' . $locale . '.advanced&quot;, ' . json_encode( $advanced ) . &quot;);\n&quot;;
+        $translated .= 'tinyMCE.addI18n(&quot;' . $locale . '.advanced_dlg&quot;, ' . json_encode( $advanced_dlg ) . &quot;);\n&quot;;
+        $translated .= 'tinyMCE.addI18n(&quot;' . $locale . '.media_dlg&quot;, ' . json_encode( $media_dlg ) . &quot;);\n&quot;;
+        $translated .= 'tinyMCE.addI18n(&quot;' . $locale . '.wordpress&quot;, ' . json_encode( $wordpress ) . &quot;);\n&quot;;
+        $translated .= 'tinyMCE.addI18n(&quot;' . $locale . '.wpeditimage&quot;, ' . json_encode( $wpeditimage ) . ');';
+
+        return $translated;
+}
+
+$lang = wp_mce_translation();
+
</ins></span></pre>
</div>
</div>

</body>
</html>