diff --git a/mozilla/xpfe/components/bookmarks/resources/bm-panel.xul b/mozilla/xpfe/components/bookmarks/resources/bm-panel.xul
index c6371ff3a78..40873615156 100644
--- a/mozilla/xpfe/components/bookmarks/resources/bm-panel.xul
+++ b/mozilla/xpfe/components/bookmarks/resources/bm-panel.xul
@@ -35,6 +35,7 @@
+
diff --git a/mozilla/xpfe/components/bookmarks/resources/bookmarks.js b/mozilla/xpfe/components/bookmarks/resources/bookmarks.js
index 95566a4a819..ac271007277 100644
--- a/mozilla/xpfe/components/bookmarks/resources/bookmarks.js
+++ b/mozilla/xpfe/components/bookmarks/resources/bookmarks.js
@@ -260,7 +260,9 @@ function doDelete(promptFlag)
if (promptFlag == true)
{
- var ok = confirm("Delete the selected item(s)?"); // XXX localize
+ var bundle = srGetStrBundle("chrome://bookmarks/locale/bookmark.properties");
+ var deleteStr = bundle.GetStringFromName("DeleteItems");
+ var ok = confirm(deleteStr);
if (!ok) return(false);
}
@@ -621,8 +623,8 @@ function fillContextMenu(name)
}
// and then add a "Properties" menu items
- var propMenuName = "Properties..."; // XXX localize
-
+ var bundle = srGetStrBundle("chrome://bookmarks/locale/bookmark.properties");
+ var propMenuName = bundle.GetStringFromName("BookmarkProperties");
var menuItem = document.createElement("menuitem");
menuItem.setAttribute("value", propMenuName);
popupNode.appendChild(menuItem);
diff --git a/mozilla/xpfe/components/bookmarks/resources/bookmarks.xul b/mozilla/xpfe/components/bookmarks/resources/bookmarks.xul
index cf39fce656e..10b7f106cb8 100644
--- a/mozilla/xpfe/components/bookmarks/resources/bookmarks.xul
+++ b/mozilla/xpfe/components/bookmarks/resources/bookmarks.xul
@@ -39,6 +39,7 @@
+