Skip to:
Content

BuddyPress.org


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

Added the 'buddypress' textdomain

File:
1 edited

Legend:

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

    r359 r391  
    216216        <select name="message-type-select" id="message-type-select">
    217217            <option value=""></option>
    218             <option value="read"><?php _e('Read') ?></option>
    219             <option value="unread"><?php _e('Unread') ?></option>
    220             <option value="all"><?php _e('All') ?></option>
     218            <option value="read"><?php _e('Read', 'buddypress') ?></option>
     219            <option value="unread"><?php _e('Unread', 'buddypress') ?></option>
     220            <option value="all"><?php _e('All', 'buddypress') ?></option>
    221221        </select> &nbsp;
    222         <a href="#" id="mark_as_read"><?php _e('Mark as Read') ?></a> &nbsp;
    223         <a href="#" id="mark_as_unread"><?php _e('Mark as Unread') ?></a> &nbsp;
    224         <a href="#" id="delete_messages"><?php _e('Delete') ?></a> &nbsp;
     222        <a href="#" id="mark_as_read"><?php _e('Mark as Read', 'buddypress') ?></a> &nbsp;
     223        <a href="#" id="mark_as_unread"><?php _e('Mark as Unread', 'buddypress') ?></a> &nbsp;
     224        <a href="#" id="delete_messages"><?php _e('Delete', 'buddypress') ?></a> &nbsp;
    225225<?php   
    226226}
     
    231231    if ( $messages_template->thread->is_active ) {
    232232        echo "<strong>";
    233         _e('Currently Active');
     233        _e('Currently Active', 'buddypress');
    234234        echo "</strong>";
    235235    }
     
    272272   
    273273    if ( $messages_template->thread->is_active == "1" ) {
    274         $text = __('Deactivate');
     274        $text = __('Deactivate', 'buddypress');
    275275    } else {
    276         $text = __('Activate');     
     276        $text = __('Activate', 'buddypress');       
    277277    }
    278278    echo $text;
Note: See TracChangeset for help on using the changeset viewer.