Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
02/05/2016 04:26:30 AM (9 years ago)
Author:
boonebgorges
Message:

Move bp-core classes to their own files.

See #6870.

File:
1 copied

Legend:

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

    r10515 r10518  
    994994}
    995995endif; // End class_exists check.
    996 
    997 /**
    998  * Setup BuddyPress Admin.
    999  *
    1000  * @since 1.6.0
    1001  *
    1002  * @uses BP_Admin
    1003  */
    1004 function bp_admin() {
    1005     buddypress()->admin = new BP_Admin();
    1006     return;
    1007 
    1008 
    1009     // These are strings we may use to describe maintenance/security releases, where we aim for no new strings.
    1010     _n_noop( 'Maintenance Release', 'Maintenance Releases', 'buddypress' );
    1011     _n_noop( 'Security Release', 'Security Releases', 'buddypress' );
    1012     _n_noop( 'Maintenance and Security Release', 'Maintenance and Security Releases', 'buddypress' );
    1013 
    1014     /* translators: 1: WordPress version number. */
    1015     _n_noop( '<strong>Version %1$s</strong> addressed a security issue.',
    1016              '<strong>Version %1$s</strong> addressed some security issues.',
    1017              'buddypress' );
    1018 
    1019     /* translators: 1: WordPress version number, 2: plural number of bugs. */
    1020     _n_noop( '<strong>Version %1$s</strong> addressed %2$s bug.',
    1021              '<strong>Version %1$s</strong> addressed %2$s bugs.',
    1022              'buddypress' );
    1023 
    1024     /* translators: 1: WordPress version number, 2: plural number of bugs. Singular security issue. */
    1025     _n_noop( '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bug.',
    1026              '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bugs.',
    1027              'buddypress' );
    1028 
    1029     /* translators: 1: WordPress version number, 2: plural number of bugs. More than one security issue. */
    1030     _n_noop( '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.',
    1031              '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.',
    1032              'buddypress' );
    1033 
    1034     __( 'For more information, see <a href="%s">the release notes</a>.', 'buddypress' );
    1035 }
Note: See TracChangeset for help on using the changeset viewer.