From b0cfec7a00f7a9219261b3cd74a510bdceedfb1e Mon Sep 17 00:00:00 2001 From: masensio Date: Thu, 20 Mar 2014 09:08:02 +0100 Subject: [PATCH] Add auth_unsupported_basic_auth string --- res/values/strings.xml | 1 + .../owncloud/android/authentication/AuthenticatorActivity.java | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/res/values/strings.xml b/res/values/strings.xml index 84d9f0c6b7..81d2581570 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -167,6 +167,7 @@ The server does not support this authentication method %1$s does not support multiple accounts Your server is not returning a correct user id, contact with your admin please + Can not authenticate against this server Keep file up to date Rename diff --git a/src/com/owncloud/android/authentication/AuthenticatorActivity.java b/src/com/owncloud/android/authentication/AuthenticatorActivity.java index 33ddbf731f..60bec63a21 100644 --- a/src/com/owncloud/android/authentication/AuthenticatorActivity.java +++ b/src/com/owncloud/android/authentication/AuthenticatorActivity.java @@ -1149,7 +1149,7 @@ public class AuthenticatorActivity extends AccountAuthenticatorActivity private void updateServerStatusIconNoRegularAuth(){ mServerStatusIcon = R.drawable.common_error; - mServerStatusText = R.string.auth_unsupported_auth_method; + mServerStatusText = R.string.auth_unsupported_basic_auth; } /**