From a27c29f4fc7794f25011724ea8dc95babdeaab44 Mon Sep 17 00:00:00 2001 From: Marina Zhurakhinskaya Date: Fri, 9 Oct 2009 00:33:33 -0400 Subject: [PATCH] Improve capitalization "Add to Favorites" and "Remove from Favorites" menu options should be capitalized throughout. --- js/ui/appIcon.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/ui/appIcon.js b/js/ui/appIcon.js index 760971e20..9467f59b8 100644 --- a/js/ui/appIcon.js +++ b/js/ui/appIcon.js @@ -472,8 +472,8 @@ AppIconMenu.prototype = { } if (windows.length > 0) this._appendSeparator(); - this._toggleFavoriteMenuItem = this._appendMenuItem(null, this._isFavorite ? _("Remove from favorites") - : _("Add to favorites")); + this._toggleFavoriteMenuItem = this._appendMenuItem(null, this._isFavorite ? _("Remove from Favorites") + : _("Add to Favorites")); this._highlightedItem = null; },