Changeset 2367623
- Timestamp:
- 08/24/2020 08:03:41 AM (5 years ago)
- Location:
- modern-admin-comments/trunk
- Files:
-
- 3 edited
-
js/modern-admin-comments.js (modified) (2 diffs)
-
modern-admin-comments.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
modern-admin-comments/trunk/js/modern-admin-comments.js
r2305468 r2367623 12 12 (function ($) { 13 13 if (!window.commentReply) return; 14 __ = wp.i18n.__; 14 15 window.commentReply.open = function (comment_id, post_id, action) { 15 16 var editRow, rowData, act, replyButton, editHeight, … … 74 75 75 76 if (c.hasClass('unapproved')) { 76 replyButton.text( adminCommentsL10n.replyApprove);77 replyButton.text(__('Approve and Reply')); 77 78 } else { 78 replyButton.text( adminCommentsL10n.reply);79 replyButton.text(__('Reply')); 79 80 } 80 81 -
modern-admin-comments/trunk/modern-admin-comments.php
r2305468 r2367623 3 3 * Plugin Name: Modern Admin Comments by WPMarmite 4 4 * Description: Enhance your administrator/moderator experience in the comments administration pages with a rich text editor. 5 * Version: 1.1 5 * Version: 1.1.1 6 6 * Author: Modern Plugins 7 7 * Author URI: https://modernplugins.com/ … … 58 58 if( 'edit-comments' == $screen->base || 'dashboard' == $screen->base ){ 59 59 $version = get_plugin_data( __FILE__, false, false )['Version']; 60 wp_enqueue_script( 'modern-admin-comments', MODERN_ADMIN_COMMENTS_URL . 'js/modern-admin-comments.js' , array( 'wp-tinymce', 'editor', ' jquery' ), $version, true );60 wp_enqueue_script( 'modern-admin-comments', MODERN_ADMIN_COMMENTS_URL . 'js/modern-admin-comments.js' , array( 'wp-tinymce', 'editor', 'wp-i18n', 'jquery' ), $version, true ); 61 61 } 62 62 } -
modern-admin-comments/trunk/readme.txt
r2305468 r2367623 4 4 Tags: comments 5 5 Requires at least: 4.6 6 Tested up to: 5. 47 Stable tag: 1.1 6 Tested up to: 5.5 7 Stable tag: 1.1.1 8 8 Requires PHP: 5.6 9 9 License: GPL v3 or later … … 54 54 == Changelog == 55 55 56 = 1.1.1 = 57 * Fixed bug preventing comment reply in WP 5.5. 58 56 59 = 1.1 = 57 60 * Added the Ctrl/Cmd + Enter keyboard shortcut to publish a quick reply. … … 68 71 == Upgrade Notice == 69 72 73 = 1.1.1 = 74 * Fixed bug preventing comment reply in WP 5.5. 75 70 76 = 1.1 = 71 77 * Added the Ctrl/Cmd + Enter keyboard shortcut to publish a quick reply.
Note: See TracChangeset
for help on using the changeset viewer.