Advertisement
grappler

Translation code

Dec 3rd, 2012
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.67 KB | None | 0 0
  1. #: 404.php:28
  2. #: archive.php:105
  3. #: blog-excerpt.php:97
  4. #: blog.php:96
  5. #: content-sidebar-half-page.php:93
  6. #: content-sidebar-page.php:93
  7. #: full-width-page.php:93
  8. #: image.php:86
  9. #: index.php:86
  10. #: landing-page.php:61
  11. #: page.php:92
  12. #: search.php
  13.  
  14. <?php printf( __( 'You can return %s or search for the page you were looking for.', 'responsive' ),
  15.     sprintf( '<a href="%1$s" title="%2$s">%3$s</a>',
  16.         esc_url( get_home_url() ),
  17.         esc_attr__( 'Home', 'responsive' ),
  18.         esc_attr__( '&larr; Home', 'responsive' )
  19.     )
  20. ); ?>
  21.  
  22. #: search.php
  23. <h3 class="title-404"><?php printf(__('Your search for %s did not match any entries.', 'responsive' ), get_search_query() ); ?></h3>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement