Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
03/28/2020 01:31:24 PM (5 years ago)
Author:
imath
Message:

BP Activity: add missing /* translators */ comments

See #8260

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-activity/classes/class-bp-activity-activity.php

    r12426 r12586  
    365365        // Backward compatibility with old method of passing arguments.
    366366        if ( !is_array( $args ) || count( $function_args ) > 1 ) {
    367             _deprecated_argument( __METHOD__, '1.6', sprintf( __( 'Arguments passed to %1$s should be in an associative array. See the inline documentation at %2$s for more details.', 'buddypress' ), __METHOD__, __FILE__ ) );
     367            _deprecated_argument(
     368                __METHOD__,
     369                '1.6',
     370                sprintf(
     371                    /* translators: 1: the name of the method. 2: the name of the file. */
     372                    __( 'Arguments passed to %1$s should be in an associative array. See the inline documentation at %2$s for more details.', 'buddypress' ),
     373                    __METHOD__,
     374                    __FILE__
     375                )
     376            );
    368377
    369378            $old_args_keys = array(
Note: See TracChangeset for help on using the changeset viewer.