summaryrefslogtreecommitdiffstats
path: root/chrome/browser
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser')
-rw-r--r--chrome/browser/autofill/autofill_dialog_gtk.cc2
-rw-r--r--chrome/browser/gtk/options/content_page_gtk.cc2
-rw-r--r--chrome/browser/views/autofill_profiles_view_win.cc2
-rw-r--r--chrome/browser/views/options/content_page_view.cc2
4 files changed, 4 insertions, 4 deletions
diff --git a/chrome/browser/autofill/autofill_dialog_gtk.cc b/chrome/browser/autofill/autofill_dialog_gtk.cc
index e1f32fa..0578dec 100644
--- a/chrome/browser/autofill/autofill_dialog_gtk.cc
+++ b/chrome/browser/autofill/autofill_dialog_gtk.cc
@@ -657,7 +657,7 @@ void AutoFillDialog::LoadAutoFillData() {
void AutoFillDialog::InitializeWidgets() {
dialog_ = gtk_dialog_new_with_buttons(
- l10n_util::GetStringUTF8(IDS_AUTOFILL_DIALOG_TITLE).c_str(),
+ l10n_util::GetStringUTF8(IDS_AUTOFILL_OPTIONS).c_str(),
// AutoFill dialog is shared between all browser windows.
NULL,
// Non-modal.
diff --git a/chrome/browser/gtk/options/content_page_gtk.cc b/chrome/browser/gtk/options/content_page_gtk.cc
index fa945f6..0642e9e 100644
--- a/chrome/browser/gtk/options/content_page_gtk.cc
+++ b/chrome/browser/gtk/options/content_page_gtk.cc
@@ -271,7 +271,7 @@ GtkWidget* ContentPageGtk::InitFormAutoFillGroup() {
// AutoFill button.
autofill_button_ = gtk_button_new_with_label(
- l10n_util::GetStringUTF8(IDS_OPTIONS_AUTOFILL_SETTINGS).c_str());
+ l10n_util::GetStringUTF8(IDS_AUTOFILL_OPTIONS).c_str());
if (!profile()->GetPrefs()->GetBoolean(prefs::kAutoFillEnabled))
gtk_widget_set_sensitive(autofill_button_, FALSE);
diff --git a/chrome/browser/views/autofill_profiles_view_win.cc b/chrome/browser/views/autofill_profiles_view_win.cc
index 9d78092..f010697 100644
--- a/chrome/browser/views/autofill_profiles_view_win.cc
+++ b/chrome/browser/views/autofill_profiles_view_win.cc
@@ -274,7 +274,7 @@ bool AutoFillProfilesView::IsDialogButtonEnabled(
std::wstring AutoFillProfilesView::GetWindowTitle() const {
- return l10n_util::GetString(IDS_AUTOFILL_DIALOG_TITLE);
+ return l10n_util::GetString(IDS_AUTOFILL_OPTIONS);
}
void AutoFillProfilesView::WindowClosing() {
diff --git a/chrome/browser/views/options/content_page_view.cc b/chrome/browser/views/options/content_page_view.cc
index 5a84125..e7da7f2 100644
--- a/chrome/browser/views/options/content_page_view.cc
+++ b/chrome/browser/views/options/content_page_view.cc
@@ -334,7 +334,7 @@ void ContentPageView::InitFormAutofillGroup() {
form_autofill_disable_radio_->SetMultiLine(true);
change_autofill_settings_button_ = new views::NativeButton(
- this, l10n_util::GetString(IDS_OPTIONS_AUTOFILL_SETTINGS));
+ this, l10n_util::GetString(IDS_AUTOFILL_OPTIONS));
if (!profile()->GetPersonalDataManager())
change_autofill_settings_button_->SetEnabled(false);