diff options
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/app/generated_resources.grd | 8 | ||||
-rw-r--r-- | chrome/browser/dom_ui/new_tab_ui.cc | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/chrome/app/generated_resources.grd b/chrome/app/generated_resources.grd index 9f00cec..04cd054 100644 --- a/chrome/app/generated_resources.grd +++ b/chrome/app/generated_resources.grd @@ -3476,12 +3476,12 @@ each locale. --> desc="Menu item text used to hide recent activities."> Hide recent activities </message> - <message name="IDS_NEW_TAB_SHOW_RECOMMENDATIONS" - desc="Menu item text used to show recommendations."> + <message name="IDS_NEW_TAB_SHOW_TIPS" + desc="Menu item text used to show tips."> Show recommendations </message> - <message name="IDS_NEW_TAB_HIDE_RECOMMENDATIONS" - desc="Menu item text used to hide recommendations."> + <message name="IDS_NEW_TAB_HIDE_TIPS" + desc="Menu item text used to hide tips."> Hide recommendations </message> <message name="IDS_NEW_TAB_THUMBNAIL_REMOVED_NOTIFICATION" diff --git a/chrome/browser/dom_ui/new_tab_ui.cc b/chrome/browser/dom_ui/new_tab_ui.cc index 9be3e72..f6af1ad 100644 --- a/chrome/browser/dom_ui/new_tab_ui.cc +++ b/chrome/browser/dom_ui/new_tab_ui.cc @@ -315,10 +315,10 @@ void NewTabHTMLSource::StartDataRequest(const std::string& path, l10n_util::GetString(IDS_NEW_TAB_SHOW_RECENT)); localized_strings.SetString(L"hiderecent", l10n_util::GetString(IDS_NEW_TAB_HIDE_RECENT)); - localized_strings.SetString(L"showrecommendations", - l10n_util::GetString(IDS_NEW_TAB_SHOW_RECOMMENDATIONS)); - localized_strings.SetString(L"hiderecommendations", - l10n_util::GetString(IDS_NEW_TAB_HIDE_RECOMMENDATIONS)); + localized_strings.SetString(L"showtips", + l10n_util::GetString(IDS_NEW_TAB_SHOW_TIPS)); + localized_strings.SetString(L"hidetips", + l10n_util::GetString(IDS_NEW_TAB_HIDE_TIPS)); localized_strings.SetString(L"thumbnailremovednotification", l10n_util::GetString(IDS_NEW_TAB_THUMBNAIL_REMOVED_NOTIFICATION)); localized_strings.SetString(L"undothumbnailremove", |