aboutsummaryrefslogtreecommitdiffstats
path: root/app/src/main/res/values/strings.xml
diff options
context:
space:
mode:
authorKenny Root <kenny@the-b.org>2015-07-29 15:36:12 -0700
committerKenny Root <kenny@the-b.org>2015-07-29 15:36:12 -0700
commit04cc6035047e2443580ce830b30a97d8f3632a6b (patch)
tree6c586b9606b6cb7d5079e43c1e4774a9a6d92a30 /app/src/main/res/values/strings.xml
parent4c587389790963ca8d72fae0e4907611abc55360 (diff)
downloadconnectbot-04cc6035047e2443580ce830b30a97d8f3632a6b.tar.gz
connectbot-04cc6035047e2443580ce830b30a97d8f3632a6b.tar.bz2
connectbot-04cc6035047e2443580ce830b30a97d8f3632a6b.zip
Filter out lint false positive
Diffstat (limited to 'app/src/main/res/values/strings.xml')
-rw-r--r--app/src/main/res/values/strings.xml5
1 files changed, 3 insertions, 2 deletions
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index a9141ca..0b6860a 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -18,7 +18,8 @@
*/
-->
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"
+ xmlns:tools="http://schemas.android.com/tools">
<!-- Summary of what ConnectBot is; used as a short description in the Android running apps list -->
<string name="app_desc">"Simple, powerful, open-source SSH client."</string>
@@ -435,7 +436,7 @@
<!-- Displayed in terminal when attempting to connect to a host. The first two
variables are host:port and the third is the protocol (e.g., SSH) -->
- <string name="terminal_connecting">"Connecting to %1$s:%2$d via %3$s"</string>
+ <string name="terminal_connecting" tools:ignore="PluralsCandidate">"Connecting to %1$s:%2$d via %3$s"</string>
<!-- Displays the host key to the user in the terminal -->
<string name="terminal_sucess">"Verified host '%1$s' key: %2$s"</string>