mirror of
https://github.com/nextcloud/android.git
synced 2024-11-27 09:39:25 +03:00
show infos on untrusted domain if available
Signed-off-by: tobiaskaminsky <tobias@kaminsky.me>
This commit is contained in:
parent
2111bd66c0
commit
633faf2169
2 changed files with 4 additions and 0 deletions
|
@ -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;
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue