diff --git a/distrib/windows/FileAssociation.nsh b/distrib/windows/FileAssociation.nsh index cc2f985839..4322323d89 100644 --- a/distrib/windows/FileAssociation.nsh +++ b/distrib/windows/FileAssociation.nsh @@ -4,7 +4,7 @@ _____________________________________________________________________________ File Association _____________________________________________________________________________ - Based on code taken from http://nsis.sourceforge.net/File_Association + Based on code taken from https://nsis.sourceforge.io/File_Association Usage in script: 1. !include "FileAssociation.nsh" diff --git a/i18n/OpenCOR_fr.ts b/i18n/OpenCOR_fr.ts index 8f0da771f9..771bde8a7a 100644 --- a/i18n/OpenCOR_fr.ts +++ b/i18n/OpenCOR_fr.ts @@ -358,8 +358,8 @@ QObject - %1 is a cross-platform modelling environment, which can be used to organise, edit, simulate and analyse <a href="http://www.cellml.org/">CellML</a> files. - %1 est un environnement de modélisation multiplate-forme, qui peut être utilisé pour organiser, éditer, simuler et analyser des fichiers <a href="http://www.cellml.org/">CellML</a>. + %1 is a cross-platform modelling environment, which can be used to organise, edit, simulate and analyse <a href="https://cellml.org/">CellML</a> files. + %1 est un environnement de modélisation multiplate-forme, qui peut être utilisé pour organiser, éditer, simuler et analyser des fichiers <a href="https://cellml.org/">CellML</a>. Sample diff --git a/res/README.rst b/res/README.rst index c128f0f798..9da0ddf6d1 100644 --- a/res/README.rst +++ b/res/README.rst @@ -1,9 +1,9 @@ Some information on the OpenCOR logo: -- |OpenCOR.svg|_: this was created from the original VPH logo, saving the resulting SVG file as an optimised SVG file (using `Inkscape `_), and beautifying it using http://xmlbeautifier.com/. +- |OpenCOR.svg|_: this was created from the original VPH logo, saving the resulting SVG file as an optimised SVG file (using `Inkscape `_), and beautifying it using https://xmlbeautifier.com/. - |splashscreen.png|_ (as well as |[OpenCOR]/src/plugins/miscellaneous/Core/res/logo.png|_, although its size was reduced to 35%): this was created by opening |OpenCOR.svg|_ in `Inkscape `_, reducing its size to 50%, making a screenshot, extracting the part that is inside the box, and making its background transparent (using `GIMP `_). - |OpenCOR.pptx|_: this was created by using a screenshot version of |OpenCOR.svg|_, adding some space around it (e.g. ``50`` pixels), and making sure that it is square. -- ``OpenCOR``\ [\ |.ico|_\ \|\ |.png|_\ \|\ |.icns|_]: these were created by saving a 100% version of |OpenCOR.pptx|_ as a PNG file, using that PNG file as an input to http://iconverticons.com/online/, and downloading the corresponding ``.ico``, ``.png`` (the ``256x256`` pixel version) and ``.icns`` versions. +- ``OpenCOR``\ [\ |.ico|_\ \|\ |.png|_\ \|\ |.icns|_]: these were created by saving a 100% version of |OpenCOR.pptx|_ as a PNG file, using that PNG file as an input to https://iconverticons.com/online/, and downloading the corresponding ``.ico``, ``.png`` (the ``256x256`` pixel version) and ``.icns`` versions. .. |OpenCOR.svg| replace:: ``OpenCOR.svg`` .. _OpenCOR.svg: https://github.com/opencor/opencor/blob/master/res/OpenCOR.svg diff --git a/src/misc/cliutils.cpp b/src/misc/cliutils.cpp index 4c9d69d5bc..86cb35e7bf 100644 --- a/src/misc/cliutils.cpp +++ b/src/misc/cliutils.cpp @@ -187,7 +187,7 @@ QString applicationDescription(bool pGuiMode) { // Return the application description - QString res = QObject::tr(R"(%1 is a cross-platform modelling environment, which can be used to organise, edit, simulate and analyse CellML files.)").arg(R"()"+qAppName()+""); + QString res = QObject::tr(R"(%1 is a cross-platform modelling environment, which can be used to organise, edit, simulate and analyse CellML files.)").arg(R"()"+qAppName()+""); return pGuiMode?res:plainString(res); } diff --git a/src/plugins/editing/CellMLAnnotationView/src/cellmlannotationviewplugin.cpp b/src/plugins/editing/CellMLAnnotationView/src/cellmlannotationviewplugin.cpp index 2fdad2abb2..5b9179766e 100644 --- a/src/plugins/editing/CellMLAnnotationView/src/cellmlannotationviewplugin.cpp +++ b/src/plugins/editing/CellMLAnnotationView/src/cellmlannotationviewplugin.cpp @@ -44,8 +44,8 @@ PLUGININFO_FUNC CellMLAnnotationViewPluginInfo() { Descriptions descriptions; - descriptions.insert("en", QString::fromUtf8(R"(a plugin to annotate CellML files.)")); - descriptions.insert("fr", QString::fromUtf8(R"(une extension pour annoter des fichiers CellML.)")); + descriptions.insert("en", QString::fromUtf8(R"(a plugin to annotate CellML files.)")); + descriptions.insert("fr", QString::fromUtf8(R"(une extension pour annoter des fichiers CellML.)")); return new PluginInfo(PluginInfo::Category::Editing, true, false, QStringList() << "CellMLSupport" << "WebViewerWidget", diff --git a/src/plugins/editing/CellMLEditingView/src/cellmleditingviewplugin.cpp b/src/plugins/editing/CellMLEditingView/src/cellmleditingviewplugin.cpp index ab6c148fb8..dfe8bf9f2e 100644 --- a/src/plugins/editing/CellMLEditingView/src/cellmleditingviewplugin.cpp +++ b/src/plugins/editing/CellMLEditingView/src/cellmleditingviewplugin.cpp @@ -46,8 +46,8 @@ PLUGININFO_FUNC CellMLEditingViewPluginInfo() { Descriptions descriptions; - descriptions.insert("en", QString::fromUtf8(R"(a plugin that provides core CellML editing view facilities.)")); - descriptions.insert("fr", QString::fromUtf8(R"(une extension qui fournit les fonctionalités de base d'une vue d'édition CellML.)")); + descriptions.insert("en", QString::fromUtf8(R"(a plugin that provides core CellML editing view facilities.)")); + descriptions.insert("fr", QString::fromUtf8(R"(une extension qui fournit les fonctionalités de base d'une vue d'édition CellML.)")); return new PluginInfo(PluginInfo::Category::Editing, false, false, QStringList() << "CellMLSupport" << "EditingView" << "MathMLViewerWidget", diff --git a/src/plugins/editing/CellMLTextView/src/cellmltextviewplugin.cpp b/src/plugins/editing/CellMLTextView/src/cellmltextviewplugin.cpp index 12b551c46c..8eff730972 100644 --- a/src/plugins/editing/CellMLTextView/src/cellmltextviewplugin.cpp +++ b/src/plugins/editing/CellMLTextView/src/cellmltextviewplugin.cpp @@ -44,8 +44,8 @@ PLUGININFO_FUNC CellMLTextViewPluginInfo() { Descriptions descriptions; - descriptions.insert("en", QString::fromUtf8(R"(a plugin to edit CellML files using the CellML Text format.)")); - descriptions.insert("fr", QString::fromUtf8(R"(une extension pour éditer des fichiers CellML à l'aide du format CellML Text.)")); + descriptions.insert("en", QString::fromUtf8(R"(a plugin to edit CellML files using the CellML Text format.)")); + descriptions.insert("fr", QString::fromUtf8(R"(une extension pour éditer des fichiers CellML à l'aide du format CellML Text.)")); return new PluginInfo(PluginInfo::Category::Editing, true, true, QStringList() << "CellMLEditingView", diff --git a/src/plugins/support/CellMLSupport/src/cellmlfilecellml10exporter.cpp b/src/plugins/support/CellMLSupport/src/cellmlfilecellml10exporter.cpp index 163cc29524..116256032b 100644 --- a/src/plugins/support/CellMLSupport/src/cellmlfilecellml10exporter.cpp +++ b/src/plugins/support/CellMLSupport/src/cellmlfilecellml10exporter.cpp @@ -24,7 +24,7 @@ along with this program. If not, see . // updated version of Jonathan Cooper's CellML 1.1 to 1.0 converter. The // update was to make Jonathan's code work with version 1.12 of the CellML // API. In all cases, the original limitations apply... -// Original code: http://www.cellml.org/tools/jonathan-cooper-s-cellml-1-1-to-1-0-converter/versionconverter-tar.bz2/view +// Original code: https://cellml.org/tools/jonathan-cooper-s-cellml-1-1-to-1-0-converter/versionconverter-tar.bz2/view // Updated code: https://github.com/nickerso/flattenCellML //============================================================================== diff --git a/src/plugins/support/CellMLSupport/src/cellmlsupportplugin.cpp b/src/plugins/support/CellMLSupport/src/cellmlsupportplugin.cpp index 18631b489a..38d499c536 100644 --- a/src/plugins/support/CellMLSupport/src/cellmlsupportplugin.cpp +++ b/src/plugins/support/CellMLSupport/src/cellmlsupportplugin.cpp @@ -45,8 +45,8 @@ PLUGININFO_FUNC CellMLSupportPluginInfo() { Descriptions descriptions; - descriptions.insert("en", QString::fromUtf8(R"(a plugin to support CellML.)")); - descriptions.insert("fr", QString::fromUtf8(R"(une extension pour supporter CellML.)")); + descriptions.insert("en", QString::fromUtf8(R"(a plugin to support CellML.)")); + descriptions.insert("fr", QString::fromUtf8(R"(une extension pour supporter CellML.)")); return new PluginInfo(PluginInfo::Category::Support, false, false, QStringList() << "CellMLAPI" << "Compiler" << "StandardSupport", diff --git a/src/plugins/thirdParty/CellMLAPI/README.rst b/src/plugins/thirdParty/CellMLAPI/README.rst index 251bf549cb..acfdb2cdc7 100644 --- a/src/plugins/thirdParty/CellMLAPI/README.rst +++ b/src/plugins/thirdParty/CellMLAPI/README.rst @@ -1 +1 @@ -Windows binaries for `omniidl `__ can be found `here `__. +Windows binaries for `omniidl `__ can be found `here `__. diff --git a/src/plugins/tools/CellMLTools/src/cellmltoolsplugin.cpp b/src/plugins/tools/CellMLTools/src/cellmltoolsplugin.cpp index bea4b0e3df..8c27ccf6b6 100644 --- a/src/plugins/tools/CellMLTools/src/cellmltoolsplugin.cpp +++ b/src/plugins/tools/CellMLTools/src/cellmltoolsplugin.cpp @@ -51,8 +51,8 @@ PLUGININFO_FUNC CellMLToolsPluginInfo() { Descriptions descriptions; - descriptions.insert("en", QString::fromUtf8(R"(a plugin to access various CellML-related tools.)")); - descriptions.insert("fr", QString::fromUtf8(R"(une extension pour accéder divers outils en rapport avec CellML.)")); + descriptions.insert("en", QString::fromUtf8(R"(a plugin to access various CellML-related tools.)")); + descriptions.insert("fr", QString::fromUtf8(R"(une extension pour accéder divers outils en rapport avec CellML.)")); return new PluginInfo(PluginInfo::Category::Tools, true, true, QStringList() << "CellMLSupport",