Improve capitalization

"Add to Favorites" and "Remove from Favorites" menu options should be
capitalized throughout.
This commit is contained in:
Marina Zhurakhinskaya 2009-10-09 00:33:33 -04:00
parent 212d5c1954
commit a27c29f4fc

View File

@ -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;
},