From: masensio Date: Wed, 12 Mar 2014 07:44:56 +0000 (+0100) Subject: Merge branch 'develop' into check_server_certificates_in_SSO_webview X-Git-Tag: oc-android-1.5.5~15^2~2 X-Git-Url: http://git.linex4red.de/pub/Android/ownCloud.git/commitdiff_plain/41efad3804f11813fb7a275d8ca916daaa52b9f4?hp=2ca8f569620deb2d63ffced1ee4a8b0a44280183 Merge branch 'develop' into check_server_certificates_in_SSO_webview --- diff --git a/res/values-de-rDE/strings.xml b/res/values-de-rDE/strings.xml index 80410e89..c50dce79 100644 --- a/res/values-de-rDE/strings.xml +++ b/res/values-de-rDE/strings.xml @@ -57,7 +57,7 @@ Datei aktualisieren Datei wurde wärend des Uploads zu %1$s umbenannt Link teilen - Link nicht mehr freigeben + Link nicht mehr teilen Ja Nein OK diff --git a/res/values-ja-rJP/strings.xml b/res/values-ja-rJP/strings.xml index 20b58fb4..ae29fe60 100644 --- a/res/values-ja-rJP/strings.xml +++ b/res/values-ja-rJP/strings.xml @@ -97,6 +97,7 @@ %1$d ファイルのコンテンツを同期できませんでした(%2$d の競合) 一部のローカルファイルが忘れられています %2$s ディレクトリ内の %1$d ファイルはコピーすることができませんでした + バージョン 1.3.16から、このデバイスからアップロードされたファイルは、単独のファイルが複数のアカウントと同期される時にデータの損失を防ぐため、ローカルの%1$sのフォルダにコピーされます。\n\nこの変更により、このアプリの以前のバージョンでアップロードされたすべてのファイルが%2$s フォルダにコピーされます。ただし、アカウント同期の際に、エラーがこの操作の完了を阻止しました。ファイルをこのままにして%3$sへのリンクを削除するか、あるいは%1$s ディレクトリにファイルを移動して%4$sへのリンクを維持することができます。\n\n以下にリストされているのは、ローカルのファイル及びそれらにリンクしている %5$s 内のリモートファイルです。 フォルダー %1$s はもう存在しません 全て移動 全てのファイルは移動されました diff --git a/res/values-ro/strings.xml b/res/values-ro/strings.xml index 7855520a..4c2b2b94 100644 --- a/res/values-ro/strings.xml +++ b/res/values-ro/strings.xml @@ -34,6 +34,7 @@ Anulare Salvare & Ieșire Eroare + Eroare necunoscută Despre Schimbă parola Șterge cont diff --git a/res/values/strings.xml b/res/values/strings.xml index 829b4bba..6967fd0c 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -166,6 +166,7 @@ Connecting to authentication server… 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 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 2fabc330..9b668698 100644 --- a/src/com/owncloud/android/authentication/AuthenticatorActivity.java +++ b/src/com/owncloud/android/authentication/AuthenticatorActivity.java @@ -815,6 +815,7 @@ public class AuthenticatorActivity extends AccountAuthenticatorActivity } private void onGetUserNameFinish(GetRemoteUserNameOperation operation, RemoteOperationResult result) { + if (result.isSuccess()) { boolean success = false; String username = operation.getUserName(); @@ -839,7 +840,7 @@ public class AuthenticatorActivity extends AccountAuthenticatorActivity if (success) finish(); } else { - updateAuthStatusIconAndText(result); + updateStatusIconFailUserName(); showAuthStatus(); Log_OC.e(TAG, "Access to user name failed: " + result.getLogMessage()); } @@ -1111,6 +1112,11 @@ public class AuthenticatorActivity extends AccountAuthenticatorActivity } + private void updateStatusIconFailUserName(){ + mAuthStatusIcon = android.R.drawable.ic_secure; + mAuthStatusText = R.string.auth_fail_get_user_name; + } + /** * Processes the result of the request for and access token send * to an OAuth authorization server.