From b780b94487ad274ca3d807d4b5f0735b9157f564 Mon Sep 17 00:00:00 2001 From: Andrew Ozz Date: Sat, 11 Jul 2015 22:36:58 +0000 Subject: [PATCH] TinyMCE, shortcuts help popup: do not use translatable strings for the keys. See #31441. git-svn-id: https://develop.svn.wordpress.org/trunk@33170 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/js/tinymce/plugins/wordpress/plugin.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-includes/js/tinymce/plugins/wordpress/plugin.js b/src/wp-includes/js/tinymce/plugins/wordpress/plugin.js index 75e6b9085b..4f0b229109 100644 --- a/src/wp-includes/js/tinymce/plugins/wordpress/plugin.js +++ b/src/wp-includes/js/tinymce/plugins/wordpress/plugin.js @@ -270,8 +270,8 @@ tinymce.PluginManager.add( 'wordpress', function( editor ) { html = html + '

' + __( 'When starting a new paragraph with one of these patterns followed by a space, the formatting will be applied automatically. Press Backspace or Escape to undo.' ) + '

' + '' + - tr({ '* or -': 'Bullet list' }) + - tr({ '1. or 1)': 'Numbered list' }) + + tr({ '* -': 'Bullet list' }) + + tr({ '1. 1)': 'Numbered list' }) + tr({ '>': 'Blockquote' }) + tr({ '##': 'Heading 2' }) + tr({ '###': 'Heading 3' }) +