Make WordPress Core


Ignore:
Timestamp:
03/11/2005 03:41:04 AM (21 years ago)
Author:
ryan
Message:

Mark strings for translation. http://mosquito.wordpress.org/view.php?id=1033 Hat tip: slebog

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/admin-functions.php

    r2429 r2432  
    975975    $plugin = $name;
    976976    if ('' != $plugin_uri[1] && '' != $name) {
    977         $plugin = __("<a href='{$plugin_uri[1]}' title='Visit plugin homepage'>{$plugin}</a>");
     977        $plugin = '<a href="' . $plugin_uri[1] . '" title="' . __('Visit plugin homepage') . '">' . $plugin . '</a>';
    978978    }
    979979
     
    981981        $author = $author_name[1];
    982982    } else {
    983         $author = __("<a href='{$author_uri[1]}' title='Visit author homepage'>{$author_name[1]}</a>");
     983        $author = '<a href="' . $author_uri[1] . '" title="' . __('Visit author homepage') . '">' . $author_name[1] . '</a>';
    984984    }
    985985
Note: See TracChangeset for help on using the changeset viewer.