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

Side by Side Diff: chrome/android/java/res/values/strings.xml

Issue 12045081: Android implementation of WebsiteSettingsUi (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix memory leak Created 7 years, 11 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
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 <!-- Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 3
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. 5 found in the LICENSE file.
6 --> 6 -->
7 7
8 <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xlif f="urn:oasis:names:tc:xliff:document:1.2"> 8 <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xlif f="urn:oasis:names:tc:xliff:document:1.2">
9 <!-- Popup button for user to confirm a beforeunload dialog box triggered by a page navigation, 9 <!-- Popup button for user to confirm a beforeunload dialog box triggered by a page navigation,
10 i.e. they want to leave the current page [CHAR-LIMIT=20] --> 10 i.e. they want to leave the current page [CHAR-LIMIT=20] -->
(...skipping 16 matching lines...) Expand all
27 event. [CHAR-LIMIT=12] --> 27 event. [CHAR-LIMIT=12] -->
28 <string name="js_modal_dialog_confirm">OK</string> 28 <string name="js_modal_dialog_confirm">OK</string>
29 <!-- Standard popup button for allowing user to cancel some webpage event. 29 <!-- Standard popup button for allowing user to cancel some webpage event.
30 [CHAR-LIMIT=12] --> 30 [CHAR-LIMIT=12] -->
31 <string name="js_modal_dialog_cancel">Cancel</string> 31 <string name="js_modal_dialog_cancel">Cancel</string>
32 <!-- Checkbox allowing users to forgoe an additional prompts from a web 32 <!-- Checkbox allowing users to forgoe an additional prompts from a web
33 page. [CHAR-LIMIT=None] --> 33 page. [CHAR-LIMIT=None] -->
34 <string name="suppress_js_modal_dialogs">Prevent this page from creating add itional dialogs</string> 34 <string name="suppress_js_modal_dialogs">Prevent this page from creating add itional dialogs</string>
35 <!-- Content description for the input javascript modal dialog prompt. [CHAR -LIMIT=32] --> 35 <!-- Content description for the input javascript modal dialog prompt. [CHAR -LIMIT=32] -->
36 <string name="accessibility_js_modal_dialog_prompt">Prompt</string> 36 <string name="accessibility_js_modal_dialog_prompt">Prompt</string>
37
38 <!-- certificate viewer -->
39 <!-- Link to show more info on what the website settings info items mean [CH AR-LIMIT=64] -->
40 <string name="website_settings_more_info">What do these mean?</string>
41 <!-- Dialog box title for viewing security certificates. [CHAR-LIMIT=32] -->
42 <string name="certtitle">Certificate Viewer</string>
43 <!-- Text field describing to who a security certificate was issued.
44 [CHAR-LIMIT=32] -->
45 <string name="certissuedto">Issued To</string>
46 <!-- NO DESCRIPTION [CHAR-LIMIT=32] -->
Ted C 2013/01/25 02:04:05 are these NO_DESCRIPTIONs on purpose?
Yaron 2013/01/25 19:25:17 Changed to using native strings.
47 <string name="certcn">Common Name (CN)</string>
48 <!-- NO DESCRIPTION [CHAR-LIMIT=32] -->
49 <string name="certo">Organization (O)</string>
50 <!-- NO DESCRIPTION [CHAR-LIMIT=32] -->
51 <string name="certou">Organizational Unit (OU)</string>
52 <!-- NO DESCRIPTION [CHAR-LIMIT=32] -->
53 <string name="certsn">Serial Number</string>
54 <!-- NO DESCRIPTION [CHAR-LIMIT=32] -->
55 <string name="certissuedby">Issued By</string>
56 <!-- NO DESCRIPTION [CHAR-LIMIT=32] -->
57 <string name="certvalidity">Validity Period</string>
58 <!-- NO DESCRIPTION [CHAR-LIMIT=32] -->
59 <string name="certissuedon">Issued On</string>
60 <!-- NO DESCRIPTION [CHAR-LIMIT=32] -->
61 <string name="certexpireson">Expires On</string>
62
37 </resources> 63 </resources>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698