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/gtk/bookmark_bubble_gtk.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/gtk/bookmark_bubble_gtk.cc')
-rw-r--r-- | chrome/browser/gtk/bookmark_bubble_gtk.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/gtk/bookmark_bubble_gtk.cc b/chrome/browser/gtk/bookmark_bubble_gtk.cc index 52c851f..e49b6b2 100644 --- a/chrome/browser/gtk/bookmark_bubble_gtk.cc +++ b/chrome/browser/gtk/bookmark_bubble_gtk.cc @@ -167,7 +167,7 @@ BookmarkBubbleGtk::BookmarkBubbleGtk(GtkWindow* toplevel_window, GtkWidget* edit_button = gtk_button_new_with_label( l10n_util::GetStringUTF8(IDS_BOOMARK_BUBBLE_OPTIONS).c_str()); GtkWidget* close_button = gtk_button_new_with_label( - l10n_util::GetStringUTF8(IDS_CLOSE).c_str()); + l10n_util::GetStringUTF8(IDS_DONE).c_str()); // Our content is arranged in 3 rows. |top| contains a left justified // message, and a right justified remove link button. |table| is the middle |