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: remoting/resources/strings.xml

Issue 19506004: Add the beginnings of a Chromoting Android app (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Minimize monitor use, concatenate using StringBuilder, tune host list spacing, make build target re… Created 7 years, 5 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 | « remoting/resources/layout/main.xml ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
2 <!--User-facing strings for the Android app-->
3 <!--TODO(solb) Merge in with localized strings-->
4 <resources>
5 <!--Application-wide attributes-->
6 <string name="app_name">Chromoting</string>
7
8 <!--Instructional blurbs-->
9 <string name="inst_host_list">My computers:</string>
10
11 <!--Dialog box messages-->
12 <string name="pin_entry_title">Authenticate to host</string>
13 <string name="pin_entry_message">Enter the host\'s PIN</string>
14 <string name="pin_entry_connect">Connect</string>
15 <string name="pin_entry_cancel">Cancel</string>
16
17 <!--Informative messages-->
18 <string name="msg_pin_canceled">No PIN was provided, so the connection attem pt was canceled</string>
19 <string name="msg_pin_entered">Attempting to authenticate to specified host with provided PIN</string>
20
21 <!--Error messages-->
22 <string name="error_unknown">Unexpected error</string>
23 <string name="error_auth_canceled">Authentication prompt canceled by user</s tring>
24 <string name="error_no_accounts">Device not linked to any Google accounts</s tring>
25 <string name="error_auth_failed">Authentication with specified account faile d</string>
26 <string name="error_cataloging_hosts">Unable to display host list</string>
27 <string name="error_displaying_host">Unable to display host entry</string>
28 <string name="error_unexpected_response">Unexpected response from directory server</string>
29 <string name="error_reading_host">Unable to read host entry</string>
30
31 <!--Protocol states (see remoting/protocol/connection_to_host.h)-->
32 <string-array name="protoc_states">
33 <item>Initializing protocol</item>
34 <item>Connecting to host</item>
35 <item>Authenticated to host</item>
36 <item>Connected to host</item>
37 <item>Connection failed</item>
38 <item>Connection closed</item>
39 </string-array>
40
41 <!--Protocol errors (see remoting/protocol/errors.h)-->
42 <string-array name="protoc_errors">
43 <item></item>
44 <item>Host is offline</item>
45 <item>Host rejected connection</item>
46 <item>Host using incompatible protocol</item>
47 <item>Host rejected authentication</item>
48 <item>Unable to establish data channel</item>
49 <item>Bad signal</item>
50 <item>Signal timed out</item>
51 <item>Host received too many bad PINs</item>
52 <item>Unknown error</item>
53 </string-array>
54 </resources>
OLDNEW
« no previous file with comments | « remoting/resources/layout/main.xml ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698