Index: chrome/browser/ui/webui/options/personal_options_handler.cc |
=================================================================== |
--- chrome/browser/ui/webui/options/personal_options_handler.cc (revision 102832) |
+++ chrome/browser/ui/webui/options/personal_options_handler.cc (working copy) |
@@ -17,7 +17,6 @@ |
#include "base/values.h" |
#include "build/build_config.h" |
#include "chrome/browser/browser_process.h" |
-#include "chrome/browser/google/google_util.h" |
#include "chrome/browser/profiles/profile.h" |
#include "chrome/browser/profiles/profile_info_cache.h" |
#include "chrome/browser/profiles/profile_manager.h" |
@@ -79,12 +78,13 @@ |
"syncOverview", |
l10n_util::GetStringFUTF16(IDS_SYNC_OVERVIEW, |
l10n_util::GetStringUTF16(IDS_PRODUCT_NAME))); |
+ localized_strings->SetString( |
+ "syncFurtherOverview", |
+ l10n_util::GetStringUTF16(IDS_SYNC_FURTHER_OVERVIEW)); |
localized_strings->SetString("syncSection", |
l10n_util::GetStringUTF16(IDS_SYNC_OPTIONS_GROUP_NAME)); |
localized_strings->SetString("customizeSync", |
l10n_util::GetStringUTF16(IDS_SYNC_CUSTOMIZE_BUTTON_LABEL)); |
- localized_strings->SetString("syncLearnMoreURL", |
- google_util::StringAppendGoogleLocaleParam(chrome::kSyncLearnMoreURL)); |
localized_strings->SetString("profiles", |
l10n_util::GetStringUTF16(IDS_PROFILES_OPTIONS_GROUP_NAME)); |
@@ -259,8 +259,7 @@ |
is_start_stop_button_enabled = false; |
} else { |
start_stop_button_label = |
- l10n_util::GetStringFUTF16(IDS_SYNC_START_SYNC_BUTTON_LABEL, |
- l10n_util::GetStringUTF16(IDS_PRODUCT_NAME)); |
+ l10n_util::GetStringUTF16(IDS_SYNC_START_SYNC_BUTTON_LABEL); |
is_start_stop_button_visible = true; |
is_start_stop_button_enabled = !managed; |
} |