Advertisement
helgatheviki

Improved Internationalization of postfooter_postconnect

Jul 7th, 2012
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. function thematic_postfooter_postconnect() {
  2.  
  3. if ((comments_open()) && (pings_open())) { /* Comments are open */
  4. $postconnect = sprintf( __('%sPost a comment%s or leave a trackback', 'thematic'), sprintf('<a class="comment-link" title="%s" href="#respond">', esc_attr__('Post a comment', 'thematic')), '</a>') . ': ';
  5. $postconnect .= sprintf('<a class="trackback-link" href="' . get_trackback_url() . '" title ="%s" rel="trackback">%s</a>.', esc_attr__('Trackback URL for your post', 'thematic'), __('Trackback URL', 'thematic'));
  6. } elseif (!(comments_open()) && (pings_open())) { /* Only trackbacks are open */
  7. $postconnect = __('Comments are closed, but you can leave a trackback', 'thematic') . ': ';
  8. $postconnect .= sprintf('<a class="trackback-link" href="%s" title="%s" rel="trackback">%s</a>.', get_trackback_url() , __('Trackback URL for your post', 'thematic'), __('Trackback URL', 'thematic'));
  9. } elseif ((comments_open()) && !(pings_open())) { /* Only comments open */
  10. $postconnect = sprintf( __('Trackbacks are closed, but you can %spost a comment%s', 'thematic'), sprintf('<a class="comment-link" title="%s" href="#respond">', esc_attr__('Post a comment', 'thematic')), '</a>') . '.';
  11. } elseif (!(comments_open()) && !(pings_open())) { /* Comments and trackbacks closed */
  12. $postconnect = __('Both comments and trackbacks are currently closed', 'thematic'). '.';
  13. }
  14. return apply_filters('thematic_postfooter_postconnect',$postconnect);
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement