Skip to content

Commit

Permalink
PMR support: updated the description of our different PMR instances (c…
Browse files Browse the repository at this point in the history
…loses #1583).
  • Loading branch information
agarny committed Mar 24, 2018
2 parents c3fb272 + 035dc5f commit ad98a5f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion doc/downloads/index.js
Expand Up @@ -38,7 +38,7 @@ var jsonData = { "versions": [
],
"changes": [
{ "change": "<strong>Data store interface:</strong> fixed a problem with the returned size of a data store being wrong in some cases (see issue <a href=\"https://github.com/opencor/opencor/issues/1579\">#1579</a>)." },
{ "change": "<strong>PMR support:</strong> fixed a problem with the PMR Workspaces window potentially not reflecting the Git status of a folder (see issue <a href=\"https://github.com/opencor/opencor/issues/1582\">#1582</a>)." },
{ "change": "<strong>PMR support:</strong> fixed a problem with the PMR Workspaces window potentially not reflecting the Git status of a folder (see issue <a href=\"https://github.com/opencor/opencor/issues/1582\">#1582</a>). Updated the description of our different PMR instances (see issue <a href=\"https://github.com/opencor/opencor/issues/1583\">#1583</a>)." },
{ "change": "<strong>SED-ML support:</strong> fixed a problem with OpenCOR crashing when saving an empty SED-ML file (see issue <a href=\"https://github.com/opencor/opencor/issues/1572\">#1572</a>)." },
{ "change": "<strong>Simulation Experiment view:</strong> prevent a model with no ODEs/DAEs from crashing OpenCOR (see issue <a href=\"https://github.com/opencor/opencor/issues/1576\">#1576</a>)." },
]
Expand Down
8 changes: 4 additions & 4 deletions src/plugins/support/PMRSupport/i18n/PMRSupport_fr.ts
Expand Up @@ -8,12 +8,12 @@
<translation>le site principal est sélectionné. Tout sur ce site est permanent et persistant. Il est toujours disponible et toujours stable.</translation>
</message>
<message>
<source>the staging site is selected. It is used for public testing/preview of PMR developments. A warning is always sent before wiping clean and starting with a fresh copy of the primary site (workspaces, exposures and user accounts). The content of this site is never migrated to the primary site, but users can synchronise across if desired.</source>
<translation>le site de test est sélectionné. Il est utilisé pour publiquement tester/consulter les développements de PMR. Un avertissement est toujours envoyé avant de nettoyer et réinitialiser à l&apos;aide du site principal (espaces de travail, expositions et comptes utilisateurs). Le contenu de ce site n&apos;est jamais migré vers le site principal, mais les utilisateurs peuvent synchroniser si nécessaire.</translation>
<source>the staging site is selected. It is used for public testing/preview of PMR developments. Data on this site is wiped periodically whenever a new public testing/preview of the PMR software suite is released for the required testing exercise.</source>
<translation>le site de transit est sélectionné. Il est utilisé pour publiquement tester/prévisualiser les développements de PMR. Les données sur ce site sont effacées périodiquement chaque fois qu&apos;un nouveau test/aperçu public de la suite logicielle PMR est publié pour l&apos;exercice de test requis.</translation>
</message>
<message>
<source>the teaching site is selected. It is randomly wiped with little or no warning. It mostly matches the primary site in terms of functionality. It may be synchronised with the primary site (workspaces, exposures and user accounts) or it may simply be empty.</source>
<translation>le site d&apos;enseignement est sélectionné. Il est irrégulièrement nettoyé avec peu ou pas d&apos;avertissement. Il correspond essentiellement au site principal en termes de fonctionnalité. Il peut être synchronisé avec le site principal (espaces de travail, expositions et comptes utilisateurs) ou il peut tout simplement être vide.</translation>
<source>the teaching site is selected. The functionality of this site should match the primary site, but without the data persistency guarantees. While data on this site is also not permanent, any wipes to data stored will be announced on the cellml-discussion mailing list.</source>
<translation>le site d&apos;enseignement est sélectionné. Les fonctionnalités de ce site devraient correspondre à celles du site principal, mais sans les garanties de persistance des données. Bien que les données sur ce site ne soient pas non plus permanentes, tout effacement des données stockées sera annoncé sur la liste de discussion cellml-discussion.</translation>
</message>
</context>
<context>
Expand Down
Expand Up @@ -130,9 +130,9 @@ void PmrSupportPreferencesWidget::on_pmrUrlValue_currentTextChanged(const QStrin
if (!pCurrentText.compare(SettingsPreferencesPmrUrlDefault))
mGui->noteValue->setText(tr("the primary site is selected. Everything on this site is permanent and persistent. It is always up and always stable."));
else if (!pCurrentText.compare(StagingInstance))
mGui->noteValue->setText(tr("the staging site is selected. It is used for public testing/preview of PMR developments. A warning is always sent before wiping clean and starting with a fresh copy of the primary site (workspaces, exposures and user accounts). The content of this site is never migrated to the primary site, but users can synchronise across if desired."));
mGui->noteValue->setText(tr("the staging site is selected. It is used for public testing/preview of PMR developments. Data on this site is wiped periodically whenever a new public testing/preview of the PMR software suite is released for the required testing exercise."));
else if (!pCurrentText.compare(TeachingInstance))
mGui->noteValue->setText(tr("the teaching site is selected. It is randomly wiped with little or no warning. It mostly matches the primary site in terms of functionality. It may be synchronised with the primary site (workspaces, exposures and user accounts) or it may simply be empty."));
mGui->noteValue->setText(tr("the teaching site is selected. The functionality of this site should match the primary site, but without the data persistency guarantees. While data on this site is also not permanent, any wipes to data stored will be announced on the cellml-discussion mailing list."));
else
mGui->noteValue->setText(QString());

Expand Down

0 comments on commit ad98a5f

Please sign in to comment.