Change translation keys for keys with counts

This commit is contained in:
Louis Delbosc
2022-12-06 17:43:35 +01:00
parent e0ae321ff5
commit 7082e3dce9
6 changed files with 20 additions and 20 deletions

View File

@@ -137,7 +137,7 @@ function buildPrompt(tableNames: string[], onSave: (option: RemoveOption) => Pro
const saveDisabled = Computed.create(owner, use => use(selected) === '');
const saveFunc = () => onSave(selected.get());
return {
title: t('TableWillNoLongerBeVisible', { count: tableNames.length }),
title: t('The following tables will no longer be visible', { count: tableNames.length }),
body: dom('div',
testId('popup'),
buildWarning(tableNames),