Making WordPress.org


Ignore:
Timestamp:
03/06/2017 12:36:40 AM (8 years ago)
Author:
SergeyBiryukov
Message:

Support Theme: Change text domain and add translator comments for strings in user-details.php template.

See #2007.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/bbpress/user-details.php

    r5084 r5085  
    2525            <li class="<?php if ( bbp_is_single_user_profile() ) :?>current<?php endif; ?>">
    2626                <span class="vcard bbp-user-profile-link">
    27                     <a class="url fn n" href="<?php bbp_user_profile_url(); ?>" title="<?php printf( esc_attr__( "%s's Profile", 'bbpress' ), bbp_get_displayed_user_field( 'display_name' ) ); ?>" rel="me"><?php esc_html_e( 'Profile', 'bbpress' ); ?></a>
     27                    <a class="url fn n" href="<?php bbp_user_profile_url(); ?>" title="<?php
     28                        /* translators: %s: user's display name */
     29                        printf( esc_attr__( "%s's Profile", 'wporg-forums' ), bbp_get_displayed_user_field( 'display_name' ) );
     30                    ?>" rel="me"><?php esc_html_e( 'Profile', 'wporg-forums' ); ?></a>
    2831                </span>
    2932            </li>
     
    3134            <li class="<?php if ( bbp_is_single_user_topics() ) :?>current<?php endif; ?>">
    3235                <span class='bbp-user-topics-created-link'>
    33                     <a href="<?php bbp_user_topics_created_url(); ?>" title="<?php printf( esc_attr__( "%s's Topics Started", 'bbpress' ), bbp_get_displayed_user_field( 'display_name' ) ); ?>"><?php esc_html_e( 'Topics Started', 'bbpress' ); ?></a>
     36                    <a href="<?php bbp_user_topics_created_url(); ?>" title="<?php
     37                        /* translators: %s: user's display name */
     38                        printf( esc_attr__( "%s's Topics Started", 'wporg-forums' ), bbp_get_displayed_user_field( 'display_name' ) );
     39                    ?>"><?php esc_html_e( 'Topics Started', 'wporg-forums' ); ?></a>
    3440                </span>
    3541            </li>
     
    3743            <li class="<?php if ( bbp_is_single_user_replies() ) :?>current<?php endif; ?>">
    3844                <span class='bbp-user-replies-created-link'>
    39                     <a href="<?php bbp_user_replies_created_url(); ?>" title="<?php printf( esc_attr__( "%s's Replies Created", 'bbpress' ), bbp_get_displayed_user_field( 'display_name' ) ); ?>"><?php esc_html_e( 'Replies Created', 'bbpress' ); ?></a>
     45                    <a href="<?php bbp_user_replies_created_url(); ?>" title="<?php
     46                        /* translators: %s: user's display name */
     47                        printf( esc_attr__( "%s's Replies Created", 'wporg-forums' ), bbp_get_displayed_user_field( 'display_name' ) );
     48                    ?>"><?php esc_html_e( 'Replies Created', 'wporg-forums' ); ?></a>
    4049                </span>
    4150            </li>
     
    4453                <li class="<?php if ( bbp_is_single_user_engagements() ) :?>current<?php endif; ?>">
    4554                    <span class='bbp-user-engagements-created-link'>
    46                         <a href="<?php bbp_user_engagements_url(); ?>" title="<?php printf( esc_attr__( "%s's Engagements", 'bbpress' ), bbp_get_displayed_user_field( 'display_name' ) ); ?>"><?php esc_html_e( 'Engagements', 'bbpress' ); ?></a>
     55                        <a href="<?php bbp_user_engagements_url(); ?>" title="<?php
     56                            /* translators: %s: user's display name */
     57                            printf( esc_attr__( "%s's Engagements", 'wporg-forums' ), bbp_get_displayed_user_field( 'display_name' ) );
     58                        ?>"><?php esc_html_e( 'Engagements', 'wporg-forums' ); ?></a>
    4759                    </span>
    4860                </li>
     
    5264                <li class="<?php if ( bbp_is_favorites() ) :?>current<?php endif; ?>">
    5365                    <span class="bbp-user-favorites-link">
    54                         <a href="<?php bbp_favorites_permalink(); ?>" title="<?php printf( esc_attr__( "%s's Favorites", 'bbpress' ), bbp_get_displayed_user_field( 'display_name' ) ); ?>"><?php esc_html_e( 'Favorites', 'bbpress' ); ?></a>
     66                        <a href="<?php bbp_favorites_permalink(); ?>" title="<?php
     67                            /* translators: %s: user's display name */
     68                            printf( esc_attr__( "%s's Favorites", 'wporg-forums' ), bbp_get_displayed_user_field( 'display_name' ) );
     69                        ?>"><?php esc_html_e( 'Favorites', 'wporg-forums' ); ?></a>
    5570                    </span>
    5671                </li>
     
    6277                    <li class="<?php if ( bbp_is_subscriptions() ) :?>current<?php endif; ?>">
    6378                        <span class="bbp-user-subscriptions-link">
    64                             <a href="<?php bbp_subscriptions_permalink(); ?>" title="<?php printf( esc_attr__( "%s's Subscriptions", 'bbpress' ), bbp_get_displayed_user_field( 'display_name' ) ); ?>"><?php esc_html_e( 'Subscriptions', 'bbpress' ); ?></a>
     79                            <a href="<?php bbp_subscriptions_permalink(); ?>" title="<?php
     80                                /* translators: %s: user's display name */
     81                                printf( esc_attr__( "%s's Subscriptions", 'wporg-forums' ), bbp_get_displayed_user_field( 'display_name' ) );
     82                            ?>"><?php esc_html_e( 'Subscriptions', 'wporg-forums' ); ?></a>
    6583                        </span>
    6684                    </li>
     
    6987                <li class="<?php if ( bbp_is_single_user_edit() ) :?>current<?php endif; ?>">
    7088                    <span class="bbp-user-edit-link">
    71                         <a href="<?php bbp_user_profile_edit_url(); ?>" title="<?php printf( esc_attr__( "Edit %s's Profile", 'bbpress' ), bbp_get_displayed_user_field( 'display_name' ) ); ?>"><?php esc_html_e( 'Edit', 'bbpress' ); ?></a>
     89                        <a href="<?php bbp_user_profile_edit_url(); ?>" title="<?php
     90                            /* translators: %s: user's display name */
     91                            printf( esc_attr__( "Edit %s's Profile", 'wporg-forums' ), bbp_get_displayed_user_field( 'display_name' ) );
     92                        ?>"><?php esc_html_e( 'Edit', 'wporg-forums' ); ?></a>
    7293                    </span>
    7394                </li>
Note: See TracChangeset for help on using the changeset viewer.