Skip to content
This repository has been archived by the owner on Sep 16, 2019. It is now read-only.

Added text domain to comment awaiting moderation message #1071

Merged
merged 2 commits into from
Sep 6, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion library/class-foundationpress-comments.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ function start_el( &$output, $comment, $depth = 0, $args = array(), $id = 0 ) {
<section id="comment-content-<?php comment_ID(); ?>" class="comment">
<?php if ( ! $comment->comment_approved ) : ?>
<div class="notice">
<p class="bottom"><?php _e( 'Your comment is awaiting moderation.' ); ?></p>
<p class="bottom"><?php _e( 'Your comment is awaiting moderation.', 'foundationpress' ); ?></p>
</div>
<?php else : comment_text(); ?>
<?php endif; ?>
Expand Down
2 changes: 1 addition & 1 deletion library/theme-support.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ function foundationpress_theme_support() {
add_theme_support( 'wc-product-gallery-slider' );

// Add foundation.css as editor style https://codex.wordpress.org/Editor_Style
add_editor_style( 'assets/stylesheets/foundation.css' );
add_editor_style( 'dist/assets/css/app.css' );
}

add_action( 'after_setup_theme', 'foundationpress_theme_support' );
Expand Down