OLD | NEW |
| (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 <!--Instructional blurbs--> | |
6 <string name="inst_host_list">My computers:</string> | |
7 <string name="inst_empty_list">There are no computers to display</string> | |
8 | |
9 <!--Dialog box messages--> | |
10 <string name="progress_title">Starting remote desktop session</string> | |
11 <string name="pin_entry_title">Authenticate to host</string> | |
12 <string name="pin_entry_message">Enter the host\'s PIN</string> | |
13 <string name="pin_entry_pair">Don\'t ask in the future</string> | |
14 <string name="pin_entry_connect">Connect</string> | |
15 <string name="pin_entry_cancel">Cancel</string> | |
16 | |
17 <!--Action bar buttons--> | |
18 <string name="actionbar_directoryrefresh">Refresh</string> | |
19 <string name="actionbar_accountswitcher">Accounts</string> | |
20 <string name="actionbar_disconnect">Disconnect</string> | |
21 <string name="actionbar_hide">Hide</string> | |
22 <string name="actionbar_keyboard">Keyboard</string> | |
23 <string name="actionbar_send_ctrl_alt_del">Send Ctrl-Alt-Del</string> | |
24 | |
25 <!--Informative messages--> | |
26 <string name="msg_pin_canceled">No PIN was provided, so the connection attem
pt was canceled</string> | |
27 <string name="msg_pin_entered">Attempting to authenticate to specified host
with provided PIN</string> | |
28 | |
29 <!--Error messages--> | |
30 <string name="error_unknown">Unexpected error</string> | |
31 <string name="error_auth_canceled">Authentication prompt canceled by user</s
tring> | |
32 <string name="error_no_accounts">Device not linked to any Google accounts</s
tring> | |
33 <string name="error_auth_failed">Authentication with specified account faile
d</string> | |
34 <string name="error_bad_connection">No network connection</string> | |
35 <string name="error_cataloging_hosts">Unable to display host list</string> | |
36 <string name="error_displaying_host">Unable to display host entry</string> | |
37 <string name="error_unexpected_response">Account has no remote desktop hosts
registered</string> | |
38 <string name="error_reading_host">Unable to read host entry</string> | |
39 | |
40 <!--Protocol states (see remoting/protocol/connection_to_host.h)--> | |
41 <string-array name="protoc_states"> | |
42 <item>Initializing protocol</item> | |
43 <item>Connecting to host</item> | |
44 <item>Authenticated to host</item> | |
45 <item>Connected to host</item> | |
46 <item>Connection failed</item> | |
47 <item>Connection closed</item> | |
48 </string-array> | |
49 | |
50 <!--Protocol errors (see remoting/protocol/errors.h)--> | |
51 <string-array name="protoc_errors"> | |
52 <item></item> | |
53 <item>Host is offline</item> | |
54 <item>Host rejected connection</item> | |
55 <item>Host using incompatible protocol</item> | |
56 <item>Host rejected authentication</item> | |
57 <item>Unable to establish data channel</item> | |
58 <item>Bad signal</item> | |
59 <item>Signal timed out</item> | |
60 <item>Host received too many bad PINs</item> | |
61 <item>Unknown error</item> | |
62 </string-array> | |
63 </resources> | |
OLD | NEW |