Commit 4d2d50a8 authored by Nicolas Ouellet-payeur's avatar Nicolas Ouellet-payeur Committed by Commit Bot

Update chrome://browser-switch strings

Also fixes an issue where the Chromium string and the Google Chrome
string didn't match.

Change-Id: I92726d0e4bfbaf4872ea5d0a4389b0225ae7dba9
Reviewed-on: https://chromium-review.googlesource.com/c/1484078
Commit-Queue: Nicolas Ouellet-Payeur <nicolaso@chromium.org>
Reviewed-by: default avatarJulian Pastarmov <pastarmovj@chromium.org>
Cr-Commit-Position: refs/heads/master@{#636492}
parent 634ce5fb
...@@ -692,7 +692,7 @@ Signing in anyway will merge Chromium information like bookmarks, history, and o ...@@ -692,7 +692,7 @@ Signing in anyway will merge Chromium information like bookmarks, history, and o
<!-- about:browser-switch strings --> <!-- about:browser-switch strings -->
<if expr="is_win or is_macosx or (is_linux and not is_chromeos)"> <if expr="is_win or is_macosx or (is_linux and not is_chromeos)">
<message name="IDS_ABOUT_BROWSER_SWITCH_DESCRIPTION" desc="Description shown while waiting for an alternative browser to open"> <message name="IDS_ABOUT_BROWSER_SWITCH_DESCRIPTION" desc="Description shown while waiting for an alternative browser to open">
Your system administrator has configured Chromium to open an alternate browser. Your system administrator has configured Chromium to open an alternative browser to access <ph name="TARGET_URL_HOSTNAME">$1<ex>example.com</ex></ph>.
</message> </message>
</if> </if>
......
...@@ -703,7 +703,7 @@ Signing in anyway will merge Chrome information like bookmarks, history, and oth ...@@ -703,7 +703,7 @@ Signing in anyway will merge Chrome information like bookmarks, history, and oth
<!-- about:browser-switch strings --> <!-- about:browser-switch strings -->
<if expr="is_win or is_macosx or (is_linux and not is_chromeos)"> <if expr="is_win or is_macosx or (is_linux and not is_chromeos)">
<message name="IDS_ABOUT_BROWSER_SWITCH_DESCRIPTION" desc="Description shown while waiting for an alternative browser to open"> <message name="IDS_ABOUT_BROWSER_SWITCH_DESCRIPTION" desc="Description shown while waiting for an alternative browser to open">
Your system administrator has configured Google Chrome to open an alternate browser to access <ph name="URL">$1<ex>http://example.com/</ex></ph>. Your system administrator has configured Google Chrome to open an alternative browser to access <ph name="TARGET_URL_HOSTNAME">$1<ex>example.com</ex></ph>.
</message> </message>
</if> </if>
......
...@@ -123,7 +123,7 @@ Polymer({ ...@@ -123,7 +123,7 @@ Polymer({
if (this.error_) { if (this.error_) {
return this.i18n(this.error_, getUrlHostname(this.url_)); return this.i18n(this.error_, getUrlHostname(this.url_));
} }
return this.i18n('description'); return this.i18n('description', getUrlHostname(this.url_));
}, },
}); });
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment