Ticket #537: time-since-separator.patch
| File time-since-separator.patch, 563 bytes (added by , 17 years ago) |
|---|
-
bp-core.php
969 969 970 970 if ( ( $count2 = floor( ( $since - ( $seconds * $count ) ) / $seconds2 ) ) != 0 ) { 971 971 /* Add to output var */ 972 $output .= ( 1 == $count2 ) ? ', 1 '. $chunks[$i + 1][1] : ", ". $count2 . ' ' . $chunks[$i + 1][2];972 $output .= ( 1 == $count2 ) ? ', 1 '. $chunks[$i + 1][1] : _c(",|Separator in time since", "buddypress") . ' ' . $count2 . ' ' . $chunks[$i + 1][2]; 973 973 } 974 974 } 975 975