Skip to content

Commit

Permalink
Some minor cleaning up.
Browse files Browse the repository at this point in the history
  • Loading branch information
agarny committed Oct 9, 2019
1 parent 2df57b0 commit a266955
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/plugins/support/SEDMLSupport/i18n/SEDMLSupport_fr.ts
Expand Up @@ -79,8 +79,8 @@
<translation>seulement les fichiers SED-ML avec une ou deux simulations avec un algorithme sont supportés</translation>
</message>
<message>
<source>only SED-ML files with a one-step as a second simulation are supported</source>
<translation>seulement les fichiers SED-ML avec un pas pour deuxième simulation sont supportés</translation>
<source>only SED-ML files with a one-step simulation as a second simulation are supported</source>
<translation>seulement les fichiers SED-ML avec une simulation un-pas pour deuxième simulation sont supportés</translation>
</message>
<message>
<source>the value for step must be greater than zero</source>
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/support/SEDMLSupport/src/sedmlfile.cpp
Expand Up @@ -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;
}
Expand Down

0 comments on commit a266955

Please sign in to comment.