Hi,
I have discovered some bugs and have some recommendations for improvements.
views/layout-new.php line 3
<a href="<?php echo BP_Better_Messages()->functions->get_link(); ?>" class="new-message ajax" title="<?php _e( 'New Thread', 'bp-better-messages' ); ?>"><i class="fas fa-times" aria-hidden="true"></i></a>
=>
<a href="<?php echo BP_Better_Messages()->functions->get_link(); ?>" class="new-message ajax" title="<?php _e( 'Close Thread', 'bp-better-messages' ); ?>"><i class="fas fa-times" aria-hidden="true"></i></a>
assets/js/emojionearea.js and emojionearea.min.js
buttonTitle : "Use the TAB key to insert emoji faster",
=>
buttonTitle : BP_Messages_Emoji.tab,
also the text 'SEARCH:' and several other titles is these files are not localized. Most are defined in bp-better-messages.php.
views/layout-bulk.php line 3
<a href="<?php echo BP_Better_Messages()->functions->get_link(); ?>" class="new-message ajax" title="<?php _e( 'New Thread', 'bp-better-messages' ); ?>"><i class="fas fa-times" aria-hidden="true"></i></a>
=>
<a href="<?php echo BP_Better_Messages()->functions->get_link(); ?>" class="new-message ajax" title="<?php _e( 'Close Thread', 'bp-better-messages' ); ?>"><i class="fas fa-times" aria-hidden="true"></i></a>
addons/stickers.php line 208
return '<i class="fas fa-sticky-note"></i> ' . __('Sticker', 'bp-better-message');
=>
return '<i class="fas fa-sticky-note"></i> ' . __('Sticker', 'bp-better-messages');
inc/hooks.php line 390
echo '<a href="' . $link . '" class="bpbm-private-message-link-buddypress">' . __('Private Message', 'bp-better-message') . '</a>';
=>
echo '<a href="' . $link . '" class="bpbm-private-message-link-buddypress">' . __('Private Message', 'bp-better-messages') . '</a>';
inc/hooks.php line 1000
echo '<div class="generic-button bp-better-messages-private-message-link"><a href="' . $this->pm_link() . '">' . __('Private Message', 'bp-better-message') . '</a></div>';
=>
echo '<div class="generic-button bp-better-messages-private-message-link"><a href="' . $this->pm_link() . '">' . __('Private Message', 'bp-better-messages') . '</a></div>';
inc/notifications.php line 225
$message->message = __('Sticker', 'bp-better-message');
=>
$message->message = __('Sticker', 'bp-better-messages');
views/layout-thread.php line 60
Delete
=>
<?php _e('Delete', 'bp-better-messages'); ?>
views/layout-thread.php line 60
<button type="submit"><i class="fas fa-paper-plane" aria-hidden="true"></i></button>
=>
<button type="submit" title="<?php _e('Send Message', 'bp-better-messages'); ?>"><i class="fas fa-paper-plane" aria-hidden="true"></i></button>
inc/functions.php line 792
<?php if ( $is_muted ) echo '<span class="bpbm-thread-muted"><i class="fas fa-bell-slash"></i></span>'; ?>
=>
<?php if ( $is_muted ) echo '<span class="bpbm-thread-muted"title="' . __('Mute thread notifications', 'bp-better-messages') . '"><i class="fas fa-bell-slash"></i></span>'; ?>
I have a problem deleting several threads. When I delete a thread a pink field emerges, but after a refresh, the thread is still there.
Kind regards,
Marten