diff options
author | rkc@chromium.org <rkc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-02 22:34:16 +0000 |
---|---|---|
committer | rkc@chromium.org <rkc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-02 22:34:16 +0000 |
commit | b44492fc9c520bb8c69f8558188ecba9b127d008 (patch) | |
tree | 1325c7413af6ac72060fdca963eba18b7ef756f4 | |
parent | d73ec6ec7af898b784172a90368ca7b4111e6fee (diff) | |
download | chromium_src-b44492fc9c520bb8c69f8558188ecba9b127d008.zip chromium_src-b44492fc9c520bb8c69f8558188ecba9b127d008.tar.gz chromium_src-b44492fc9c520bb8c69f8558188ecba9b127d008.tar.bz2 |
Changes to show the legal note as requred by Chrome lawyers.
BUG=61847
TEST=Verified that the privacy note gets displayed on Chrome and Chrome OS correctly.
Review URL: http://codereview.chromium.org/5573004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@68086 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/app/generated_resources.grd | 24 | ||||
-rw-r--r-- | chrome/browser/resources/bug_report.html | 2 |
2 files changed, 24 insertions, 2 deletions
diff --git a/chrome/app/generated_resources.grd b/chrome/app/generated_resources.grd index 94ea775..0210b92 100644 --- a/chrome/app/generated_resources.grd +++ b/chrome/app/generated_resources.grd @@ -4823,9 +4823,16 @@ Keep your key file in a safe place. You will need it to create new versions of y <message name="IDS_BUGREPORT_DESCRIPTION_LABEL" desc="Label for the description field"> Tell us what is happening. (required) </message> + <if expr="pp_ifdef('chromeos')"> <message name="IDS_BUGREPORT_SCREENSHOT_LABEL" desc="Label for the screenshot field if current screenshots are being shown"> Include the current screenshot: </message> + </if> + <if expr="not pp_ifdef('chromeos')"> + <message name="IDS_BUGREPORT_SCREENSHOT_LABEL" desc="Label for the screenshot field if current screenshots are being shown"> + Include this screenshot: + </message> + </if> <message name="IDS_BUGREPORT_SAVED_SCREENSHOT_LABEL" desc="Label for the screenshot field if saved screenshots are being shown"> Include a saved screenshot: </message> @@ -4879,6 +4886,7 @@ Keep your key file in a safe place. You will need it to create new versions of y <message name="IDS_BUGREPORT_CHOOSE_ORIGINAL_SCREENSHOT" desc="Text for changing the screenshot selection from saved to current"> (Go back to original screenshot) </message> + <if expr="pp_ifdef('chromeos')"> <message name="IDS_BUGREPORT_PRIVACY_NOTE" desc="Text for the privacy note included with Chrome OS"> Note: When you click "Send Feedback," Chrome OS includes a log of system events from your device. This information is used by @@ -4893,6 +4901,22 @@ Keep your key file in a safe place. You will need it to create new versions of y To not send any system logs at all, please uncheck the "Include System Information" box. </message> + </if> + <if expr="not pp_ifdef('chromeos')"> + <message name="IDS_BUGREPORT_PRIVACY_NOTE" desc="Text for the privacy note included with Chrome OS"> + Note: When you click "Send Feedback," Chrome includes a log of your + Chrome version and OS version and the URL associated with your feedback. + You may also choose to include a screenshot associated with your + feedback. This information is used by us to diagnose problems and to + help us improve Chrome’s performance. Any personal information included + with the feedback report, whether explicitly in your comments or + incidentally in the log, URL or screenshot, will be protected in + accordance with our privacy policies. To not send the URL, please + uncheck the “Include this URL:” box. To not send the screenshot, leave the box + “Include this screenshot:” unchecked. You agree that Google may use any feedback that you + provide to improve any Google products or services + </message> + </if> <message name="IDS_BUGREPORT_INCLUDE_PAGE_SOURCE_CHKBOX" desc="Checkbox for including page source"> Send source of current page </message> diff --git a/chrome/browser/resources/bug_report.html b/chrome/browser/resources/bug_report.html index 4b45cee..0afbbe2 100644 --- a/chrome/browser/resources/bug_report.html +++ b/chrome/browser/resources/bug_report.html @@ -275,10 +275,8 @@ window.addEventListener('DOMContentLoaded', load); class="bug-report-button" i18n-values="value:cancel"
onclick="cancel()">
</div>
-<if expr="pp_ifdef('chromeos')">
<div id="privacy-note" i18n-values=".innerHTML:privacy-note">
</div>
-</if>
</td>
</tr>
</tbody>
|