diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-27 02:30:09 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-27 02:30:09 +0000 |
commit | b94cc03b8e1d0d77ff994e7a80ff90c085e15b95 (patch) | |
tree | 88b02d6962b89e52ad2ddb448c0fb8aae0b01b20 /chrome/browser/views/bookmark_bubble_view.cc | |
parent | d8627c165655488b452556cebbb7e9ae31b0a9cf (diff) | |
download | chromium_src-b94cc03b8e1d0d77ff994e7a80ff90c085e15b95.zip chromium_src-b94cc03b8e1d0d77ff994e7a80ff90c085e15b95.tar.gz chromium_src-b94cc03b8e1d0d77ff994e7a80ff90c085e15b95.tar.bz2 |
Rename button from "Close" to "Done" on bookmark bubble and content bubbles.
xib changes: Change ^IDS_CLOSE to ^IDS_DONE.
BUG=36959
TEST=Open bookmark bubble. Button should read "Done". Go to popuptest.com, click "popups blocked" icon. Button in bubble should read "Done".
Review URL: http://codereview.chromium.org/661235
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40202 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/views/bookmark_bubble_view.cc')
-rw-r--r-- | chrome/browser/views/bookmark_bubble_view.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/views/bookmark_bubble_view.cc b/chrome/browser/views/bookmark_bubble_view.cc index 425d1ce5..b6d7519 100644 --- a/chrome/browser/views/bookmark_bubble_view.cc +++ b/chrome/browser/views/bookmark_bubble_view.cc @@ -242,7 +242,7 @@ void BookmarkBubbleView::Init() { edit_button_ = new NativeButton( this, l10n_util::GetString(IDS_BOOMARK_BUBBLE_OPTIONS)); - close_button_ = new NativeButton(this, l10n_util::GetString(IDS_CLOSE)); + close_button_ = new NativeButton(this, l10n_util::GetString(IDS_DONE)); close_button_->SetIsDefault(true); parent_combobox_ = new Combobox(&parent_model_); |