Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
10/12/2008 08:19:04 PM (17 years ago)
Author:
apeatling
Message:

Added the 'buddypress' textdomain

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-messages/bp-messages-ajax.php

    r304 r391  
    4141   
    4242    if ( !isset($_POST['thread_ids']) ) {
    43         echo "-1|" . __('There was a problem marking messages as unread.');
     43        echo "-1|" . __('There was a problem marking messages as unread.', 'buddypress');
    4444    } else {
    4545        $thread_ids = explode( ',', $_POST['thread_ids'] );
     
    6161   
    6262    if ( !isset($_POST['thread_ids']) ) {
    63         echo "-1|" . __('There was a problem marking messages as read.');
     63        echo "-1|" . __('There was a problem marking messages as read.', 'buddypress');
    6464    } else {
    6565        $thread_ids = explode( ',', $_POST['thread_ids'] );
     
    8181   
    8282    if ( !isset($_POST['thread_ids']) ) {
    83         echo "-1|" . __('There was a problem deleting messages.');
     83        echo "-1|" . __('There was a problem deleting messages.', 'buddypress');
    8484    } else {
    8585        $thread_ids = explode( ',', $_POST['thread_ids'] );
     
    8989        }
    9090       
    91         echo __('Messages deleted.');
     91        echo __('Messages deleted.', 'buddypress');
    9292    }
    9393}
     
    9898
    9999    if ( !isset($_POST['notice_id']) ) {
    100         echo "-1|" . __('There was a problem closing the notice.');
     100        echo "-1|" . __('There was a problem closing the notice.', 'buddypress');
    101101    } else {
    102102        $notice_ids = get_usermeta( $userdata->ID, 'closed_notices' );
Note: See TracChangeset for help on using the changeset viewer.