From 7914ee8e18a67dced6646834dcdca9a377bf2cfd Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Fri, 21 Feb 2025 11:00:49 +0100 Subject: [PATCH] fix(l10n): Fix triple dot in translation Signed-off-by: Joas Schilling --- apps/files_external/src/actions/inlineStorageCheckAction.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_external/src/actions/inlineStorageCheckAction.ts b/apps/files_external/src/actions/inlineStorageCheckAction.ts index c2a220a1699..03d3a290357 100644 --- a/apps/files_external/src/actions/inlineStorageCheckAction.ts +++ b/apps/files_external/src/actions/inlineStorageCheckAction.ts @@ -35,7 +35,7 @@ export const action = new FileAction({ async renderInline(node: Node) { const span = document.createElement('span') span.className = 'files-list__row-status' - span.innerHTML = t('files_external', 'Checking storage...') + span.innerHTML = t('files_external', 'Checking storage …') let config = null as unknown as StorageConfig getStatus(node.attributes.id, node.attributes.scope === 'system')