Ticket #1544: meta-1544.translator-comments.2.patch
File meta-1544.translator-comments.2.patch, 2.8 KB (added by , 9 years ago) |
---|
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-bbp-term-subscription/inc/class-plugin.php
84 84 85 85 // Check for empty term id. 86 86 if ( ! $term ) { 87 /* translators: Term: topic tag */ 87 88 bbp_add_error( 'wporg_bbp_subscribe_term_id', __( '<strong>ERROR</strong>: No term was found! Which term are you subscribing/unsubscribing to?', 'wporg-forums' ) ); 88 89 89 90 // Check for current user. … … 117 118 $redirect = get_term_link( $term_id ); 118 119 bbp_redirect( $redirect ); 119 120 } elseif ( true === $is_subscribed && 'wporg_bbp_subscribe_term' === $action ) { 121 /* translators: Term: topic tag */ 120 122 bbp_add_error( 'wporg_bbp_subscribe_user', __( '<strong>ERROR</strong>: There was a problem subscribing to that term!', 'wporg-forums' ) ); 121 123 } elseif ( false === $is_subscribed && 'wporg_bbp_unsubscribe_term' === $action ) { 124 /* translators: Term: topic tag */ 122 125 bbp_add_error( 'wporg_bbp_unsubscribe_user', __( '<strong>ERROR</strong>: There was a problem unsubscribing from that term!', 'wporg-forums' ) ); 123 126 } 124 127 } -
sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-bbp-topic-resolution/inc/class-plugin.php
100 100 $resolution = $this->get_default_topic_resolution(); 101 101 } 102 102 ?> 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 /> 104 104 105 105 <select name="<?php echo esc_attr( self::META_KEY ); ?>" id="topic-resolved"> 106 106 -
sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-bbp-version-dropdown/inc/class-plugin.php
156 156 $versions = array_merge( 157 157 array( '0' => '' ), 158 158 apply_filters( 'wporg_bbp_get_wp_versions', array() ), 159 /* translators: WordPress Version */ 159 160 array( 'other' => __( 'Other:', 'wporg-forums' ) ) 160 161 ); 161 162 return $versions;