Making WordPress.org

Changeset 8079


Ignore:
Timestamp:
01/14/2019 04:02:04 AM (7 years ago)
Author:
dd32
Message:

Helphub: Fix some translation string typos.

Props tobifjellner for pointing them out.
See https://wordpress.slack.com/archives/C02QB8GMM/p1547373452220900

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/support-helphub/inc/helphub-post-types/classes/class-helphub-post-types-post-type.php

    r8078 r8079  
    283283            7  => sprintf( __( '%s saved.', 'wporg-forums' ), $this->singular ),
    284284            /* translators: %1$s: Post type name. %2$s: Lowercase post type name. %3$s: Post link tag. %4$s: Close post link tag. */
    285             8  => sprintf( __( '%1$s submitted. %2$sPreview %3$s%4$s', 'wporg-forums' ), $this->singular, strtolower( $this->singular ), '<a target="_blank" href="' . esc_url( add_query_arg( 'preview', 'true', $permalink ) ) . '">', '</a>' ),
    286             /* translators: %1$s: Post type name. %2$s: Lowercase post type name. */
    287             9  => sprintf( __( '%1$s scheduled for: %1$s. %2$sPreview %2$s%3$s', 'wporg-forums' ), $this->singular, strtolower( $this->singular ), '<strong>' . date_i18n( __( 'M j, Y @ G:i', 'wporg-forums' ), strtotime( $post->post_date ) ) . '</strong>', '<a target="_blank" href="' . esc_url( $permalink ) . '">', '</a>' ),
    288             /* translators: %1$s: Post type name. %2$s: Lowercase post type name. %3$s: Close post link tag. %4$s: Close post link tag. */
     285            8  => sprintf( __( '%1$s submitted. %2$sPreview %3$s%4$s', 'wporg-forums' ), $this->singular, '<a target="_blank" href="' . esc_url( add_query_arg( 'preview', 'true', $permalink ) ) . '">', strtolower( $this->singular ), '</a>' ),
     286            /* translators: %1$s: Post type name. %2$s: Lowercase post type name. %3$s: Date. %4$s: Post link tag. %5$s: Close post link tag. */
     287            9  => sprintf( __( '%1$s scheduled for: %3$s. %4$sPreview %2$s%5$s', 'wporg-forums' ), $this->singular, strtolower( $this->singular ), '<strong>' . date_i18n( __( 'M j, Y @ G:i', 'wporg-forums' ), strtotime( $post->post_date ) ) . '</strong>', '<a target="_blank" href="' . esc_url( $permalink ) . '">', '</a>' ),
     288            /* translators: %1$s: Post type name. %2$s: Lowercase post type name. %3$s: Post link tag. %4$s: Close post link tag. */
    289289            10 => sprintf( __( '%1$s draft updated. %3$sPreview %2$s%4$s', 'wporg-forums' ), $this->singular, strtolower( $this->singular ), '<a target="_blank" href="' . esc_url( add_query_arg( 'preview', 'true', $permalink ) ) . '">', '</a>' ),
    290290        );
Note: See TracChangeset for help on using the changeset viewer.