Changeset 391 for trunk/bp-core/bp-core-templatetags.php
- Timestamp:
- 10/12/2008 08:19:04 PM (18 years ago)
- File:
-
- 1 edited
-
trunk/bp-core/bp-core-templatetags.php (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-core/bp-core-templatetags.php
r375 r391 172 172 173 173 if ( $bp['bp_options_title'] == '' ) 174 $bp['bp_options_title'] = __('Options' );174 $bp['bp_options_title'] = __('Options', 'buddypress'); 175 175 176 176 echo $bp['bp_options_title']; … … 210 210 211 211 if ( !$just_date ) { 212 $date .= __('at' ) . date( ' g:iA', $time );212 $date .= __('at', 'buddypress') . date( ' g:iA', $time ); 213 213 } 214 214 … … 219 219 global $bp; 220 220 221 $my = __('my' );221 $my = __('my', 'buddypress'); 222 222 223 223 if ( $capitalize ) … … 240 240 global $bp; 241 241 242 $you = __('you haven\'t' );242 $you = __('you haven\'t', 'buddypress'); 243 243 244 244 if ( $capitalize ) … … 261 261 global $bp; 262 262 263 $your = __('your' );263 $your = __('your', 'buddypress'); 264 264 265 265 if ( $capitalize ) … … 282 282 global $bp; 283 283 284 $your = __('your' );285 $their = __('their' );284 $your = __('your', 'buddypress'); 285 $their = __('their', 'buddypress'); 286 286 287 287 if ( $capitalize )
Note: See TracChangeset
for help on using the changeset viewer.