diff options
author | carlosvaldivia@google.com <carlosvaldivia@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-14 19:34:00 +0000 |
---|---|---|
committer | carlosvaldivia@google.com <carlosvaldivia@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-14 19:34:00 +0000 |
commit | 22b88064b6053fd06ee6fc092fa55fef6bd3c28c (patch) | |
tree | ec06dc923d7e9f86c8e87cbd7acef5593086b072 /chrome/app | |
parent | f658a090424e4ac55e4ac3671ea1efb3c3de64d1 (diff) | |
download | chromium_src-22b88064b6053fd06ee6fc092fa55fef6bd3c28c.zip chromium_src-22b88064b6053fd06ee6fc092fa55fef6bd3c28c.tar.gz chromium_src-22b88064b6053fd06ee6fc092fa55fef6bd3c28c.tar.bz2 |
Add android specific variations some string resources.
BUG=None
TEST=None
Review URL: http://codereview.chromium.org/8228024
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@105543 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/app')
-rw-r--r-- | chrome/app/generated_resources.grd | 51 |
1 files changed, 36 insertions, 15 deletions
diff --git a/chrome/app/generated_resources.grd b/chrome/app/generated_resources.grd index 80d4654..b948444 100644 --- a/chrome/app/generated_resources.grd +++ b/chrome/app/generated_resources.grd @@ -8589,10 +8589,18 @@ Keep your key file in a safe place. You will need it to create new versions of y <message name="IDS_NEW_TAB_APPS" desc="The 'Apps' heading on the new tab page"> Apps </message> - <message name="IDS_NEW_TAB_TITLE" - desc="Title of the new tab page, this is only shown while loading, then the title comes from the page"> - New Tab - </message> + <if expr="pp_ifdef('android')"> + <message name="IDS_NEW_TAB_TITLE" + desc="For mobile devices. Do not use title case. Title of the new tab page, this is only shown while loading, then the title comes from the page."> + New tab + </message> + </if> + <if expr="not pp_ifdef('android')"> + <message name="IDS_NEW_TAB_TITLE" + desc="Title of the new tab page, this is only shown while loading, then the title comes from the page"> + New Tab + </message> + </if> <message name="IDS_NEW_TAB_MOST_VISITED" desc="The 'Most Visited' heading on the new tab page"> Most visited @@ -14054,17 +14062,30 @@ Keep your key file in a safe place. You will need it to create new versions of y </message> <!-- Quota messages --> - <message name="IDS_REQUEST_QUOTA_INFOBAR_QUESTION" desc="Question asked on the info bar whenever webapp requests new (larger) quota to persistently store data on the user's local computer (e.g. for persistent-type filesystem)."> - <ph name="URL"> - $1<ex>html5rocks.com</ex> - </ph> wants to permanently store data on your local computer. - </message> - <message name="IDS_REQUEST_LARGE_QUOTA_INFOBAR_QUESTION" desc="Question asked on the info bar whenever webapp requests new (larger) quota to persistently store large data on the user's local computer (e.g. for persistent-type filesystem)."> - <ph name="URL"> - $1<ex>html5rocks.com</ex> - </ph> wants to permanently store large data on your local computer. - </message> - + <if expr="pp_ifdef('android')"> + <message name="IDS_REQUEST_QUOTA_INFOBAR_QUESTION" desc="For mobile device. Question asked on the info bar whenever webapp requests new (larger) quota to persistently store data on the mobile device (e.g. for persistent-type filesystem)."> + <ph name="URL"> + $1<ex>html5rocks.com</ex> + </ph> wants to permanently store data on your mobile device. + </message> + <message name="IDS_REQUEST_LARGE_QUOTA_INFOBAR_QUESTION" desc="For mobile device. Question asked on the info bar whenever webapp requests new (larger) quota to persistently store large data on the user's mobile device (e.g. for persistent-type filesystem)."> + <ph name="URL"> + $1<ex>html5rocks.com</ex> + </ph> wants to permanently store large data on your mobile device. + </message> + </if> + <if expr="not pp_ifdef('android')"> + <message name="IDS_REQUEST_QUOTA_INFOBAR_QUESTION" desc="Question asked on the info bar whenever webapp requests new (larger) quota to persistently store data on the user's local computer (e.g. for persistent-type filesystem)."> + <ph name="URL"> + $1<ex>html5rocks.com</ex> + </ph> wants to permanently store data on your local computer. + </message> + <message name="IDS_REQUEST_LARGE_QUOTA_INFOBAR_QUESTION" desc="Question asked on the info bar whenever webapp requests new (larger) quota to persistently store large data on the user's local computer (e.g. for persistent-type filesystem)."> + <ph name="URL"> + $1<ex>html5rocks.com</ex> + </ph> wants to permanently store large data on your local computer. + </message> + </if> <!-- Manage Profile Dialog --> <if expr="pp_ifdef('use_titlecase')"> <message name="IDS_PROFILES_MANAGE_TITLE" desc="In Title Case: Title of the manage profile dialog"> |