Skip to content

Commit

Permalink
Merge pull request #184 from wojsmol/fix-183
Browse files Browse the repository at this point in the history
Missing text domain in post_type_extended.mustache
  • Loading branch information
schlessera authored Nov 2, 2018
2 parents d1baec5 + c6cadb1 commit 0ca5ec4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/post_type_extended.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ function {{machine_name}}_updated_messages( $messages ) {
8 => sprintf( __( '{{label_ucfirst}} submitted. <a target="_blank" href="%s">Preview {{label}}</a>', '{{textdomain}}' ), esc_url( add_query_arg( 'preview', 'true', $permalink ) ) ),
/* translators: 1: Publish box date format, see https://secure.php.net/date 2: Post permalink */
9 => sprintf( __( '{{label_ucfirst}} scheduled for: <strong>%1$s</strong>. <a target="_blank" href="%2$s">Preview {{label}}</a>', '{{textdomain}}' ),
date_i18n( __( 'M j, Y @ G:i' ), strtotime( $post->post_date ) ), esc_url( $permalink ) ),
date_i18n( __( 'M j, Y @ G:i', '{{textdomain}}' ), strtotime( $post->post_date ) ), esc_url( $permalink ) ),
/* translators: %s: post permalink */
10 => sprintf( __( '{{label_ucfirst}} draft updated. <a target="_blank" href="%s">Preview {{label}}</a>', '{{textdomain}}' ), esc_url( add_query_arg( 'preview', 'true', $permalink ) ) ),
);
Expand Down

0 comments on commit 0ca5ec4

Please sign in to comment.