Skip to content

Commit

Permalink
Make AP feed metabox title translatable.
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Lannoy authored and rahularyan committed Sep 20, 2017
1 parent e09c5dd commit df8186a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin/views/dashboard.php
Expand Up @@ -25,7 +25,7 @@ public static function init() {

add_meta_box( 'ap-mb-attn', '<i class="apicon-alert"></i>' . __( 'Require Attention', 'anspress-question-answer' ), array( __CLASS__, 'anspress_attn' ), 'anspress', 'column1', 'core' );

add_meta_box( 'anspress_feed', 'AnsPress Feed', array( __CLASS__, 'anspress_feed' ), 'anspress', 'column1', 'core' );
add_meta_box( 'anspress_feed', __('AnsPress Feed', 'anspress-question-answer' ), array( __CLASS__, 'anspress_feed' ), 'anspress', 'column1', 'core' );

add_meta_box( 'ap-mb-qstats', '<i class="apicon-question"></i>' . __( 'Questions', 'anspress-question-answer' ), array( __CLASS__, 'anspress_stats' ), 'anspress', 'column2', 'core' );

Expand Down

0 comments on commit df8186a

Please sign in to comment.