diff options
-rw-r--r-- | chrome/app/generated_resources.grd | 5 | ||||
-rwxr-xr-x[-rw-r--r--] | chrome/browser/gtk/options/options_window_gtk.cc | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/chrome/app/generated_resources.grd b/chrome/app/generated_resources.grd index 55bc4d2..a0f5f3d 100644 --- a/chrome/app/generated_resources.grd +++ b/chrome/app/generated_resources.grd @@ -5594,6 +5594,11 @@ Keep your key file in a safe place. You will need it to create new versions of y <message name="IDS_OPTIONS_DIALOG_TITLE" desc="The title of the Options dialog box"> <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> Options </message> + <if expr="os == 'linux2'"> + <message name="IDS_PREFERENCES_DIALOG_TITLE" desc="The title of the Preferences dialog box"> + <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> Preferences + </message> + </if> <if expr="pp_ifdef('chromeos')"> <message name="IDS_OPTIONS_SYSTEM_TAB_LABEL" desc="The title of the System tab"> System diff --git a/chrome/browser/gtk/options/options_window_gtk.cc b/chrome/browser/gtk/options/options_window_gtk.cc index 6b1e43a..734a27f 100644..100755 --- a/chrome/browser/gtk/options/options_window_gtk.cc +++ b/chrome/browser/gtk/options/options_window_gtk.cc @@ -98,7 +98,7 @@ OptionsWindowGtk::OptionsWindowGtk(Profile* profile) std::string dialog_name = l10n_util::GetStringFUTF8( - IDS_OPTIONS_DIALOG_TITLE, + IDS_PREFERENCES_DIALOG_TITLE, l10n_util::GetStringUTF16(IDS_PRODUCT_NAME)); dialog_ = gtk_dialog_new_with_buttons( dialog_name.c_str(), |