Making WordPress.org


Ignore:
Timestamp:
09/01/2016 05:30:01 PM (8 years ago)
Author:
coffee2code
Message:

Profiles Activity Handler: Remove translation of strings.

All previously translatable strings were the activity action values (the strings that actually appear in the activity stream), which get stored in the database, so translation is not appropriate.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/profiles.wordpress.org/public_html/wp-content/plugins/wporg-profiles-activity-handler/wporg-profiles-activity-handler.php

    r3894 r3911  
    291291                if ( 'forum_topic_create' === $type ) {
    292292                    $action = sprintf(
    293                         __( 'Created a topic, <i><a href="%s">%s</a></i>, on the site %s', 'wporg' ),
     293                        'Created a topic, <i><a href="%s">%s</a></i>, on the site %s',
    294294                        esc_url( $_POST['url'] ),
    295295                        esc_html( $_POST['title'] ),
     
    300300                else {
    301301                    $action = sprintf(
    302                         __( 'Posted a <a href="%s">reply</a> to <i>%s</i>, on the site %s', 'wporg' ),
     302                        'Posted a <a href="%s">reply</a> to <i>%s</i>, on the site %s',
    303303                        esc_url( $_POST['url'] ),
    304304                        esc_html( $_POST['title'] ),
     
    350350                'user_id'           => $user->ID,
    351351                'action'            => sprintf(
    352                     __( 'Released a new plugin, <a href="%s">%s</a>', 'wporg' ),
     352                    'Released a new plugin, <a href="%s">%s</a>',
    353353                    esc_url( $_POST['url'] ),
    354354                    $_POST['title']
     
    382382                'user_id'           => $user->ID,
    383383                'action'            => sprintf(
    384                     __( 'Released a new theme, <a href="%s">%s</a>', 'wporg' ),
     384                    'Released a new theme, <a href="%s">%s</a>',
    385385                    esc_url( $_POST['url'] ),
    386386                    $_POST['title']
     
    420420                $args = array(
    421421                    'user_id'           => $user->ID,
    422                     'action'            => sprintf( __( 'Created a new ticket in %s Trac', 'wporg' ), $_POST['trac'] ),
     422                    'action'            => sprintf( 'Created a new ticket in %s Trac', $_POST['trac'] ),
    423423                    'content'           => $_POST['title'],
    424424                    'component'         => 'tracs',
     
    435435                $args = array(
    436436                    'user_id'           => $user->ID,
    437                     'action'            => sprintf( __( 'Posted a reply to %s in %s Trac', 'wporg' ), $_POST['title'], $_POST['trac'] ),
     437                    'action'            => sprintf( 'Posted a reply to %s in %s Trac', $_POST['title'], $_POST['trac'] ),
    438438                    'content'           => $_POST['comment'],
    439439                    'component'         => 'tracs',
     
    451451                $args = array(
    452452                    'user_id'           => $user->ID,
    453                     'action'            => sprintf( __( 'Committed [%s] to %s Trac', 'wporg' ), $_POST['changeset'], $_POST['trac'] ),
     453                    'action'            => sprintf( 'Committed [%s] to %s Trac', $_POST['changeset'], $_POST['trac'] ),
    454454                    'content'           => $_POST['message'],
    455455                    'component'         => 'tracs',
     
    473473                    $args = array(
    474474                        'user_id'           => $user->ID,
    475                         'action'            => sprintf( __( 'Received props in %s', 'wporg' ), $_POST['trac'] ),
     475                        'action'            => sprintf( 'Received props in %s', $_POST['trac'] ),
    476476                        'content'           => $_POST['message'],
    477477                        'component'         => 'tracs',
     
    505505                if ( isset( $_POST['wordcamp_date'] ) && ! empty( $_POST['wordcamp_date'] ) ) {
    506506                    $action = sprintf(
    507                         __( 'Confirmed as a speaker for <a href="%s">%s</a> coming up on %s', 'wporg' ),
     507                        'Confirmed as a speaker for <a href="%s">%s</a> coming up on %s',
    508508                        esc_url( $_POST['url'] ),
    509509                        $_POST['wordcamp_name'],
     
    512512                } else {
    513513                    $action = sprintf(
    514                         __( 'Confirmed as a speaker for <a href="%s">%s</a>', 'wporg' ),
     514                        'Confirmed as a speaker for <a href="%s">%s</a>',
    515515                        esc_url( $_POST['url'] ),
    516516                        $_POST['wordcamp_name']
     
    523523                if ( isset( $_POST['wordcamp_date'] ) && ! empty( $_POST['wordcamp_date'] ) ) {
    524524                    $action = sprintf(
    525                         __( 'Joined the organizing team for <a href="%s">%s</a> coming up %s', 'wporg' ),
     525                        'Joined the organizing team for <a href="%s">%s</a> coming up %s',
    526526                        esc_url( $_POST['url'] ),
    527527                        $_POST['wordcamp_name'],
     
    530530                } else {
    531531                    $action = sprintf(
    532                         __( 'Joined the organizing team for <a href="%s">%s</a>', 'wporg' ),
     532                        'Joined the organizing team for <a href="%s">%s</a>',
    533533                        esc_url( $_POST['url'] ),
    534534                        $_POST['wordcamp_name']
     
    542542
    543543                    $action = sprintf(
    544                         __( 'Registered to attend <a href="%s">%s</a>', 'wporg' ),
     544                        'Registered to attend <a href="%s">%s</a>',
    545545                        esc_url( $_POST['url'] ),
    546546                        $_POST['wordcamp_name']
     
    548548
    549549                    if ( isset( $_POST['wordcamp_date'] ) && ! empty( $_POST['wordcamp_date'] ) ) {
    550                         $action .= ' ' . sprintf( __( 'coming up %s', 'wporg' ), $_POST['wordcamp_date'] );
     550                        $action .= ' ' . sprintf( 'coming up %s', $_POST['wordcamp_date'] );
    551551                    }
    552552                } elseif ( 'attendee_checked_in' == $_POST['activity_type'] ) {
     
    555555
    556556                    $action = sprintf(
    557                         __( 'Is the %s person to arrive at <a href="%s">%s</a>', 'wporg' ),
     557                        'Is the %s person to arrive at <a href="%s">%s</a>',
    558558                        $this->append_ordinal_suffix( $order ),
    559559                        esc_url( $_POST['url'] ),
     
    624624                $item_id = $_POST['comment_id'];
    625625                $action  = sprintf(
    626                     __( 'Wrote a <a href="%s">comment</a> on the post %s, on the site %s', 'wporg' ),
     626                    'Wrote a <a href="%s">comment</a> on the post %s, on the site %s',
    627627                    esc_url( $_POST['url'] ),
    628628                    $_POST['title'],
     
    633633                $item_id = $_POST['post_id'];
    634634                $action  = sprintf(
    635                     __( 'Wrote a new post, <a href="%s">%s</a>, on the site %s', 'wporg' ),
     635                    'Wrote a new post, <a href="%s">%s</a>, on the site %s',
    636636                    esc_url( $_POST['url'] ),
    637637                    $_POST['title'],
Note: See TracChangeset for help on using the changeset viewer.