blob: 5ed64b707dc7ddb96db594946485ca0e07db303c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright 2014 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<!--User-facing strings for the Android app-->
<!--TODO(solb) Merge in with localized strings-->
<resources>
<!--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>
|