Merge pull request #12211 from nextcloud/fix/quota_exceeded_message

Use custom quota exceeded error message
This commit is contained in:
Andy Scherzinger 2023-12-03 13:30:13 +01:00 committed by GitHub
commit 7232aabf31
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View file

@ -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())) {

View file

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