Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
03/28/2020 01:35:36 PM (4 years ago)
Author:
imath
Message:

BP Core: add missing /* translators */ comments

See #8260

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-core/bp-core-functions.php

    r12569 r12588  
    11861186     * @param string $value String representing the time since the older date.
    11871187     */
    1188     $ago_text       = apply_filters( 'bp_core_time_since_ago_text',       __( '%s ago',    'buddypress' ) );
     1188    $ago_text = apply_filters(
     1189        'bp_core_time_since_ago_text',
     1190        /* translators: %s: the human time diff. */
     1191        __( '%s ago', 'buddypress' )
     1192    );
    11891193
    11901194    // Array of time period chunks.
     
    12471251            switch ( $seconds ) {
    12481252                case YEAR_IN_SECONDS :
     1253                    /* translators: %s: the number of years. */
    12491254                    $output = sprintf( _n( '%s year',   '%s years',   $count, 'buddypress' ), $count );
    12501255                    break;
    12511256                case 30 * DAY_IN_SECONDS :
     1257                    /* translators: %s: the number of months. */
    12521258                    $output = sprintf( _n( '%s month',  '%s months',  $count, 'buddypress' ), $count );
    12531259                    break;
    12541260                case WEEK_IN_SECONDS :
     1261                    /* translators: %s: the number of weeks. */
    12551262                    $output = sprintf( _n( '%s week',   '%s weeks',   $count, 'buddypress' ), $count );
    12561263                    break;
    12571264                case DAY_IN_SECONDS :
     1265                    /* translators: %s: the number of days. */
    12581266                    $output = sprintf( _n( '%s day',    '%s days',    $count, 'buddypress' ), $count );
    12591267                    break;
    12601268                case HOUR_IN_SECONDS :
     1269                    /* translators: %s: the number of hours. */
    12611270                    $output = sprintf( _n( '%s hour',   '%s hours',   $count, 'buddypress' ), $count );
    12621271                    break;
    12631272                case MINUTE_IN_SECONDS :
     1273                    /* translators: %s: the number of minutes. */
    12641274                    $output = sprintf( _n( '%s minute', '%s minutes', $count, 'buddypress' ), $count );
    12651275                    break;
    12661276                default:
     1277                    /* translators: %s: the number of seconds. */
    12671278                    $output = sprintf( _n( '%s second', '%s seconds', $count, 'buddypress' ), $count );
    12681279            }
     
    12841295                    switch ( $seconds2 ) {
    12851296                        case 30 * DAY_IN_SECONDS :
     1297                            /* translators: %s: the number of months. */
    12861298                            $output .= sprintf( _n( '%s month',  '%s months',  $count2, 'buddypress' ), $count2 );
    12871299                            break;
    12881300                        case WEEK_IN_SECONDS :
     1301                            /* translators: %s: the number of weeks. */
    12891302                            $output .= sprintf( _n( '%s week',   '%s weeks',   $count2, 'buddypress' ), $count2 );
    12901303                            break;
    12911304                        case DAY_IN_SECONDS :
     1305                            /* translators: %s: the number of days. */
    12921306                            $output .= sprintf( _n( '%s day',    '%s days',    $count2, 'buddypress' ), $count2 );
    12931307                            break;
    12941308                        case HOUR_IN_SECONDS :
     1309                            /* translators: %s: the number of hours. */
    12951310                            $output .= sprintf( _n( '%s hour',   '%s hours',   $count2, 'buddypress' ), $count2 );
    12961311                            break;
    12971312                        case MINUTE_IN_SECONDS :
     1313                            /* translators: %s: the number of minutes. */
    12981314                            $output .= sprintf( _n( '%s minute', '%s minutes', $count2, 'buddypress' ), $count2 );
    12991315                            break;
    13001316                        default:
     1317                            /* translators: %s: the number of seconds. */
    13011318                            $output .= sprintf( _n( '%s second', '%s seconds', $count2, 'buddypress' ), $count2 );
    13021319                    }
     
    32503267 */
    32513268function bp_email_get_appearance_settings() {
    3252     /* translators: This is the copyright text for email footers. 1. Copyright year, 2. Site name */
    32533269    $footer_text = array(
    32543270        sprintf(
    3255             _x( '© %1$s %2$s', 'email', 'buddypress' ),
     3271            /* translators: 1. Copyright year, 2. Site name */
     3272            _x( '© %1$s %2$s', 'copyright text for email footers', 'buddypress' ),
    32563273            date_i18n( 'Y' ),
    32573274            bp_get_option( 'blogname' )
Note: See TracChangeset for help on using the changeset viewer.