Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(471)

Side by Side Diff: chrome/app/chromium_strings.grd

Issue 416403006: Improve the SSL error display when the clock is wrong. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Always show the finalParagraph. Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/app/google_chrome_strings.grd » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <?xml version="1.0" encoding="UTF-8"?> 1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- This file contains definitions of strings that are distribution specific. 2 <!-- This file contains definitions of strings that are distribution specific.
3 These strings will not be translated and only english versions will 3 These strings will not be translated and only english versions will
4 be available for now. --> 4 be available for now. -->
5 5
6 <grit base_dir="." latest_public_release="0" current_release="1" 6 <grit base_dir="." latest_public_release="0" current_release="1"
7 source_lang_id="en" enc_check="möl"> 7 source_lang_id="en" enc_check="möl">
8 <outputs> 8 <outputs>
9 <output filename="grit/chromium_strings.h" type="rc_header"> 9 <output filename="grit/chromium_strings.h" type="rc_header">
10 <emit emit_type='prepend'></emit> 10 <emit emit_type='prepend'></emit>
(...skipping 1228 matching lines...) Expand 10 before | Expand all | Expand 10 after
1239 <message name="IDS_FEEDBACK_SERVICE_DIALOG_TITLE" desc="Title of the dialo g asking whether the user wants to upload suspected malicious files for analysis "> 1239 <message name="IDS_FEEDBACK_SERVICE_DIALOG_TITLE" desc="Title of the dialo g asking whether the user wants to upload suspected malicious files for analysis ">
1240 Help make Chromium better 1240 Help make Chromium better
1241 </message> 1241 </message>
1242 <message name="IDS_FEEDBACK_SERVICE_DIALOG_EXPLANATION" desc="Explanation of the dialog asking whether the user wants to upload suspected malicious files for analysis"> 1242 <message name="IDS_FEEDBACK_SERVICE_DIALOG_EXPLANATION" desc="Explanation of the dialog asking whether the user wants to upload suspected malicious files for analysis">
1243 You can help make Chromium safer and easier to use by automatically repo rting details of possible security incidents to Google. 1243 You can help make Chromium safer and easier to use by automatically repo rting details of possible security incidents to Google.
1244 </message> 1244 </message>
1245 1245
1246 <!-- SSL Interstitial V2 strings --> 1246 <!-- SSL Interstitial V2 strings -->
1247 <if expr="is_android or is_ios"> 1247 <if expr="is_android or is_ios">
1248 <message name="IDS_SSL_CLOCK_ERROR" desc="Paragraph explaining that the SSL interstitial is probably caused by an incorrect clock."> 1248 <message name="IDS_SSL_CLOCK_ERROR" desc="Paragraph explaining that the SSL interstitial is probably caused by an incorrect clock.">
1249 Chromium can't establish a private connection to &lt;strong&gt;<ph nam e="DOMAIN">$1<ex>paypal.com</ex></ph>&lt;/strong&gt;. This is probably because y our device's date is set incorrectly (<ph name="DATE">$2<ex>Jan 1, 1970</ex></ph >). You should refresh this page after <ph name="BEGIN_LINK">&lt;a href="#" id=" clock-link"&gt;</ph>you update your device's date and time<ph name="END_LINK">&l t;/a&gt;</ph>. 1249 Chromium can't establish a private connection to &lt;strong&gt;<ph nam e="DOMAIN">$1<ex>paypal.com</ex></ph>&lt;/strong&gt;. This is probably because y our device's date is set incorrectly. (Your device has the date set to <ph name= "DATE">$2<ex>Jan 1, 1970</ex></ph>.) You should refresh this page after <ph name ="BEGIN_LINK">&lt;a href="#" id="clock-link"&gt;</ph>you update your device's da te and time<ph name="END_LINK">&lt;/a&gt;</ph>.
1250 </message>
1251 <message name="IDS_SSL_CLOCK_ERROR_EXPLANATION" desc="Body text for the explanation shown for when the computer's clock is wrong.">
1252 To establish a secure network connection, your device needs a correct cl ock. This is because the authentication certificates that web sites use are issu ed for particular time periods. Since your device's clock is wrong, Chromium can not properly check certificates.
Ryan Sleevi 2014/08/20 05:03:06 Wording suggestion, felt to override: This is bec
palmer 2014/08/22 18:32:49 Done.
1250 </message> 1253 </message>
1251 </if> 1254 </if>
1252 <if expr="not is_android and not is_ios"> 1255 <if expr="not is_android and not is_ios">
1253 <message name="IDS_SSL_CLOCK_ERROR" desc="Paragraph explaining that the SSL interstitial is probably caused by an incorrect clock."> 1256 <message name="IDS_SSL_CLOCK_ERROR" desc="Paragraph explaining that the SSL interstitial is probably caused by an incorrect clock.">
1254 Chromium can't establish a private connection to &lt;strong&gt;<ph nam e="DOMAIN">$1<ex>paypal.com</ex></ph>&lt;/strong&gt;. This is probably because y our computer's date is set incorrectly (<ph name="DATE">$2<ex>Jan 1, 1970</ex></ ph>). You should refresh this page after <ph name="BEGIN_LINK">&lt;a href="#" id ="clock-link"&gt;</ph>you update your computer's date and time<ph name="END_LINK ">&lt;/a&gt;</ph>. 1257 Chromium can't establish a private connection to &lt;strong&gt;<ph nam e="DOMAIN">$1<ex>paypal.com</ex></ph>&lt;/strong&gt;. This is probably because y our computer's date is set incorrectly. (Your computer has the date set to <ph n ame="DATE">$2<ex>Jan 1, 1970</ex></ph>.) You should refresh this page after <ph name="BEGIN_LINK">&lt;a href="#" id="clock-link"&gt;</ph>you update your compute r's date and time<ph name="END_LINK">&lt;/a&gt;</ph>.
1258 </message>
1259 <message name="IDS_SSL_CLOCK_ERROR_EXPLANATION" desc="Body text for the explanation shown for when the computer's clock is wrong.">
1260 To establish a secure network connection, your computer needs a correct clock. This is because the authentication certificates that web sites use are is sued for particular time periods. Since your computer's clock is wrong, Chromium cannot properly check certificates.
Ryan Sleevi 2014/08/20 05:03:07 Ditto
palmer 2014/08/22 18:32:49 Done.
1255 </message> 1261 </message>
1256 </if> 1262 </if>
1263
1257 <message name="IDS_SSL_NONOVERRIDABLE_MORE_INVALID_SP3" desc="Body text fo r the explanation shown if the user clicks on the details windows, the certifica te is invalid and the user has an old version of Windows (before WINDOWS XP SP3) running."> 1264 <message name="IDS_SSL_NONOVERRIDABLE_MORE_INVALID_SP3" desc="Body text fo r the explanation shown if the user clicks on the details windows, the certifica te is invalid and the user has an old version of Windows (before WINDOWS XP SP3) running.">
1258 Your computer is running an old version of Microsoft Windows that cannot p rocess this website's security certificate. Because of this problem, Chromium ca n't tell whether the certificate came from <ph name="SITE">$1<ex>google.com</ex> </ph> or from someone on your network pretending to be <ph name="SITE">$1<ex>goo gle.com</ex></ph>. Please update your computer to a more recent version of Windo ws. 1265 Your computer is running an old version of Microsoft Windows that cannot p rocess this website's security certificate. Because of this problem, Chromium ca n't tell whether the certificate came from <ph name="SITE">$1<ex>google.com</ex> </ph> or from someone on your network pretending to be <ph name="SITE">$1<ex>goo gle.com</ex></ph>. Please update your computer to a more recent version of Windo ws.
1259 </message> 1266 </message>
1260 1267
1261 <!-- OOBE --> 1268 <!-- OOBE -->
1262 <if expr="chromeos"> 1269 <if expr="chromeos">
1263 <message name="IDS_INSTALLING_UPDATE" desc="Label shown on the updates i nstallation screen during OOBE"> 1270 <message name="IDS_INSTALLING_UPDATE" desc="Label shown on the updates i nstallation screen during OOBE">
1264 Please wait while Chromium installs the latest system updates. 1271 Please wait while Chromium installs the latest system updates.
1265 </message> 1272 </message>
1266 <message name="IDS_CHECKING_FOR_UPDATE_MSG" desc="Chrome OS OOBE: messag e shown during checking for update stage."> 1273 <message name="IDS_CHECKING_FOR_UPDATE_MSG" desc="Chrome OS OOBE: messag e shown during checking for update stage.">
1267 Chromium updates automatically so you always have the freshest version . 1274 Chromium updates automatically so you always have the freshest version .
1268 </message> 1275 </message>
1269 <message name="IDS_UPDATE_MSG" desc="Chrome OS OOBE: message shown durin g update stage."> 1276 <message name="IDS_UPDATE_MSG" desc="Chrome OS OOBE: message shown durin g update stage.">
1270 Chromium updates automatically so you always have the freshest version . When this download completes, Chromium will restart and you'll be on your way. 1277 Chromium updates automatically so you always have the freshest version . When this download completes, Chromium will restart and you'll be on your way.
1271 </message> 1278 </message>
1272 <message name="IDS_EULA_SCREEN_ACCESSIBLE_TITLE" desc="Title to be spoke n on opening the OOBE EULA screen"> 1279 <message name="IDS_EULA_SCREEN_ACCESSIBLE_TITLE" desc="Title to be spoke n on opening the OOBE EULA screen">
1273 Chromium OS terms 1280 Chromium OS terms
1274 </message> 1281 </message>
1275 </if> 1282 </if>
1276 1283
1277 </messages> 1284 </messages>
1278 </release> 1285 </release>
1279 </grit> 1286 </grit>
OLDNEW
« no previous file with comments | « no previous file | chrome/app/google_chrome_strings.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698