diff options
author | finnur@google.com <finnur@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-13 14:48:53 +0000 |
---|---|---|
committer | finnur@google.com <finnur@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-13 14:48:53 +0000 |
commit | e9fb4cf4776afdc09dce3e4d244b629eef8397c3 (patch) | |
tree | 4821209e20434f7cc31deac0096d99667e2da895 /chrome/browser/views/about_chrome_view.cc | |
parent | c569262be98c6356d978b30ff953c62cdb34b786 (diff) | |
download | chromium_src-e9fb4cf4776afdc09dce3e4d244b629eef8397c3.zip chromium_src-e9fb4cf4776afdc09dce3e4d244b629eef8397c3.tar.gz chromium_src-e9fb4cf4776afdc09dce3e4d244b629eef8397c3.tar.bz2 |
Tweaks for the text on the About box (from bug 3360):
1. "Google Chrome is made possible by the Google Chrome open source..." should read "Google Chrome is made possible by the Chromium open source..."
2. The second link in that sentence should be "<a>open source software</a>" Currently the word "software" isn't part of the link.
3. There shouldn't be a period at the end of "Google Chrome Terms of Service." Not a sentence.
Review URL: http://codereview.chromium.org/7112
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3287 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/views/about_chrome_view.cc')
-rw-r--r-- | chrome/browser/views/about_chrome_view.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/views/about_chrome_view.cc b/chrome/browser/views/about_chrome_view.cc index c5b3080..d642aa7 100644 --- a/chrome/browser/views/about_chrome_view.cc +++ b/chrome/browser/views/about_chrome_view.cc @@ -157,7 +157,8 @@ void AboutChromeView::Init() { main_label_chunk3_ = text.substr(link2); // The Chromium link within the main text of the dialog. - chromium_url_ = new ChromeViews::Link(l10n_util::GetString(IDS_PRODUCT_NAME)); + chromium_url_ = new ChromeViews::Link( + l10n_util::GetString(IDS_OPEN_SOURCE_PROJECT_NAME)); AddChildView(chromium_url_); chromium_url_->SetController(this); |