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