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

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

Issue 19506004: Add the beginnings of a Chromoting Android app (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address Gary's spacing and commenting concerns 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
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
2 <!--those strings that are visible to the user-->
3 <resources>
4 <!--application-wide attributes-->
5 <string name="app_name">Chromoting</string>
6
7 <!--instructional blurbs-->
8 <string name="inst_host_list">My computers:</string>
9
10 <!--dialog box messages-->
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_connect">Connect</string>
14 <string name="pin_entry_cancel">Cancel</string>
15
16 <!--informative messages-->
17 <string name="msg_pin_canceled">No PIN was provided, so the connection a ttempt was canceled</string>
18 <string name="msg_pin_entered">Attempting to authenticate to specified h ost with provided PIN</string>
19
20 <!--error messages-->
21 <string name="error_unknown">Unexpected error</string>
22 <string name="error_auth_canceled">Authentication prompt canceled by use r</string>
23 <string name="error_no_accounts">Device not linked to any Google account s</string>
24 <string name="error_auth_failed">Authentication with specified account f ailed</string>
25 <string name="error_cataloging_hosts">Unable to display host list</strin g>
26 <string name="error_displaying_host">Unable to display host entry</strin g>
27 <string name="error_unexpected_response">Unexpected response from direct ory server</string>
28 <string name="error_reading_host">Unable to read host entry</string>
29
30 <!--protocol states (see remoting/protocol/connection_to_host.h)-->
31 <string-array name="protoc_states">
32 <item>Initializing protocol</item>
33 <item>Connecting to host</item>
34 <item>Authenticated to host</item>
35 <item>Connected to host</item>
36 <item>Connection failed</item>
37 <item>Connection closed</item>
38 </string-array>
39
40 <!--protocol errors (see remoting/protocol/errors.h)-->
41 <string-array name="protoc_errors">
42 <item></item>
43 <item>Host is offline</item>
44 <item>Host rejected connection</item>
45 <item>Host using incompatible protocol</item>
46 <item>Host rejected authentication</item>
47 <item>Unable to establish data channel</item>
48 <item>Bad signal</item>
49 <item>Signal timed out</item>
50 <item>Host received too many bad PINs</item>
51 <item>Unknown error</item>
52 </string-array>
53 </resources>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698