diff options
| author | donncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36> | 2005-12-15 11:57:18 +0000 |
|---|---|---|
| committer | donncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36> | 2005-12-15 11:57:18 +0000 |
| commit | d7de7a6a6ae02a6f1e818ef8c5f62874e0755de0 (patch) | |
| tree | f2713a1f26335a7a061d35a25f56d848ac5a1e6c /wp-inst/wp-admin/plugins.php | |
| parent | e683170d3363121819b9136323b5fd0454f6de79 (diff) | |
| download | wordpress-mu-d7de7a6a6ae02a6f1e818ef8c5f62874e0755de0.tar.gz wordpress-mu-d7de7a6a6ae02a6f1e818ef8c5f62874e0755de0.tar.xz wordpress-mu-d7de7a6a6ae02a6f1e818ef8c5f62874e0755de0.zip | |
WP Merge
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@469 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-inst/wp-admin/plugins.php')
| -rw-r--r-- | wp-inst/wp-admin/plugins.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/wp-inst/wp-admin/plugins.php b/wp-inst/wp-admin/plugins.php index d16ae10..8d5f539 100644 --- a/wp-inst/wp-admin/plugins.php +++ b/wp-inst/wp-admin/plugins.php @@ -79,7 +79,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"> @@ -107,7 +109,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>"; } |
