summaryrefslogtreecommitdiffstats
path: root/chrome/browser/gtk
diff options
context:
space:
mode:
authorestade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-08 01:00:23 +0000
committerestade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-08 01:00:23 +0000
commit67f11aaf7a215747e08505f3ac2f04aea056fe01 (patch)
tree14c7b1ab15f62f075393f3cd6298f4e5fdc8286f /chrome/browser/gtk
parent93529fe7f26f3453128952d5f868282e4d9a3dbd (diff)
downloadchromium_src-67f11aaf7a215747e08505f3ac2f04aea056fe01.zip
chromium_src-67f11aaf7a215747e08505f3ac2f04aea056fe01.tar.gz
chromium_src-67f11aaf7a215747e08505f3ac2f04aea056fe01.tar.bz2
Fix a lot of casing and ellipsis bugs on options dialog buttons
BUG=68809 TEST=manual Review URL: http://codereview.chromium.org/6098006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70820 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/gtk')
-rw-r--r--chrome/browser/gtk/options/passwords_exceptions_page_gtk.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/gtk/options/passwords_exceptions_page_gtk.cc b/chrome/browser/gtk/options/passwords_exceptions_page_gtk.cc
index 065d8f3..4146d9f 100644
--- a/chrome/browser/gtk/options/passwords_exceptions_page_gtk.cc
+++ b/chrome/browser/gtk/options/passwords_exceptions_page_gtk.cc
@@ -38,12 +38,12 @@ PasswordsExceptionsPageGtk::PasswordsExceptionsPageGtk(Profile* profile)
: populater(this), profile_(profile) {
remove_button_ = gtk_button_new_with_label(
- l10n_util::GetStringUTF8(IDS_EXCEPTIONS_PAGE_VIEW_REMOVE_BUTTON).c_str());
+ l10n_util::GetStringUTF8(IDS_PASSWORDS_PAGE_VIEW_REMOVE_BUTTON).c_str());
gtk_widget_set_sensitive(remove_button_, FALSE);
g_signal_connect(remove_button_, "clicked",
G_CALLBACK(OnRemoveButtonClickedThunk), this);
remove_all_button_ = gtk_button_new_with_label(l10n_util::GetStringUTF8(
- IDS_EXCEPTIONS_PAGE_VIEW_REMOVE_ALL_BUTTON).c_str());
+ IDS_PASSWORDS_PAGE_VIEW_REMOVE_ALL_BUTTON).c_str());
gtk_widget_set_sensitive(remove_all_button_, FALSE);
g_signal_connect(remove_all_button_, "clicked",
G_CALLBACK(OnRemoveAllButtonClickedThunk), this);