Skip to:
Content

BuddyPress.org

Changeset 10267


Ignore:
Timestamp:
10/13/2015 06:35:16 PM (11 years ago)
Author:
boonebgorges
Message:

More removal of markup from localizable strings.

Props ramiy.
See #6660.

Location:
trunk/src
Files:
2 edited

Legend:

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

    r10229 r10267  
    571571
    572572                case 'bp-profile-overview' :
    573                         $retval = __( 'Your users will distinguish themselves through their profile page. Create relevant profile fields that will show on each users profile.<br /><br />Note: Any fields in the first group will appear on the signup page.', 'buddypress' );
     573                        $retval = __( 'Your users will distinguish themselves through their profile page. Create relevant profile fields that will show on each users profile.', 'buddypress' ) . '<br /><br />' . __( 'Note: Any fields in the first group will appear on the signup page.', 'buddypress' );
    574574                        break;
    575575
  • trunk/src/bp-forums/deprecated/1.6.php

    r10229 r10267  
    166166                                switch ( $result ) {
    167167                                        case 1:
    168                                                 _e( '<p>All done! Configuration settings have been saved to the file <code>bb-config.php</code> in the root of your WordPress install.</p>', 'buddypress' );
     168                                                echo '<p>';
     169                                                _e( 'All done! Configuration settings have been saved to the file <code>bb-config.php</code> in the root of your WordPress install.', 'buddypress' );
     170                                                echo '</p>';
    169171                                                break;
    170172                                        default:
    171173                                                // Just write the contents to screen.
    172                                                 _e( '<p>A configuration file could not be created. No problem, but you will need to save the text shown below into a file named <code>bb-config.php</code> in the root directory of your WordPress installation before you can start using the forum functionality.</p>', 'buddypress' ); ?>
    173 
     174                                                echo '<p>';
     175                                                _e( 'A configuration file could not be created. No problem, but you will need to save the text shown below into a file named <code>bb-config.php</code> in the root directory of your WordPress installation before you can start using the forum functionality.', 'buddypress' );
     176                                                echo '</p>';
     177                                                ?>
    174178                                                <textarea style="display:block; margin-top: 30px; width: 80%;" rows="50"><?php echo esc_textarea( $result ); ?></textarea>
    175 
    176                                         <?php
     179                                                <?php
    177180                                                break;
    178181                                }
Note: See TracChangeset for help on using the changeset viewer.