diff --git a/src/plugins/support/SEDMLSupport/i18n/SEDMLSupport_fr.ts b/src/plugins/support/SEDMLSupport/i18n/SEDMLSupport_fr.ts index 43f4ebc709..0ae66a0b40 100644 --- a/src/plugins/support/SEDMLSupport/i18n/SEDMLSupport_fr.ts +++ b/src/plugins/support/SEDMLSupport/i18n/SEDMLSupport_fr.ts @@ -79,8 +79,8 @@ seulement les fichiers SED-ML avec une ou deux simulations avec un algorithme sont supportés - only SED-ML files with a one-step as a second simulation are supported - seulement les fichiers SED-ML avec un pas pour deuxième simulation sont supportés + only SED-ML files with a one-step simulation as a second simulation are supported + seulement les fichiers SED-ML avec une simulation un-pas pour deuxième simulation sont supportés the value for step must be greater than zero diff --git a/src/plugins/support/SEDMLSupport/src/sedmlfile.cpp b/src/plugins/support/SEDMLSupport/src/sedmlfile.cpp index 4b81fadc49..bfd1077f82 100644 --- a/src/plugins/support/SEDMLSupport/src/sedmlfile.cpp +++ b/src/plugins/support/SEDMLSupport/src/sedmlfile.cpp @@ -625,7 +625,7 @@ bool SedmlFile::isSupported() if (secondSimulation->getTypeCode() != libsedml::SEDML_SIMULATION_ONESTEP) { mIssues << SedmlFileIssue(SedmlFileIssue::Type::Information, - tr("only SED-ML files with a one-step as a second simulation are supported")); + tr("only SED-ML files with a one-step simulation as a second simulation are supported")); return false; }