Making WordPress.org

Changeset 3747


Ignore:
Timestamp:
07/29/2016 05:14:59 PM (9 years ago)
Author:
jmdodd
Message:

Support: Add translator comments to Term Subscription plugin.

Props @SergeyBiryukov.

See #1544.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-bbp-term-subscription/inc/class-plugin.php

    r3739 r3747  
    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
     
    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        }
Note: See TracChangeset for help on using the changeset viewer.