show infos on untrusted domain if available

Signed-off-by: tobiaskaminsky <tobias@kaminsky.me>
This commit is contained in:
tobiaskaminsky 2018-01-23 13:16:29 +01:00
parent 2111bd66c0
commit 633faf2169
No known key found for this signature in database
GPG key ID: 0E00D4D47D0C5AF7
2 changed files with 4 additions and 0 deletions

View file

@ -1569,6 +1569,9 @@ public class AuthenticatorActivity extends AccountAuthenticatorActivity
case MAINTENANCE_MODE:
mServerStatusText = getResources().getString(R.string.maintenance_mode);
break;
case UNTRUSTED_DOMAIN:
mServerStatusText = getResources().getString(R.string.untrusted_domain);
break;
default:
mServerStatusText = "";
mServerStatusIcon = 0;

View file

@ -760,4 +760,5 @@
<string name="end_to_end_encryption_dialog_close">Close</string>
<string name="end_to_end_encryption_storing_keys">Storing keys</string>
<string name="copy_move_to_encrypted_folder_not_supported">Copy/move into encrypted folder currently not supported.</string>
<string name="untrusted_domain">Access through untrusted domain. Please see documentation for further infos.</string>
</resources>