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

Commit

Permalink
fix: Fix domain for translation (refs #16)
Browse files Browse the repository at this point in the history
  • Loading branch information
literat committed Aug 16, 2015
1 parent 905de99 commit adf8283
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inc/extras.php
Expand Up @@ -75,7 +75,7 @@ function dswoddil_wp_title( $title, $sep ) {

// Add a page number if necessary.
if ( ( $paged >= 2 || $page >= 2 ) && ! is_404() ) {
$title .= " $sep " . sprintf( esc_html__( 'Page %s', 'dsw-oddil' ), max( $paged, $page ) );
$title .= " $sep " . sprintf( esc_html__( 'Page %s', 'dswoddil' ), max( $paged, $page ) );
}

return $title;
Expand Down

0 comments on commit adf8283

Please sign in to comment.