diff options
author | sky@google.com <sky@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-23 16:47:41 +0000 |
---|---|---|
committer | sky@google.com <sky@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-23 16:47:41 +0000 |
commit | 776e749879084abf997bed1838737fd0f8bd5a20 (patch) | |
tree | ad594c86d14afa848c1fe34e6d3d44559363fd6e /chrome/app | |
parent | 4b2170afea2d38cd98c7ea0e25a5c45151f7471e (diff) | |
download | chromium_src-776e749879084abf997bed1838737fd0f8bd5a20.zip chromium_src-776e749879084abf997bed1838737fd0f8bd5a20.tar.gz chromium_src-776e749879084abf997bed1838737fd0f8bd5a20.tar.bz2 |
Adds models needed by the bookmark manager. Specifically a
BookmarkTableModel, which will be used to show one of the following:
the children of a folder, recently bookmarked or the results of a
search. And the tree model implementation that shows the folders.
BUG=674
TEST=covered by unit tests
Review URL: http://codereview.chromium.org/8063
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3814 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/app')
-rw-r--r-- | chrome/app/generated_resources.grd | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/chrome/app/generated_resources.grd b/chrome/app/generated_resources.grd index e1dbcea..e5d9c07 100644 --- a/chrome/app/generated_resources.grd +++ b/chrome/app/generated_resources.grd @@ -3137,6 +3137,7 @@ each locale. --> <message name="IDS_BLOCKED_POPUP" desc="Text on a blocked popup's window titlebar."> Blocked Pop-up </message> + <!-- Multiple download warning--> <message name="IDS_MULTI_DOWNLOAD_WARNING" desc="Warning invoked if multiple downloads are attempted without user interaction."> This site is attempting to download multiple files. Do you want to allow this? @@ -3147,6 +3148,40 @@ each locale. --> <message name="IDS_MULTI_DOWNLOAD_WARNING_DENY" desc="Text on the deny button in the IDS_MULTI_DOWNLOAD_WARNING dialog"> Deny </message> + + <!-- Bookmark table --> + <message name="IDS_BOOKMARK_TABLE_TITLE" desc="Title of the column in bookmark table showing the title of the bookmark."> + Title + </message> + <message name="IDS_BOOKMARK_TABLE_URL" desc="Title of the column in bookmark table showing the url of the bookmark."> + URL + </message> + <message name="IDS_BOOKMARK_TABLE_PATH" desc="Title of the column in bookmark table showing the path in the bookmark bar of the node."> + Folder + </message> + <message name="IDS_BOOKMARK_TABLE_OTHER_BOOKMARKS_PATH" desc="Path used for bookmarks in the other bookmarks folder"> + Other bookmarks + </message> + <message name="IDS_BOOKMARK_TABLE_BOOKMARK_BAR_PATH" desc="Path used for bookmarks on the bookmark bar"> + Bookmark bar + </message> + <message name="IDS_BOOKMARK_TABLE_PATH_SEPARATOR" desc="Separator between path elements in the bookmarks table"> + / + </message> + + <!-- Bookmark tree --> + <message name="IDS_BOOKMARK_TREE_RECENTLY_BOOKMARKED_NODE_TITLE" desc="Title of the bookmark node in the bookmark manager showing the 'recently bookmarked' bookmarks"> + Recently Added + </message> + <message name="IDS_BOOKMARK_TREE_SEARCH_NODE_TITLE" desc="Title of node under which search results are shown."> + Search + </message> + + <!-- Bookmark manager --> + <message name="IDS_BOOKMARK_MANAGER_TITLE" desc="Title of the bookmark manager window."> + Bookmark Manager + </message> + </messages> </release> </grit> |