Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
11/19/2020 12:33:58 PM (3 years ago)
Author:
imath
Message:

i18n: improve translator comments for the "Active %s" string

Make sure the same translator comment is used for every occurrences of this string.

Fixes #8398

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/testcases/blogs/template.php

    r12779 r12791  
    1717        $blogs_template->blog->last_activity = $time;
    1818
    19         $this->assertEquals( bp_core_get_last_activity( $time, __( 'active %s', 'buddypress' ) ), bp_get_blog_last_active() );
     19        $this->assertEquals( bp_core_get_last_activity( $time, __( 'Active %s', 'buddypress' ) ), bp_get_blog_last_active() );
    2020
    2121        $blogs_template->blog = null;
     
    3434        $blogs_template->blog->last_activity = $time;
    3535
    36         $this->assertEquals( bp_core_get_last_activity( $time, __( 'active %s', 'buddypress' ) ), bp_get_blog_last_active( array( 'active_format' => true, ) ) );
     36        $this->assertEquals( bp_core_get_last_activity( $time, __( 'Active %s', 'buddypress' ) ), bp_get_blog_last_active( array( 'active_format' => true, ) ) );
    3737
    3838        $blogs_template->blog = null;
Note: See TracChangeset for help on using the changeset viewer.