Make WordPress Core


Ignore:
Timestamp:
05/27/2010 11:52:15 AM (16 years ago)
Author:
nbachiyski
Message:

Menu translatable strings cleanup.

  • Take out <strong> of the translatable part of For more information:
  • Include support forums and Codex links inside translations, because most translators would want to change them to their local documentation sites or Codex prefixes
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/edit-tags.php

    r14978 r14989  
    181181                '<li>' . __('<strong>Name</strong> - The name is how it appears on your site.') . '</li>';
    182182        if ( ! global_terms_enabled() )
    183                 $help .= '<li>' . __('<strong>Slug</strong> - The  &#8220;slug &#8221; is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.') . '</li>';
     183                $help .= '<li>' . __('<strong>Slug</strong> - The  &#8220;slug&#8221; is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.') . '</li>';
    184184
    185185        if ( 'category' == $taxonomy )
     
    189189                '</ul>' .
    190190                '<p>' . __('You can change the display of this screen using the Screen Options tab to set how many items are displayed per screen and to display/hide columns in the table.') . '</p>' .
    191                 '<p>' . __('<strong>For more information:</strong>') . '</p>';
     191                '<p><strong>' . __('For more information:') . '</strong></p>';
    192192
    193193        if ( 'category' == $taxonomy )
    194                 $help .= '<p>' . sprintf(__('<a href="%s">Categories Documentation</a>'), 'http://codex.wordpress.org/Manage_Categories_SubPanel') . '</p>';
    195         else
    196                 $help .= '<p>' . sprintf(__('<a href="%s">Tags Documentation</a>'), 'http://codex.wordpress.org/Post_Tags_SubPanel') . '</p>';
    197 
    198         $help .= '<p>' . sprintf(__('<a href="%s">Support Forums</a>'), 'http://wordpress.org/support/') . '</p>';
     194                $help .= '<p>' . __('<a href="http://codex.wordpress.org/Manage_Categories_SubPanel">Categories Documentation</a>') . '</p>';
     195        else
     196                $help .= '<p>' . __('<a href="http://codex.wordpress.org/Post_Tags_SubPanel">Tags Documentation</a>') . '</p>';
     197
     198        $help .= '<p>' . __('<a href="http://wordpress.org/support/">Support Forums</a>') . '</p>';
    199199
    200200        add_contextual_help($current_screen, $help);
Note: See TracChangeset for help on using the changeset viewer.