Making WordPress.org

Ticket #1544: meta-1544.translator-comments.2.patch

File meta-1544.translator-comments.2.patch, 2.8 KB (added by SergeyBiryukov, 9 years ago)
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-bbp-term-subscription/inc/class-plugin.php

     
    8484
    8585                // Check for empty term id.
    8686                if ( ! $term ) {
     87                        /* translators: Term: topic tag */
    8788                        bbp_add_error( 'wporg_bbp_subscribe_term_id', __( '<strong>ERROR</strong>: No term was found! Which term are you subscribing/unsubscribing to?', 'wporg-forums' ) );
    8889
    8990                // Check for current user.
     
    117118                        $redirect = get_term_link( $term_id );
    118119                        bbp_redirect( $redirect );
    119120                } elseif ( true === $is_subscribed && 'wporg_bbp_subscribe_term' === $action ) {
     121                        /* translators: Term: topic tag */
    120122                        bbp_add_error( 'wporg_bbp_subscribe_user', __( '<strong>ERROR</strong>: There was a problem subscribing to that term!', 'wporg-forums' ) );
    121123                } elseif ( false === $is_subscribed && 'wporg_bbp_unsubscribe_term' === $action ) {
     124                        /* translators: Term: topic tag */
    122125                        bbp_add_error( 'wporg_bbp_unsubscribe_user', __( '<strong>ERROR</strong>: There was a problem unsubscribing from that term!', 'wporg-forums' ) );
    123126                }
    124127        }
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-bbp-topic-resolution/inc/class-plugin.php

     
    100100                        $resolution = $this->get_default_topic_resolution();
    101101                }
    102102                ?>
    103                 <p><label for="topic-resolved"><?php esc_html_e( 'This topic is', 'wporg-forums' ); ?></label><br />
     103                <p><label for="topic-resolved"><?php esc_html_e( 'This topic is:', 'wporg-forums' ); ?></label><br />
    104104
    105105                <select name="<?php echo esc_attr( self::META_KEY ); ?>" id="topic-resolved">
    106106
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-bbp-version-dropdown/inc/class-plugin.php

     
    156156                $versions = array_merge(
    157157                        array( '0' => '' ),
    158158                        apply_filters( 'wporg_bbp_get_wp_versions', array() ),
     159                        /* translators: WordPress Version */
    159160                        array( 'other' => __( 'Other:', 'wporg-forums' ) )
    160161                );
    161162                return $versions;