diff options
author | zelidrag@chromium.org <zelidrag@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-22 02:17:56 +0000 |
---|---|---|
committer | zelidrag@chromium.org <zelidrag@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-22 02:17:56 +0000 |
commit | bd443a5415adab148b10416c6a4f8050fbe54271 (patch) | |
tree | 54ee3644fb7418d904f3ce6ee1cbc153c03282fc | |
parent | d636be3840b26f0b886d2313c810c1f9057bbfdd (diff) | |
download | chromium_src-bd443a5415adab148b10416c6a4f8050fbe54271.zip chromium_src-bd443a5415adab148b10416c6a4f8050fbe54271.tar.gz chromium_src-bd443a5415adab148b10416c6a4f8050fbe54271.tar.bz2 |
Fixed format strings from my original CL at http://codereview.chromium.org/546091
BUG=32719
TBR=pkasting
TEST=none
Review URL: http://codereview.chromium.org/543160
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@36836 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/app/generated_resources.grd | 13 | ||||
-rw-r--r-- | chrome/app/resources/locale_settings.grd | 7 |
2 files changed, 11 insertions, 9 deletions
diff --git a/chrome/app/generated_resources.grd b/chrome/app/generated_resources.grd index 35bbdbe..30a8ff2 100644 --- a/chrome/app/generated_resources.grd +++ b/chrome/app/generated_resources.grd @@ -3535,9 +3535,6 @@ Keep your key file in a safe place. You will need it to create new versions of y <message name="IDS_FLASH_STORAGE_SETTINGS" desc="Link for opening Adobe Flash storage settings"> Adobe Flash storage settings... </message> - <message name="IDS_FLASH_STORAGE_URL" desc="URL for opening Adobe Flash storage settings - please replace en in the original URL with code matching the target language and make sure url does actually exist."> - http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager07.html - </message> <message name="IDS_CLEAR_DATA_DAY" desc="deletion period combo box: day"> Last day </message> @@ -3671,19 +3668,19 @@ Keep your key file in a safe place. You will need it to create new versions of y <!-- Cookie alert dialog --> <message name="IDS_COOKIE_ALERT_TITLE" desc="Format string for cookie alert dialog title"> - Cookie from <ph name="HOST">%s<ex>www.google.com</ex></ph> + Cookie from <ph name="HOST">$1<ex>www.google.com</ex></ph> </message> <message name="IDS_DATA_ALERT_TITLE" desc="Format string for data storing alert dialog title"> - Data from <ph name="HOST">%s<ex>www.google.com</ex></ph> + Data from <ph name="HOST">$1<ex>www.google.com</ex></ph> </message> <message name="IDS_COOKIE_ALERT_LABEL" desc="Format string for a label on top of cookie alert dialog"> - <ph name="HOST">%s<ex>www.google.com</ex></ph> wants to create a cookie on your computer. + <ph name="HOST">$1<ex>www.google.com</ex></ph> wants to create a cookie on your computer. </message> <message name="IDS_DATA_ALERT_LABEL" desc="Format string for a label on top of data storing alert dialog"> - <ph name="HOST">%s<ex>www.google.com</ex></ph> wants to set data on your computer. + <ph name="HOST">$1<ex>www.google.com</ex></ph> wants to set data on your computer. </message> <message name="IDS_COOKIE_ALERT_REMEMBER_RADIO" desc="Format string for a radio button for accepting all cookies on cookie alert dialog"> - Remember my choice for all cookies and site data from <ph name="HOST">%s<ex>www.google.com</ex></ph> + Remember my choice for all cookies and site data from <ph name="HOST">$1<ex>www.google.com</ex></ph> </message> <message name="IDS_COOKIE_ALERT_ASK_RADIO" desc="A radio button label for asking for cookie storing permission every time."> Ask me every time diff --git a/chrome/app/resources/locale_settings.grd b/chrome/app/resources/locale_settings.grd index 99e6e70..e4dd5f9 100644 --- a/chrome/app/resources/locale_settings.grd +++ b/chrome/app/resources/locale_settings.grd @@ -631,7 +631,12 @@ <message name="IDS_CHROME_WELCOME_URL" translateable="false"> http://www.google.com/chrome/intl/[GRITLANGCODE]/welcome.html </message> - + + <!-- The URL for Adobe Flash storage settings --> + <message name="IDS_FLASH_STORAGE_URL" desc="URL for opening Adobe Flash storage settings - please replace en in the original URL with code matching the target language and make sure url does actually exist."> + http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager07.html + </message> + <!-- The width of the sync setup wizard / login dialog in characters. --> <message name="IDS_SYNC_SETUP_WIZARD_WIDTH_CHARS" use_name_for_id="true"> 46 |