diff --git a/README.md b/README.md index 265422ed87..fd40122546 100644 --- a/README.md +++ b/README.md @@ -28,4 +28,4 @@ RDMO is a tool to support the systematic planning, organisation and implementati
- RDMO is ready for application in smaller or bigger projects. In the next projectphase, which started November 2017, the RDMO tool will be extended and the project partners AIP, FHP, and KIT Library will collaborate with the RDMO users to improve its usage. The tool will be extended by enhancing its implementation of roles and interfaces to institutional infrastructure, e.g. repositories, ticketing systems, and the infrastructure for authentication and autorization. Tutorials, documentation and other material are planned for dissemination, and workshops for users and developers. + RDMO is ready for application in smaller or bigger projects. In the next projectphase, which started November 2017, the RDMO tool will be extended and the project partners AIP, FHP, and KIT Library will collaborate with the RDMO users to improve its usage. The tool will be extended by enhancing its implementation of roles and interfaces to institutional infrastructure, e.g. repositories, ticketing systems, and the infrastructure for authentication and authorization. Tutorials, documentation and other material are planned for dissemination, and workshops for users and developers.
diff --git a/rdmo/core/templates/rest_framework_swagger/index.html b/rdmo/core/templates/rest_framework_swagger/index.html index 7968d56fec..13ef5c5ec9 100644 --- a/rdmo/core/templates/rest_framework_swagger/index.html +++ b/rdmo/core/templates/rest_framework_swagger/index.html @@ -40,7 +40,7 @@ {% if request.user.is_authenticated %} {% trans "You are logged in as: " %}{{ request.user }} {% else %} - {% trans "Viewing as an anoymous user" %} + {% trans "Viewing as an anonymous user" %} {% endif %} {% endblock %} diff --git a/rdmo/locale/de/LC_MESSAGES/django.po b/rdmo/locale/de/LC_MESSAGES/django.po index 4d2061a6b3..e9fef98307 100644 --- a/rdmo/locale/de/LC_MESSAGES/django.po +++ b/rdmo/locale/de/LC_MESSAGES/django.po @@ -1173,8 +1173,8 @@ msgid "You are logged in as: " msgstr "Sie sind eingeloggt als: " #: core/templates/rest_framework_swagger/index.html:43 -msgid "Viewing as an anoymous user" -msgstr "Ansicht als anoymer Benutzer" +msgid "Viewing as an anonymous user" +msgstr "Ansicht als anonymer Benutzer" #: core/templates/rest_framework_swagger/index.html:55 msgid "Powered by " diff --git a/rdmo/locale/es/LC_MESSAGES/django.po b/rdmo/locale/es/LC_MESSAGES/django.po index 8ce835a508..9cd889c0c2 100644 --- a/rdmo/locale/es/LC_MESSAGES/django.po +++ b/rdmo/locale/es/LC_MESSAGES/django.po @@ -1186,7 +1186,7 @@ msgid "You are logged in as: " msgstr "Usted ha iniciado sesión como: " #: core/templates/rest_framework_swagger/index.html:43 -msgid "Viewing as an anoymous user" +msgid "Viewing as an anonymous user" msgstr "Visualizando como usuario anónimo" #: core/templates/rest_framework_swagger/index.html:55 diff --git a/rdmo/locale/fr/LC_MESSAGES/django.po b/rdmo/locale/fr/LC_MESSAGES/django.po index 4873e921d0..95a29bc898 100644 --- a/rdmo/locale/fr/LC_MESSAGES/django.po +++ b/rdmo/locale/fr/LC_MESSAGES/django.po @@ -1118,7 +1118,7 @@ msgid "You are logged in as: " msgstr "Vous êtes connecté en tant que: " #: core/templates/rest_framework_swagger/index.html:43 -msgid "Viewing as an anoymous user" +msgid "Viewing as an anonymous user" msgstr "Visualisation en tant qu'utilisateur anonyme" #: core/templates/rest_framework_swagger/index.html:55 diff --git a/rdmo/locale/it/LC_MESSAGES/django.po b/rdmo/locale/it/LC_MESSAGES/django.po index 36242c9173..eabc6b97b5 100644 --- a/rdmo/locale/it/LC_MESSAGES/django.po +++ b/rdmo/locale/it/LC_MESSAGES/django.po @@ -1165,7 +1165,7 @@ msgid "You are logged in as: " msgstr "Sei loggato come: " #: core/templates/rest_framework_swagger/index.html:43 -msgid "Viewing as an anoymous user" +msgid "Viewing as an anonymous user" msgstr "Visualizzazione come utente anonimo" #: core/templates/rest_framework_swagger/index.html:55 diff --git a/rdmo/projects/progress.py b/rdmo/projects/progress.py index 3984955844..36eca6d841 100644 --- a/rdmo/projects/progress.py +++ b/rdmo/projects/progress.py @@ -119,7 +119,7 @@ def count_questions(element, sets, conditions): # count the sets for the id attribute of the page or question if element.attribute is not None: - # nested loop over the seperate set_index lists in sets[element.attribute.id] + # nested loop over the separate set_index lists in sets[element.attribute.id] for set_index in chain.from_iterable(sets[element.attribute.id].values()): counted_sets.add(set_index) @@ -127,7 +127,7 @@ def count_questions(element, sets, conditions): for child in element.elements: if isinstance(child, Question): if child.attribute is not None: - # nested loop over the seperate set_index lists in sets[element.attribute.id] + # nested loop over the separate set_index lists in sets[element.attribute.id] for set_index in chain.from_iterable(sets[child.attribute.id].values()): counted_sets.add(set_index) @@ -149,7 +149,7 @@ def count_questions(element, sets, conditions): # question should be answered in every set # for optional questions add just the number of present answers, so that # only answered questions count for the progress/navigation - # use the max function, since the same attribute could apear twice in the tree + # use the max function, since the same attribute could appear twice in the tree if child.attribute is not None: if child.is_optional: child_count = sum(len(set_indexes) for set_indexes in sets[child.attribute.id].values()) @@ -157,7 +157,7 @@ def count_questions(element, sets, conditions): else: counts[child.attribute.id] = max(counts[child.attribute.id], set_count) else: - # for everthing else, call this function recursively + # for everything else, call this function recursively counts.update(count_questions(child, sets, conditions)) return counts diff --git a/rdmo/tasks/migrations/0004_refactoring.py b/rdmo/tasks/migrations/0004_refactoring.py index 1e35c2d772..20b83df8ac 100644 --- a/rdmo/tasks/migrations/0004_refactoring.py +++ b/rdmo/tasks/migrations/0004_refactoring.py @@ -40,7 +40,7 @@ class Migration(migrations.Migration): migrations.AlterField( model_name='task', name='attribute', - field=models.ForeignKey(blank=True, help_text='The attribute this task is refering to.', null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='domain.Attribute', verbose_name='Attribute'), + field=models.ForeignKey(blank=True, help_text='The attribute this task is referring to.', null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='domain.Attribute', verbose_name='Attribute'), ), migrations.AlterField( model_name='task',