Skip to content

Commit

Permalink
fix missing text-domain in translation strings
Browse files Browse the repository at this point in the history
  • Loading branch information
pattonwebz committed Mar 2, 2017
1 parent 750d3ae commit 37158b2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Theme URI: http://www.pattonwebz.com/best-reloaded-bootstrap-theme
Description: A responsive, mobile-first, WordPress theme that uses Bootstrap.
Author: William Patton
Author URI: http://pattonwebz.com/
Version: 0.9
Version: 0.9.2
Text Domain: best-reloaded
Tags: left-sidebar, right-sidebar, custom-colors, custom-menu, editor-style, featured-images, full-width-template, theme-options, threaded-comments, translation-ready
Expand Down
4 changes: 2 additions & 2 deletions inc/customizer.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ function best_reloaded_customizer($wp_customize){
) );
$wp_customize->add_control( 'bestreloaded_display_header_banner_area', array(
'label' => __('Display Header Banner Area', 'best-reloaded'),
'description' => __('Toggle on/off the the header slot.'),
'description' => __('Toggle on/off the the header slot.', 'best-reloaded'),
'section' => 'best_reloaded_header',
'settings' => 'bestreloaded_display_header_banner_area',
'type' => 'checkbox'
Expand All @@ -51,7 +51,7 @@ function best_reloaded_customizer($wp_customize){
) );
$wp_customize->add_control( 'bestreloaded_header_banner_area', array(
'label' => __('Header Banner Area', 'best-reloaded'),
'description' => __('Enter the text you want to show in the header slot. Accepts some basic html.'),
'description' => __('Enter the text you want to show in the header slot. Accepts some basic html.', 'best-reloaded'),
'section' => 'best_reloaded_header',
'settings' => 'bestreloaded_header_banner_area',
'type' => 'textarea'
Expand Down
2 changes: 1 addition & 1 deletion loop-slides.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<?php endwhile; else : ?>

<div>
<p class="hero-p" style="padding: 40px;"><?php esc_html_e("Sorry, couldn't get any slides."); ?></p>
<p class="hero-p" style="padding: 40px;"><?php esc_html_e("Sorry, couldn't get any slides.", 'best-reloaded'); ?></p>
</div>

<?php endif; ?>
2 changes: 1 addition & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Theme URI: http://www.pattonwebz.com/best-reloaded-bootstrap-theme
Description: A responsive, mobile-first, WordPress theme that uses Bootstrap.
Author: William Patton
Author URI: http://pattonwebz.com/
Version: 0.9.1
Version: 0.9.2
Text Domain: best-reloaded
Tags: left-sidebar, right-sidebar, custom-colors, custom-menu, editor-style, featured-images, full-width-template, theme-options, threaded-comments, translation-ready
Expand Down

0 comments on commit 37158b2

Please sign in to comment.