41 | | bb_admin_notice( sprintf( _n( '<strong>Post undeleted.</strong>', '<strong>%s posts undeleted.</strong>', $message_count ), bb_number_format_i18n( $message_count ) ) ); |
| 41 | if ( 1 == $message_count ) { |
| 42 | $message = __( '<strong>Post undeleted.</strong>' ); |
| 43 | } else { |
| 44 | $message = sprintf( _n( '<strong>%s post undeleted.</strong>', '<strong>%s posts undeleted.</strong>', $message_count ), bb_number_format_i18n( $message_count ) ); |
| 45 | } |
| 46 | bb_admin_notice( $message ); |
44 | | bb_admin_notice( sprintf( _n( '<strong>Post deleted.</strong>', '<strong>%s posts deleted.</strong>', $message_count ), bb_number_format_i18n( $message_count ) ) ); |
| 49 | if ( 1 == $message_count ) { |
| 50 | $message = __( '<strong>Post deleted.</strong>' ); |
| 51 | } else { |
| 52 | $message = sprintf( _n( '<strong>%s post deleted.</strong>', '<strong>%s posts deleted.</strong>', $message_count ), bb_number_format_i18n( $message_count ) ); |
| 53 | } |
| 54 | bb_admin_notice( $message ); |
47 | | bb_admin_notice( sprintf( _n( '<strong>Post spammed.</strong>', '<strong>%s posts spammed.</strong>', $message_count ), bb_number_format_i18n( $message_count ) ) ); |
| 57 | if ( 1 == $message_count ) { |
| 58 | $message = __( '<strong>Post spammed.</strong>' ); |
| 59 | } else { |
| 60 | $message = sprintf( _n( '<strong>%s post spammed.</strong>', '<strong>%s posts spammed.</strong>', $message_count ), bb_number_format_i18n( $message_count ) ); |
| 61 | } |
| 62 | bb_admin_notice( $message ); |
50 | | bb_admin_notice( sprintf( _n( '<strong>Post removed from spam.</strong> It is now a normal post.', '<strong>%s posts removed from spam.</strong> They are now normal posts.', $message_count ), bb_number_format_i18n( $message_count ) ) ); |
| 65 | if ( 1 == $message_count ) { |
| 66 | $message = __( '<strong>Post removed from spam.</strong> It is now a normal post.' ); |
| 67 | } else { |
| 68 | $message = sprintf( _n( '<strong>%s post removed from spam.</strong> It is now a normal post.', '<strong>%s posts removed from spam.</strong> They are now normal posts.', $message_count ), bb_number_format_i18n( $message_count ) ); |
| 69 | } |
| 70 | bb_admin_notice( $message ); |
53 | | bb_admin_notice( sprintf( _n( '<strong>Post removed from spam.</strong> It is now a deleted post.', '<strong>%s posts removed from spam.</strong> They are nowdeleted posts.', $message_count ), bb_number_format_i18n( $message_count ) ) ); |
| 73 | if ( 1 == $message_count ) { |
| 74 | $message = __( '<strong>Post removed from spam.</strong> It is now a deleted post.' ); |
| 75 | } else { |
| 76 | $message = sprintf( _n( '<strong>%s post removed from spam.</strong> It is now a deleted post.', '<strong>%s posts removed from spam.</strong> They are now deleted posts.', $message_count ), bb_number_format_i18n( $message_count ) ); |
| 77 | } |
| 78 | bb_admin_notice( $message ); |