mirror of
https://github.com/nextcloud/android.git
synced 2024-11-24 06:05:42 +03:00
Merge pull request #12211 from nextcloud/fix/quota_exceeded_message
Use custom quota exceeded error message
This commit is contained in:
commit
7232aabf31
2 changed files with 4 additions and 0 deletions
|
@ -437,6 +437,9 @@ public final class ErrorMessageAdapter {
|
|||
} else if (result.getCode() == ResultCode.ACCOUNT_NOT_THE_SAME) {
|
||||
message = res.getString(R.string.auth_account_not_the_same);
|
||||
|
||||
} else if (result.getCode() == ResultCode.QUOTA_EXCEEDED) {
|
||||
message = res.getString(R.string.upload_quota_exceeded);
|
||||
|
||||
}
|
||||
|
||||
else if (!TextUtils.isEmpty(result.getHttpPhrase())) {
|
||||
|
|
|
@ -831,6 +831,7 @@
|
|||
<string name="upload_sync_conflict">Sync conflict, please resolve manually</string>
|
||||
<string name="upload_cannot_create_file">Cannot create local file</string>
|
||||
<string name="upload_local_storage_not_copied">File could not be copied to local storage</string>
|
||||
<string name="upload_quota_exceeded">Storage quota exceeded</string>
|
||||
<string name="host_not_available">Server not available</string>
|
||||
<string name="delete_entries">Delete entries</string>
|
||||
<string name="dismiss_notification_description">Dismiss notification</string>
|
||||
|
|
Loading…
Reference in a new issue