Bug 415781 ? Page Bookmarked text on star UI is misleading (r=dietrich, a=schrep)

This commit is contained in:
dietrich@mozilla.com 2008-03-26 19:01:09 -07:00
Родитель 6760bc8094
Коммит 23d3a385d5
2 изменённых файлов: 8 добавлений и 2 удалений

Просмотреть файл

@ -167,9 +167,14 @@ var StarUI = {
var bundle = this._element("bundle_browser");
// "Page Bookmarked" title
// Set panel title:
// if we are batching, i.e. the bookmark has been added now,
// then show Page Bookmarked, else if the bookmark did already exist,
// we are about editing it, then use Edit This Bookmark.
this._element("editBookmarkPanelTitle").value =
bundle.getString("editBookmarkPanel.pageBookmarkedTitle");
this._batching ?
bundle.getString("editBookmarkPanel.pageBookmarkedTitle") :
bundle.getString("editBookmarkPanel.editBookmarkTitle");
// No description; show the Done, Cancel;
// hide the Edit, Undo buttons

Просмотреть файл

@ -133,3 +133,4 @@ pausedDownloads=One paused download;#1 paused downloads
editBookmarkPanel.pageBookmarkedTitle=Page Bookmarked
editBookmarkPanel.pageBookmarkedDescription=%S will always remember this page for you.
editBookmarkPanel.bookmarkedRemovedTitle=Bookmark Removed
editBookmarkPanel.editBookmarkTitle=Edit This Bookmark