OLD | NEW |
| (Empty) |
1 <?xml version="1.0" encoding="utf-8"?> | |
2 | |
3 <!-- Copyright 2014 The Chromium Authors. All rights reserved. | |
4 Use of this source code is governed by a BSD-style license that can be | |
5 found in the LICENSE file. | |
6 --> | |
7 | |
8 <!--User-facing strings for the Android app--> | |
9 <!--TODO(solb) Merge in with localized strings--> | |
10 <resources> | |
11 <!--Protocol states (see remoting/protocol/connection_to_host.h)--> | |
12 <string-array name="protoc_states"> | |
13 <item>Initializing protocol</item> | |
14 <item>Connecting to host</item> | |
15 <item>Authenticated to host</item> | |
16 <item>Connected to host</item> | |
17 <item>Connection failed</item> | |
18 <item>Connection closed</item> | |
19 </string-array> | |
20 | |
21 <!--Protocol errors (see remoting/protocol/errors.h)--> | |
22 <string-array name="protoc_errors"> | |
23 <item></item> | |
24 <item>Host is offline</item> | |
25 <item>Host rejected connection</item> | |
26 <item>Host using incompatible protocol</item> | |
27 <item>Host rejected authentication</item> | |
28 <item>Unable to establish data channel</item> | |
29 <item>Bad signal</item> | |
30 <item>Signal timed out</item> | |
31 <item>Host received too many bad PINs</item> | |
32 <item>Unknown error</item> | |
33 </string-array> | |
34 </resources> | |
OLD | NEW |