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

Commit

Permalink
corrected textdomain for theme translation
Browse files Browse the repository at this point in the history
  • Loading branch information
olli0578 committed Aug 25, 2014
1 parent 96fb433 commit 24a0210
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions library/foundation.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ function FoundationPress_pagination() {
'total' => $wp_query->max_num_pages,
'mid_size' => 5,
'prev_next' => True,
'prev_text' => __('«'),
'next_text' => __('»'),
'prev_text' => __('«', 'FoundationPress'),
'next_text' => __('»', 'FoundationPress'),
'type' => 'list'
) );

Expand Down
8 changes: 4 additions & 4 deletions library/widget-areas.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
function foundationpress_sidebar_widgets() {
register_sidebar(array(
'id' => 'sidebar-widgets',
'name' => __('Sidebar widgets', 'foundationpress'),
'description' => __('Drag widgets to this sidebar container.', 'foundationpress'),
'name' => __('Sidebar widgets', 'FoundationPress'),
'description' => __('Drag widgets to this sidebar container.', 'FoundationPress'),
'before_widget' => '<article id="%1$s" class="row widget %2$s"><div class="small-12 columns">',
'after_widget' => '</div></article>',
'before_title' => '<h6>',
Expand All @@ -13,8 +13,8 @@ function foundationpress_sidebar_widgets() {

register_sidebar(array(
'id' => 'footer-widgets',
'name' => __('Footer widgets', 'foundationpress'),
'description' => __('Drag widgets to this footer container', 'foundationpress'),
'name' => __('Footer widgets', 'FoundationPress'),
'description' => __('Drag widgets to this footer container', 'FoundationPress'),
'before_widget' => '<article id="%1$s" class="large-4 columns widget %2$s">',
'after_widget' => '</article>',
'before_title' => '<h6>',
Expand Down

0 comments on commit 24a0210

Please sign in to comment.