Merge branch 'develop' into check_server_certificates_in_SSO_webview

This commit is contained in:
masensio 2014-03-12 08:44:56 +01:00
commit 41efad3804
5 changed files with 11 additions and 2 deletions

View file

@ -57,7 +57,7 @@
<string name="filedetails_sync_file">Datei aktualisieren</string>
<string name="filedetails_renamed_in_upload_msg">Datei wurde wärend des Uploads zu %1$s umbenannt</string>
<string name="action_share_file">Link teilen</string>
<string name="action_unshare_file">Link nicht mehr freigeben</string>
<string name="action_unshare_file">Link nicht mehr teilen</string>
<string name="common_yes">Ja</string>
<string name="common_no">Nein</string>
<string name="common_ok">OK</string>

View file

@ -97,6 +97,7 @@
<string name="sync_fail_in_favourites_content">%1$d ファイルのコンテンツを同期できませんでした(%2$d の競合)</string>
<string name="sync_foreign_files_forgotten_ticker">一部のローカルファイルが忘れられています</string>
<string name="sync_foreign_files_forgotten_content">%2$s ディレクトリ内の %1$d ファイルはコピーすることができませんでした</string>
<string name="sync_foreign_files_forgotten_explanation">バージョン 1.3.16から、このデバイスからアップロードされたファイルは、単独のファイルが複数のアカウントと同期される時にデータの損失を防ぐため、ローカルの%1$sのフォルダにコピーされます。\n\nこの変更により、このアプリの以前のバージョンでアップロードされたすべてのファイルが%2$s フォルダにコピーされます。ただし、アカウント同期の際に、エラーがこの操作の完了を阻止しました。ファイルをこのままにして%3$sへのリンクを削除するか、あるいは%1$s ディレクトリにファイルを移動して%4$sへのリンクを維持することができます。\n\n以下にリストされているのは、ローカルのファイル及びそれらにリンクしている %5$s 内のリモートファイルです。</string>
<string name="sync_current_folder_was_removed">フォルダー %1$s はもう存在しません</string>
<string name="foreign_files_move">全て移動</string>
<string name="foreign_files_success">全てのファイルは移動されました</string>

View file

@ -34,6 +34,7 @@
<string name="common_cancel">Anulare</string>
<string name="common_save_exit">Salvare &amp; Ieșire</string>
<string name="common_error">Eroare</string>
<string name="common_error_unknown">Eroare necunoscută</string>
<string name="about_title">Despre</string>
<string name="change_password">Schimbă parola</string>
<string name="delete_account">Șterge cont</string>

View file

@ -166,6 +166,7 @@
<string name="auth_connecting_auth_server">Connecting to authentication server…</string>
<string name="auth_unsupported_auth_method">The server does not support this authentication method</string>
<string name="auth_unsupported_multiaccount">%1$s does not support multiple accounts</string>
<string name="auth_fail_get_user_name">Your server is not returning a correct user id, contact with your admin please</string>
<string name="fd_keep_in_sync">Keep file up to date</string>
<string name="common_rename">Rename</string>

View file

@ -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.