Changeset 13899 for trunk/src/bp-core/bp-core-admin.php
- Timestamp:
- 06/02/2024 06:02:34 PM (4 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/bp-core-admin.php
r12588 r13899 15 15 * 16 16 * @since 1.6.0 17 *18 17 */ 19 18 function bp_admin() { 20 19 buddypress()->admin = new BP_Admin(); 21 return;22 23 24 // These are strings we may use to describe maintenance/security releases, where we aim for no new strings.25 _n_noop( 'Maintenance Release', 'Maintenance Releases', 'buddypress' );26 _n_noop( 'Security Release', 'Security Releases', 'buddypress' );27 _n_noop( 'Maintenance and Security Release', 'Maintenance and Security Releases', 'buddypress' );28 29 /* translators: 1: BuddyPress version number. */30 _n_noop(31 '<strong>Version %1$s</strong> addressed a security issue.',32 '<strong>Version %1$s</strong> addressed some security issues.',33 'buddypress'34 );35 36 /* translators: 1: BuddyPress version number, 2: plural number of bugs. */37 _n_noop(38 '<strong>Version %1$s</strong> addressed %2$s bug.',39 '<strong>Version %1$s</strong> addressed %2$s bugs.',40 'buddypress'41 );42 43 /* translators: 1: BuddyPress version number, 2: plural number of bugs. Singular security issue. */44 _n_noop(45 '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bug.',46 '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bugs.',47 'buddypress'48 );49 50 /* translators: 1: BuddyPress version number, 2: plural number of bugs. More than one security issue. */51 _n_noop(52 '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.',53 '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.',54 'buddypress'55 );56 57 /* translators: %s: the link to the BuddyPress release notes */58 __( 'For more information, see <a href="%s">the release notes</a>.', 'buddypress' );59 20 }
Note: See TracChangeset
for help on using the changeset viewer.