diff options
author | tbarzic@google.com <tbarzic@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-25 04:07:16 +0000 |
---|---|---|
committer | tbarzic@google.com <tbarzic@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-25 04:07:16 +0000 |
commit | e1100721c5613c46f85ed82a9620e5e9a1c818f7 (patch) | |
tree | 93ea83e7b1f3e1f94670b5882e44ae0e39ceb485 /chrome/app | |
parent | cd2c93311a47b41e360bad093b009b12c0df440c (diff) | |
download | chromium_src-e1100721c5613c46f85ed82a9620e5e9a1c818f7.zip chromium_src-e1100721c5613c46f85ed82a9620e5e9a1c818f7.tar.gz chromium_src-e1100721c5613c46f85ed82a9620e5e9a1c818f7.tar.bz2 |
Enabling about:system page to select shown entries and to scroll to specific entry
TEST=Open about:system. Table containing available system information is shown.
Clicking on button Expand shows associated entry, and clicking on Collapse hides it. Initialy all entries are hidden.
Clicking on Expand all / Collapse all shows / hides all entries.
about:system/foo hides all entries but foo, and scrolls to it
BUG=4973
Review URL: http://codereview.chromium.org/3173038
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57288 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/app')
-rw-r--r-- | chrome/app/generated_resources.grd | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/chrome/app/generated_resources.grd b/chrome/app/generated_resources.grd index a0f5f3d..778b897 100644 --- a/chrome/app/generated_resources.grd +++ b/chrome/app/generated_resources.grd @@ -3791,7 +3791,31 @@ Keep your key file in a safe place. You will need it to create new versions of y <message name="IDS_BAD_FLAGS_WARNING_MESSAGE" desc="Message shown when an unsupported command-line flag is used. [Keep it short so it fits in the infobar.]"> You are using an unsupported command-line flag: <ph name="BAD_FLAG">$1<ex>--no-sandbox</ex></ph>. Stability and security will suffer. </message> - + + <!-- about:system strings --> + <if expr="pp_ifdef('chromeos')"> + <message name="IDS_ABOUT_SYS_TITLE" desc="about:system page title"> + About System + </message> + <message name="IDS_ABOUT_SYS_DESC" desc="about:system page description"> + System diagnostic data + </message> + <message name="IDS_ABOUT_SYS_TABLE_TITLE" desc="Title of a table that contains system details"> + Details + </message> + <message name="IDS_ABOUT_SYS_EXPAND_ALL" desc="name of a button that shows (expands) all system details"> + Expand all... + </message> + <message name="IDS_ABOUT_SYS_COLLAPSE_ALL" desc="name of a button that hides (collapses) all system details"> + Collapse all... + </message> + <message name="IDS_ABOUT_SYS_EXPAND" desc="name of a button that shows (expands) specific system details"> + Expand... + </message> + <message name="IDS_ABOUT_SYS_COLLAPSE" desc="name of a button that hides (collapses) specific system details"> + Collapse... + </message> + </if> <!-- about:version strings --> <message name="IDS_ABOUT_VERSION_TITLE" desc="Title on the about:version page"> |