Move the ellipses in translated strings

This commit is contained in:
fflorent 2024-10-08 11:07:43 +02:00 committed by Florent F
parent 468c7d4bd5
commit d132bf95ad
3 changed files with 3 additions and 3 deletions

View File

@ -174,7 +174,7 @@ export function makeSendAppPage({ server, staticDir, tag, testLogin, baseDomain
).join('\n');
const content = fileContent
.replace("<!-- INSERT WARNING -->", warning)
.replace("<!-- INSERT TITLE -->", getPageTitle(config) ?? (translate(req, 'Loading') + "..."))
.replace("<!-- INSERT TITLE -->", getPageTitle(config) ?? (translate(req, 'Loading...')))
.replace("<!-- INSERT META -->", getPageMetadataHtmlSnippet(req, config, staticBaseUrl))
.replace("<!-- INSERT TITLE SUFFIX -->", getPageTitleSuffix(server.getGristConfig()))
.replace("<!-- INSERT BASE -->", `<base href="${staticBaseUrl}">` + tagManagerSnippet)

View File

@ -1,6 +1,6 @@
{
"sendAppPage": {
"Loading": "Loading",
"Loading...": "Loading...",
"gristMetaDescription": "Grist is the evolution of spreadsheets.",
"Welcome": "Welcome"
},

View File

@ -1,5 +1,5 @@
{
"sendAppPage": {
"Loading": "Chargement"
"Loading...": "Chargement..."
}
}