Skip to:
Content

BuddyPress.org

Changeset 12696


Ignore:
Timestamp:
07/30/2020 09:35:38 PM (6 years ago)
Author:
imath
Message:

i18n: add missing /* translators */ inline comments.

See #8339

File:
1 edited

Legend:

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

    r12676 r12696  
    665665
    666666        <div class="wrap">
    667                 <h1><?php printf( esc_html__( 'Delete %s', 'buddypress' ), $field_type ); ?></h1>
    668                 <p><?php printf( esc_html__( 'You are about to delete the following %s:', 'buddypress' ), $field_type ); ?></p>
     667                <h1>
     668                        <?php
     669                        printf(
     670                                /* translators: %s is the field type name. */
     671                                esc_html__( 'Delete %s', 'buddypress' ),
     672                                $field_type
     673                        );
     674                        ?>
     675                </h1>
     676                <p>
     677                        <?php
     678                        printf(
     679                                /* translators: %s is the field type name. */
     680                                esc_html__( 'You are about to delete the following %s:', 'buddypress' ),
     681                                $field_type
     682                        );
     683                        ?>
     684                </p>
    669685
    670686                <ul class="bp-xprofile-delete-group-list">
Note: See TracChangeset for help on using the changeset viewer.