Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!--User-facing strings for the Android app--> | 2 <!--User-facing strings for the Android app--> |
| 3 <!--TODO(solb) Merge in with localized strings--> | 3 <!--TODO(solb) Merge in with localized strings--> |
| 4 <resources> | 4 <resources> |
| 5 <!--Application-wide attributes--> | 5 <!--Application-wide attributes--> |
| 6 <string name="app_name">Chromoting</string> | 6 <string name="app_name">Chromoting</string> |
| 7 | 7 |
| 8 <!--Instructional blurbs--> | 8 <!--Instructional blurbs--> |
| 9 <string name="inst_host_list">My computers:</string> | 9 <string name="inst_host_list">My computers:</string> |
| 10 | 10 |
| 11 <!--Dialog box messages--> | 11 <!--Dialog box messages--> |
| 12 <string name="pin_entry_title">Authenticate to host</string> | 12 <string name="pin_entry_title">Authenticate to host</string> |
| 13 <string name="pin_entry_message">Enter the host\'s PIN</string> | 13 <string name="pin_entry_message">Enter the host\'s PIN</string> |
| 14 <string name="pin_entry_connect">Connect</string> | 14 <string name="pin_entry_connect">Connect</string> |
| 15 <string name="pin_entry_cancel">Cancel</string> | 15 <string name="pin_entry_cancel">Cancel</string> |
| 16 | 16 |
| 17 <!--Informative messages--> | 17 <!--Informative messages--> |
| 18 <string name="msg_pin_canceled">No PIN was provided, so the connection attem pt was canceled</string> | 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> | 19 <string name="msg_pin_entered">Attempting to authenticate to specified host with provided PIN</string> |
| 20 | 20 |
| 21 <!--Error messages--> | 21 <!--Error messages--> |
| 22 <string name="error_unknown">Unexpected error</string> | 22 <string name="error_unknown">Unexpected error</string> |
| 23 <string name="error_auth_canceled">Authentication prompt canceled by user</s tring> | 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> | 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> | 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> | 26 <string name="error_cataloging_hosts">Unable to display host list</string> |
| 27 <string name="error_displaying_host">Unable to display host entry</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> | 28 <string name="error_unexpected_response">No hosts registered with that accou nt</string> |
|
Wez
2013/07/23 03:53:06
Was this supposed to be in this CL?
| |
| 29 <string name="error_reading_host">Unable to read host entry</string> | 29 <string name="error_reading_host">Unable to read host entry</string> |
| 30 | 30 |
| 31 <!--Protocol states (see remoting/protocol/connection_to_host.h)--> | 31 <!--Protocol states (see remoting/protocol/connection_to_host.h)--> |
| 32 <string-array name="protoc_states"> | 32 <string-array name="protoc_states"> |
| 33 <item>Initializing protocol</item> | 33 <item>Initializing protocol</item> |
| 34 <item>Connecting to host</item> | 34 <item>Connecting to host</item> |
| 35 <item>Authenticated to host</item> | 35 <item>Authenticated to host</item> |
| 36 <item>Connected to host</item> | 36 <item>Connected to host</item> |
| 37 <item>Connection failed</item> | 37 <item>Connection failed</item> |
| 38 <item>Connection closed</item> | 38 <item>Connection closed</item> |
| 39 </string-array> | 39 </string-array> |
| 40 | 40 |
| 41 <!--Protocol errors (see remoting/protocol/errors.h)--> | 41 <!--Protocol errors (see remoting/protocol/errors.h)--> |
| 42 <string-array name="protoc_errors"> | 42 <string-array name="protoc_errors"> |
| 43 <item></item> | 43 <item></item> |
| 44 <item>Host is offline</item> | 44 <item>Host is offline</item> |
| 45 <item>Host rejected connection</item> | 45 <item>Host rejected connection</item> |
| 46 <item>Host using incompatible protocol</item> | 46 <item>Host using incompatible protocol</item> |
| 47 <item>Host rejected authentication</item> | 47 <item>Host rejected authentication</item> |
| 48 <item>Unable to establish data channel</item> | 48 <item>Unable to establish data channel</item> |
| 49 <item>Bad signal</item> | 49 <item>Bad signal</item> |
| 50 <item>Signal timed out</item> | 50 <item>Signal timed out</item> |
| 51 <item>Host received too many bad PINs</item> | 51 <item>Host received too many bad PINs</item> |
| 52 <item>Unknown error</item> | 52 <item>Unknown error</item> |
| 53 </string-array> | 53 </string-array> |
| 54 </resources> | 54 </resources> |
| OLD | NEW |