diff --git a/i18n/en.pot b/i18n/en.pot index 79ca7fa5..8c55ff48 100644 --- a/i18n/en.pot +++ b/i18n/en.pot @@ -5,8 +5,8 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -"POT-Creation-Date: 2024-03-05T14:54:55.437Z\n" -"PO-Revision-Date: 2024-03-05T14:54:55.437Z\n" +"POT-Creation-Date: 2024-03-13T13:19:06.504Z\n" +"PO-Revision-Date: 2024-03-13T13:19:06.504Z\n" msgid "Something went wrong" msgstr "Something went wrong" @@ -57,8 +57,8 @@ msgstr "Something went wrong whilst fetching options" msgid "Checks to run" msgstr "Checks to run" -msgid "Run all available checks" -msgstr "Run all available checks" +msgid "Run all standard checks" +msgstr "Run all standard checks" msgid "Only run selected checks" msgstr "Only run selected checks" @@ -66,6 +66,12 @@ msgstr "Only run selected checks" msgid "Severity" msgstr "Severity" +msgid "Slow checks are resource intensive and should be run with caution" +msgstr "Slow checks are resource intensive and should be run with caution" + +msgid "Slow" +msgstr "Slow" + msgid "Select checks to run." msgstr "Select checks to run." diff --git a/src/components/FormFields/Custom/DataIntegrityChecksField.js b/src/components/FormFields/Custom/DataIntegrityChecksField.js index ae4525fa..3d03733d 100644 --- a/src/components/FormFields/Custom/DataIntegrityChecksField.js +++ b/src/components/FormFields/Custom/DataIntegrityChecksField.js @@ -8,9 +8,11 @@ import { Radio, Transfer, TransferOption, + Tooltip, ReactFinalForm, InputFieldFF, Help, + Chip, } from '@dhis2/ui' import cx from 'classnames' import { useParameterOption } from '../../../hooks/parameter-options' @@ -123,9 +125,9 @@ const LabelComponent = ({ label, severity, highlighted, disabled, isSlow }) => ( })} >{`${i18n.t('Severity')}: ${severity}`} {isSlow && ( - - {i18n.t('Resource intensive')} - + + {i18n.t('Slow')} + )}