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-core/bp-core-templatetags.php

    r375 r391  
    172172   
    173173    if ( $bp['bp_options_title'] == '' )
    174         $bp['bp_options_title'] = __('Options');
     174        $bp['bp_options_title'] = __('Options', 'buddypress');
    175175   
    176176    echo $bp['bp_options_title'];
     
    210210   
    211211    if ( !$just_date ) {
    212         $date .= __('at') . date( ' g:iA', $time );
     212        $date .= __('at', 'buddypress') . date( ' g:iA', $time );
    213213    }
    214214   
     
    219219    global $bp;
    220220   
    221     $my = __('my');
     221    $my = __('my', 'buddypress');
    222222   
    223223    if ( $capitalize )
     
    240240    global $bp;
    241241   
    242     $you = __('you haven\'t');
     242    $you = __('you haven\'t', 'buddypress');
    243243   
    244244    if ( $capitalize )
     
    261261    global $bp;
    262262   
    263     $your = __('your');
     263    $your = __('your', 'buddypress');
    264264   
    265265    if ( $capitalize )
     
    282282    global $bp;
    283283   
    284     $your = __('your');
    285     $their = __('their');
     284    $your = __('your', 'buddypress');
     285    $their = __('their', 'buddypress');
    286286   
    287287    if ( $capitalize )
Note: See TracChangeset for help on using the changeset viewer.