Making WordPress.org

Changeset 12801


Ignore:
Timestamp:
08/03/2023 02:02:34 AM (2 years ago)
Author:
dd32
Message:

Support Forums: Fix translations of a few strings, such as the "date at time" attributes for freshness links.

H/t Presskopp for noticing and raising.

Location:
sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-hooks.php

    r12749 r12801  
    631631            if ( bbp_is_topic_closed( $topic_id ) ) {
    632632                /* translators: %s: Excerpt of the topic's first post. */
    633                 $description = __( '[This thread is closed.] %s', 'wporg-support' );
     633                $description = __( '[This thread is closed.] %s', 'wporg-forums' );
    634634            } else {
    635635                $description = '%s '; // trailing space is intentional
     
    12971297            'title="' . esc_attr(
    12981298                // bbPress string from bbp_get_reply_post_date()
    1299                 sprintf( _x( '%1$s at %2$s', 'date at time', 'wporg-support' ), $date, $time )
     1299                sprintf( _x( '%1$s at %2$s', 'date at time', 'wporg-forums' ), $date, $time )
    13001300            ) . '"',
    13011301            $anchor
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-report-topic.php

    r12393 r12801  
    196196                esc_url( $this->remove_topic_modlook_url() ),
    197197                // translators: `modlook` is the term used for posts tagged by users when they want a moderator to have a look.
    198                 __( 'Remove modlook', 'wporg-support' )
     198                __( 'Remove modlook', 'wporg-forums' )
    199199            );
    200200        }
     
    238238            printf(
    239239                '<li class="topic-previous-reports">%s<ul class="previous-reports">%s</ul></li>',
    240                 __( 'Previously reported by:', 'wporg-support' ),
     240                __( 'Previously reported by:', 'wporg-forums' ),
    241241                implode( ' ', $lines )
    242242            );
Note: See TracChangeset for help on using the changeset viewer.