From 2ace217813dc286376140ea0fdf7c8748a8ff8b0 Mon Sep 17 00:00:00 2001 From: Pedro Pinto Silva Date: Thu, 13 Apr 2023 09:24:06 +0200 Subject: [PATCH] Do not assume who the user needs to contact for storage space - I some situations %storageserver domain is not the right place to redirect users (integrator might have another support system in place) Signed-off-by: Pedro Pinto Silva Change-Id: I0008819665a96677cca06d9654e6629cfcac98b1 --- browser/src/errormessages.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browser/src/errormessages.js b/browser/src/errormessages.js index 956358cf9..78fb0b31c 100644 --- a/browser/src/errormessages.js +++ b/browser/src/errormessages.js @@ -39,7 +39,7 @@ if (window.ThisIsAMobileApp) { } else { errorMessages.storage = { loadfailed: _('Failed to read document from storage. Please contact your storage server (%storageserver) administrator.'), - savediskfull: _('Save failed due to no disk space left on storage server. Document will now be read-only. Please contact the server (%storageserver) administrator to continue editing.'), + savediskfull: _('Save failed due to no storage space left. Document will now be read-only. Please make sure enough disk space is available and try to save again.'), savetoolarge: _('Save failed because the document is too large or disk quota exceeded. Document will now be read-only but you may still download it now to preserve a copy locally. Please contact the server (%storageserver) administrator to resolve the issue.'), saveunauthorized: _('Document cannot be saved due to expired or invalid access token.'), savefailed: _('Document cannot be saved. Check your permissions or contact the storage server administrator.'),