Changeset 1917 for sites/trunk/wordpress.org/public_html/wp-content/plugins/trac-notifications/trac-notifications.php
- Timestamp:
- 09/27/2015 10:37:06 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/trac-notifications/trac-notifications.php
r1740 r1917 289 289 if ( $intersected_focuses ) { 290 290 if ( count( $intersected_focuses ) === 1 ) { 291 $reasons['focus'] = sprintf( 'you subscribeto the %s focus', $intersected_focuses[0] );291 $reasons['focus'] = sprintf( 'you have subscribed to the %s focus', $intersected_focuses[0] ); 292 292 } else { 293 $reasons['focus'] = 'you subscribeto the ' . wp_sprintf( '%l focuses', $intersected_focuses );293 $reasons['focus'] = 'you have subscribed to the ' . wp_sprintf( '%l focuses', $intersected_focuses ); 294 294 } 295 295 } 296 296 297 297 if ( ! empty( $notifications['component'][ $ticket->component ] ) ) { 298 $reasons['component'] = sprintf( 'you subscribeto the %s component', $ticket->component );298 $reasons['component'] = sprintf( 'you have subscribed to the %s component', $ticket->component ); 299 299 } 300 300 if ( ! empty( $notifiations['milestone'][ $ticket->milestone ] ) ) { 301 $reasons['milestone'] = sprintf( 'you subscribeto the %s milestone', $ticket->milestone );301 $reasons['milestone'] = sprintf( 'you have subscribed to the %s milestone', $ticket->milestone ); 302 302 } 303 303
Note: See TracChangeset
for help on using the changeset viewer.