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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: remoting/android/java/res/values/strings.xml
diff --git a/remoting/android/java/res/values/strings.xml b/remoting/android/java/res/values/strings.xml
new file mode 100644
index 0000000000000000000000000000000000000000..bbdbe63cec448585df7ed00e60c7647f4378d756
--- /dev/null
+++ b/remoting/android/java/res/values/strings.xml
@@ -0,0 +1,53 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--those strings that are visible to the user-->
+<resources>
+ <!--application-wide attributes-->
+ <string name="app_name">Chromoting</string>
+
+ <!--instructional blurbs-->
+ <string name="inst_host_list">My computers:</string>
+
+ <!--dialog box messages-->
+ <string name="pin_entry_title">Authenticate to host</string>
+ <string name="pin_entry_message">Enter the host\'s PIN</string>
+ <string name="pin_entry_connect">Connect</string>
+ <string name="pin_entry_cancel">Cancel</string>
+
+ <!--informative messages-->
+ <string name="msg_pin_canceled">No PIN was provided, so the connection attempt was canceled</string>
+ <string name="msg_pin_entered">Attempting to authenticate to specified host with provided PIN</string>
+
+ <!--error messages-->
+ <string name="error_unknown">Unexpected error</string>
+ <string name="error_auth_canceled">Authentication prompt canceled by user</string>
+ <string name="error_no_accounts">Device not linked to any Google accounts</string>
+ <string name="error_auth_failed">Authentication with specified account failed</string>
+ <string name="error_cataloging_hosts">Unable to display host list</string>
+ <string name="error_displaying_host">Unable to display host entry</string>
+ <string name="error_unexpected_response">Unexpected response from directory server</string>
+ <string name="error_reading_host">Unable to read host entry</string>
+
+ <!--protocol states (see remoting/protocol/connection_to_host.h)-->
+ <string-array name="protoc_states">
+ <item>Initializing protocol</item>
+ <item>Connecting to host</item>
+ <item>Authenticated to host</item>
+ <item>Connected to host</item>
+ <item>Connection failed</item>
+ <item>Connection closed</item>
+ </string-array>
+
+ <!--protocol errors (see remoting/protocol/errors.h)-->
+ <string-array name="protoc_errors">
+ <item></item>
+ <item>Host is offline</item>
+ <item>Host rejected connection</item>
+ <item>Host using incompatible protocol</item>
+ <item>Host rejected authentication</item>
+ <item>Unable to establish data channel</item>
+ <item>Bad signal</item>
+ <item>Signal timed out</item>
+ <item>Host received too many bad PINs</item>
+ <item>Unknown error</item>
+ </string-array>
+</resources>

Powered by Google App Engine
This is Rietveld 408576698