diff --git a/wp-admin/admin-functions.php b/wp-admin/admin-functions.php
index 720997e33a..2c17efbf5b 100644
--- a/wp-admin/admin-functions.php
+++ b/wp-admin/admin-functions.php
@@ -974,13 +974,13 @@ function get_plugin_data($plugin_file) {
$name = trim($name);
$plugin = $name;
if ('' != $plugin_uri[1] && '' != $name) {
- $plugin = __("{$plugin}");
+ $plugin = '' . $plugin . '';
}
if ('' == $author_uri[1]) {
$author = $author_name[1];
} else {
- $author = __("{$author_name[1]}");
+ $author = '' . $author_name[1] . '';
}
return array('Name' => $name, 'Title' => $plugin, 'Description' => $description, 'Author' => $author, 'Version' => $version, 'Template' => $template[1]);
diff --git a/wp-admin/link-categories.php b/wp-admin/link-categories.php
index ae49fac2be..69244981ad 100644
--- a/wp-admin/link-categories.php
+++ b/wp-admin/link-categories.php
@@ -338,13 +338,13 @@ foreach ($results as $row) {
style="border-bottom: 1px dotted #9C9A9C;">
cat_name)?> |
cat_id?> |
- auto_toggle == 'Y' ? __('Y') : __('N') ?> |
- show_images == 'Y' ? __('Y') : __('N') ?> |
- show_description == 'Y' ? __('Y') : __('N') ?> |
- show_rating == 'Y' ? __('Y') : __('N') ?> |
- show_updated == 'Y' ? __('Y') : __('N') ?> |
+ auto_toggle == 'Y' ? __('Yes') : __('No') ?> |
+ show_images == 'Y' ? __('Yes') : __('No') ?> |
+ show_description == 'Y' ? __('Yes') : __('No') ?> |
+ show_rating == 'Y' ? __('Yes') : __('No') ?> |
+ show_updated == 'Y' ? __('Yes') : __('No') ?> |
sort_order ?> |
- sort_desc == 'Y' ? __('Y') : __('N') ?> |
+ sort_desc == 'Y' ? __('Yes') : __('No') ?> |
text_before_link)?> |
text_after_link)?> |
text_after_all)?> |
diff --git a/wp-includes/functions.php b/wp-includes/functions.php
index 2e76f50bdc..d45e569fc2 100644
--- a/wp-includes/functions.php
+++ b/wp-includes/functions.php
@@ -1397,13 +1397,13 @@ function get_theme_data($theme_file) {
$name = trim($name);
$theme = $name;
if ('' != $theme_uri[1] && '' != $name) {
- $theme = __("{$theme}");
+ $theme = '' . $theme . '';
}
if ('' == $author_uri[1]) {
$author = $author_name[1];
} else {
- $author = __("{$author_name[1]}");
+ $author = '' . $author_name[1] . '';
}
return array('Name' => $name, 'Title' => $theme, 'Description' => $description, 'Author' => $author, 'Version' => $version, 'Template' => $template[1]);