mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-03-23 14:54:33 +00:00
i18n updates from nbachiyski. fixes #2069
git-svn-id: https://develop.svn.wordpress.org/trunk@3295 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -72,7 +72,9 @@ if ( get_settings('active_plugins') )
|
||||
$plugins = get_plugins();
|
||||
|
||||
if (empty($plugins)) {
|
||||
_e("<p>Couldn't open plugins directory or there are no plugins available.</p>"); // TODO: make more helpful
|
||||
echo '<p>';
|
||||
_e("Couldn't open plugins directory or there are no plugins available."); // TODO: make more helpful
|
||||
echo '</p>';
|
||||
} else {
|
||||
?>
|
||||
<table width="100%" cellpadding="3" cellspacing="3">
|
||||
@@ -100,7 +102,7 @@ if (empty($plugins)) {
|
||||
<tr $style>
|
||||
<td class='name'>{$plugin_data['Title']}</td>
|
||||
<td class='vers'>{$plugin_data['Version']}</td>
|
||||
<td class='desc'>{$plugin_data['Description']} <cite>By {$plugin_data['Author']}.</cite></td>
|
||||
<td class='desc'>{$plugin_data['Description']} <cite>".sprintf(__('By %s'), $plugin_data['Author']).".</cite></td>
|
||||
<td class='togl'>$action</td>
|
||||
</tr>";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user