Wrong text domain
-
There are two wrong text domains in template-tags.php
In line 125:
printf( __( '<a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date" datetime="%3$s">%4$s</time></a><span class="byline"> by <span class="author vcard"><a class="url fn n" href="%5$s" title="%6$s" rel="author">%7$s</a></span></span>', 'landscape' ),
has to be:
printf( __( '<a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date" datetime="%3$s">%4$s</time></a><span class="byline"> by <span class="author vcard"><a class="url fn n" href="%5$s" title="%6$s" rel="author">%7$s</a></span></span>', 'untitled' ),
And on line 131:
esc_attr( sprintf( __( 'View all posts by %s', 'landscape' ), get_the_author() ) ),
has to be:
esc_attr( sprintf( __( 'View all posts by %s', 'untitled' ), get_the_author() ) ),
Thanks for fixing! ??
All the best,
Torsten
- The topic ‘Wrong text domain’ is closed to new replies.