From 498eab8da1845a69ab7fafe9b4157de3802288ff Mon Sep 17 00:00:00 2001 From: Pedro Pinto Silva Date: Tue, 27 Sep 2022 16:31:24 +0200 Subject: Add missing full stop at the end of the error message Signed-off-by: Pedro Pinto Silva Change-Id: I8916172a4c7df9002b6f8d5ac2d508ab2dc6a855 --- 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 422009bab8..696c615896 100644 --- a/browser/src/errormessages.js +++ b/browser/src/errormessages.js @@ -12,7 +12,7 @@ if (lang) { errorMessages.diskfull = _('No disk space left on server, please contact the server administrator to continue.'); errorMessages.emptyhosturl = _('The host URL is empty. The coolwsd server is probably misconfigured, please contact the administrator.'); -errorMessages.limitreached = _('This is an unsupported version of {productname}. To avoid the impression that it is suitable for deployment in enterprises, this message appears when more than {docs} documents or {connections} connections are in use concurrently'); +errorMessages.limitreached = _('This is an unsupported version of {productname}. To avoid the impression that it is suitable for deployment in enterprises, this message appears when more than {docs} documents or {connections} connections are in use concurrently.'); errorMessages.infoandsupport = _('More information and support'); errorMessages.limitreachedprod = _('This service is limited to %0 documents, and %1 connections total by the admin. This limit has been reached. Please try again later.'); errorMessages.serviceunavailable = _('Service is unavailable. Please try again later and report to your administrator if the issue persists.'); -- cgit