From 7b63b6b9a04d05169b3ddc31808770e71b59936c Mon Sep 17 00:00:00 2001 From: georgestephanis Date: Thu, 23 Jan 2014 15:02:42 +0000 Subject: [PATCH] Add Jetpack textdomain --- modules/custom-post-types/nova.php | 6 +++--- modules/markdown/easy-markdown.php | 14 +++++++------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/modules/custom-post-types/nova.php b/modules/custom-post-types/nova.php index 4d03de24d484e..39f6bf764fac6 100644 --- a/modules/custom-post-types/nova.php +++ b/modules/custom-post-types/nova.php @@ -634,9 +634,9 @@ function show_menu_titles_in_menu_item_list( $post ) { ?> - +
- + is_posting_enabled(), true, false ), - esc_html__( 'Use Markdown for posts and pages.' ), - sprintf( '%s', esc_url( $this->get_support_url() ), esc_html__( 'Learn more about Markdown.' ) ) + esc_html__( 'Use Markdown for posts and pages.', 'jetpack' ), + sprintf( '%s', esc_url( $this->get_support_url() ), esc_html__( 'Learn more about Markdown.', 'jetpack' ) ) ); } @@ -249,8 +249,8 @@ public function comment_field() { self::COMMENT_OPTION, self::COMMENT_OPTION, checked( $this->is_commenting_enabled(), true, false ), - esc_html__( 'Use Markdown for comments.' ), - sprintf( '%s', esc_url( $this->get_support_url() ), esc_html__( 'Learn more about Markdown.' ) ) + esc_html__( 'Use Markdown for comments.', 'jetpack' ), + sprintf( '%s', esc_url( $this->get_support_url() ), esc_html__( 'Learn more about Markdown.', 'jetpack' ) ) ); } @@ -504,7 +504,7 @@ public function transform( $text, $args = array() ) { * @return array Modified array to include post_content_filtered */ public function _wp_post_revision_fields( $fields ) { - $fields['post_content_filtered'] = __( 'Markdown content' ); + $fields['post_content_filtered'] = __( 'Markdown content', 'jetpack' ); return $fields; }