From 1b697791a9d44db4998f24e28e7d49b1aae8f54b Mon Sep 17 00:00:00 2001 From: uhensler <urs.hensler@frentix.com> Date: Mon, 2 Sep 2019 08:57:21 +0200 Subject: [PATCH] OO-4210: Option to set user info field as mandatory for evaluation forms --- .../handler/SessionInformationsHandler.java | 2 + .../forms/model/xml/SessionInformations.java | 15 ++++ .../ui/SessionInformationsController.java | 50 +++++++++++-- .../SessionInformationsEditorController.java | 27 ++++++- .../forms/ui/_i18n/LocalStrings_de.properties | 72 ++++++++++--------- .../forms/ui/_i18n/LocalStrings_en.properties | 10 ++- 6 files changed, 133 insertions(+), 43 deletions(-) diff --git a/src/main/java/org/olat/modules/forms/handler/SessionInformationsHandler.java b/src/main/java/org/olat/modules/forms/handler/SessionInformationsHandler.java index 7d7ec51e1ae..f8e18552682 100644 --- a/src/main/java/org/olat/modules/forms/handler/SessionInformationsHandler.java +++ b/src/main/java/org/olat/modules/forms/handler/SessionInformationsHandler.java @@ -32,6 +32,7 @@ import org.olat.modules.ceditor.PageElementRenderingHints; import org.olat.modules.ceditor.PageRunElement; import org.olat.modules.ceditor.SimpleAddPageElementHandler; import org.olat.modules.forms.model.xml.SessionInformations; +import org.olat.modules.forms.model.xml.SessionInformations.Obligation; import org.olat.modules.forms.ui.SessionInformationsController; import org.olat.modules.forms.ui.SessionInformationsEditorController; import org.olat.modules.forms.ui.model.EvaluationFormExecutionElement; @@ -103,6 +104,7 @@ public class SessionInformationsHandler implements EvaluationFormElementHandler, public PageElement createPageElement(Locale locale) { SessionInformations informations = new SessionInformations(); informations.setId(UUID.randomUUID().toString()); + informations.setObligation(Obligation.optional); return informations; } diff --git a/src/main/java/org/olat/modules/forms/model/xml/SessionInformations.java b/src/main/java/org/olat/modules/forms/model/xml/SessionInformations.java index b4abd7e948a..7a97a4d80b2 100644 --- a/src/main/java/org/olat/modules/forms/model/xml/SessionInformations.java +++ b/src/main/java/org/olat/modules/forms/model/xml/SessionInformations.java @@ -34,6 +34,12 @@ public class SessionInformations extends AbstractElement { public static final String TYPE = "formsessioninformations"; + public enum Obligation { + optional, + mandatory, + autofill + } + public enum InformationType { USER_FIRSTNAME(1), USER_LASTNAME(2), @@ -54,6 +60,7 @@ public class SessionInformations extends AbstractElement { } } + private Obligation obligation = Obligation.optional; private List<InformationType> informationTypes = new ArrayList<>(); @Override @@ -61,6 +68,14 @@ public class SessionInformations extends AbstractElement { return TYPE; } + public Obligation getObligation() { + return obligation; + } + + public void setObligation(Obligation obligation) { + this.obligation = obligation; + } + public List<InformationType> getInformationTypes() { return informationTypes; } diff --git a/src/main/java/org/olat/modules/forms/ui/SessionInformationsController.java b/src/main/java/org/olat/modules/forms/ui/SessionInformationsController.java index 0c16a22d951..23cfda6feda 100644 --- a/src/main/java/org/olat/modules/forms/ui/SessionInformationsController.java +++ b/src/main/java/org/olat/modules/forms/ui/SessionInformationsController.java @@ -40,6 +40,7 @@ import org.olat.modules.forms.EvaluationFormSession; import org.olat.modules.forms.model.jpa.EvaluationFormResponses; import org.olat.modules.forms.model.xml.SessionInformations; import org.olat.modules.forms.model.xml.SessionInformations.InformationType; +import org.olat.modules.forms.model.xml.SessionInformations.Obligation; import org.olat.modules.forms.ui.model.EvaluationFormResponseController; import org.olat.modules.forms.ui.model.ExecutionIdentity; import org.springframework.beans.factory.annotation.Autowired; @@ -99,7 +100,12 @@ public class SessionInformationsController extends FormBasicController implement fillInButton = uifactory.addFormLink("gi_" + CodeHelper.getRAMUniqueID(), "session.informations.fill.in", "session.informations.fill.in.label", flc, Link.BUTTON); fillInButton.addActionListener(FormEvent.ONCLICK); - fillInButton.setVisible(!sessionInformationWrappers.isEmpty()); + boolean hasFields = !sessionInformationWrappers.isEmpty(); + fillInButton.setVisible(hasFields && isNotAutoFill()); + + if (isAutoFill()) { + doFillIn(); + } } private SessionInformationWrapper createWrapper(InformationType informationType) { @@ -107,6 +113,8 @@ public class SessionInformationsController extends FormBasicController implement TextElement informationEl = uifactory.addTextElement(name, name, "session.informations.label", 400, null, flc); String label = SessionInformationsUIFactory.getTranslatedType(informationType, getLocale()); informationEl.setLabel("session.informations.label", new String[] { label }); + informationEl.setMandatory(isMandatory()); + informationEl.setEnabled(isNotAutoFill()); return new SessionInformationWrapper(informationType, name, informationEl); } @@ -118,6 +126,24 @@ public class SessionInformationsController extends FormBasicController implement super.formInnerEvent(ureq, source, event); } + @Override + protected boolean validateFormLogic(UserRequest ureq) { + boolean allOk = true; + + if (isMandatory()) { + for (SessionInformationWrapper sessionInformationWrapper : sessionInformationWrappers) { + TextElement informationEl = sessionInformationWrapper.getInformationEl(); + informationEl.clearError(); + if (!StringHelper.containsNonWhitespace(informationEl.getValue())) { + informationEl.setErrorKey("form.legende.mandatory", null); + allOk = false; + } + } + } + + return allOk & super.validateFormLogic(ureq); + } + @Override protected void formOK(UserRequest ureq) { // @@ -152,10 +178,10 @@ public class SessionInformationsController extends FormBasicController implement @Override public void setReadOnly(boolean readOnly) { for (SessionInformationWrapper wrapper: sessionInformationWrappers) { - wrapper.getInformationEl().setEnabled(!readOnly); + wrapper.getInformationEl().setEnabled(!readOnly && isNotAutoFill()); } - boolean fillInInisible = readOnly || sessionInformationWrappers.isEmpty(); - fillInButton.setVisible(!fillInInisible); + boolean fillInVisible = !readOnly && !sessionInformationWrappers.isEmpty() && isNotAutoFill(); + fillInButton.setVisible(fillInVisible); } @Override @@ -167,7 +193,9 @@ public class SessionInformationsController extends FormBasicController implement public void initResponse(EvaluationFormSession session, EvaluationFormResponses responses) { for (SessionInformationWrapper wrapper: sessionInformationWrappers) { String value = SessionInformationsUIFactory.getValue(wrapper.getInformationType(), session); - wrapper.getInformationEl().setValue(value); + if (StringHelper.containsNonWhitespace(value)) { + wrapper.getInformationEl().setValue(value); + } } } @@ -214,6 +242,18 @@ public class SessionInformationsController extends FormBasicController implement } } + private boolean isMandatory() { + return Obligation.mandatory.equals(sessionInformations.getObligation()); + } + + private boolean isNotAutoFill() { + return !isAutoFill(); + } + + private boolean isAutoFill() { + return Obligation.autofill.equals(sessionInformations.getObligation()); + } + private SessionInformationWrapper getWrapper(InformationType informationType) { for (SessionInformationWrapper wrapper: sessionInformationWrappers) { if (informationType.equals(wrapper.getInformationType())) { diff --git a/src/main/java/org/olat/modules/forms/ui/SessionInformationsEditorController.java b/src/main/java/org/olat/modules/forms/ui/SessionInformationsEditorController.java index 72dcc291021..a52cee65a8d 100644 --- a/src/main/java/org/olat/modules/forms/ui/SessionInformationsEditorController.java +++ b/src/main/java/org/olat/modules/forms/ui/SessionInformationsEditorController.java @@ -28,9 +28,11 @@ import org.olat.core.gui.UserRequest; import org.olat.core.gui.components.form.flexible.FormItem; import org.olat.core.gui.components.form.flexible.FormItemContainer; import org.olat.core.gui.components.form.flexible.elements.MultipleSelectionElement; +import org.olat.core.gui.components.form.flexible.elements.SingleSelection; import org.olat.core.gui.components.form.flexible.impl.FormBasicController; import org.olat.core.gui.components.form.flexible.impl.FormEvent; import org.olat.core.gui.components.form.flexible.impl.FormLayoutContainer; +import org.olat.core.gui.components.util.KeyValues; import org.olat.core.gui.control.Controller; import org.olat.core.gui.control.WindowControl; import org.olat.core.util.CodeHelper; @@ -38,6 +40,7 @@ import org.olat.modules.ceditor.PageElementEditorController; import org.olat.modules.ceditor.ui.event.ChangePartEvent; import org.olat.modules.forms.model.xml.SessionInformations; import org.olat.modules.forms.model.xml.SessionInformations.InformationType; +import org.olat.modules.forms.model.xml.SessionInformations.Obligation; /** * @@ -48,6 +51,7 @@ import org.olat.modules.forms.model.xml.SessionInformations.InformationType; public class SessionInformationsEditorController extends FormBasicController implements PageElementEditorController { private SessionInformationsController sessionInforamtionsCtrl; + private SingleSelection obligationEl; private MultipleSelectionElement informationsEl; private final SessionInformations sessionInformations; @@ -75,6 +79,18 @@ public class SessionInformationsEditorController extends FormBasicController imp settingsCont.setRootForm(mainForm); formLayout.add("settings", settingsCont); + KeyValues obligationKV = new KeyValues(); + obligationKV.add(KeyValues.entry(Obligation.optional.name(), translate("session.information.obligation.optional"))); + obligationKV.add(KeyValues.entry(Obligation.mandatory.name(), translate("session.information.obligation.mandatory"))); + obligationKV.add(KeyValues.entry(Obligation.autofill.name(), translate("session.information.obligation.autofill"))); + obligationEl = uifactory.addDropdownSingleselect("gi_m_" + postfix, "session.information.obligation", + settingsCont, obligationKV.keys(), obligationKV.values()); + String selectedObligation = sessionInformations.getObligation() != null + ? sessionInformations.getObligation().name() + : Obligation.optional.name(); + obligationEl.select(selectedObligation, true); + obligationEl.addActionListener(FormEvent.ONCHANGE); + String[] keys = SessionInformationsUIFactory.getTypeKeys(); String[] values = SessionInformationsUIFactory.getTranslatedTypes(getLocale()); informationsEl = uifactory.addCheckboxesVertical("gi_" + postfix, @@ -102,7 +118,9 @@ public class SessionInformationsEditorController extends FormBasicController imp @Override protected void formInnerEvent(UserRequest ureq, FormItem source, FormEvent event) { - if (source == informationsEl) { + if (source == obligationEl) { + doSetObligation(); + } else if (source == informationsEl) { doEnableInformations(); } sessionInforamtionsCtrl.update(); @@ -110,6 +128,13 @@ public class SessionInformationsEditorController extends FormBasicController imp super.formInnerEvent(ureq, source, event); } + private void doSetObligation() { + Obligation sselectedObligation = obligationEl.isOneSelected() + ? Obligation.valueOf(obligationEl.getSelectedKey()) + : Obligation.optional; + sessionInformations.setObligation(sselectedObligation); + } + private void doEnableInformations() { Collection<String> selectedKeys = informationsEl.getSelectedKeys(); List<InformationType> informationTypes = new ArrayList<>(); diff --git a/src/main/java/org/olat/modules/forms/ui/_i18n/LocalStrings_de.properties b/src/main/java/org/olat/modules/forms/ui/_i18n/LocalStrings_de.properties index d59a9b91d38..247910b23b6 100644 --- a/src/main/java/org/olat/modules/forms/ui/_i18n/LocalStrings_de.properties +++ b/src/main/java/org/olat/modules/forms/ui/_i18n/LocalStrings_de.properties @@ -11,38 +11,38 @@ add.formrubric=Rubrik add.formsessioninformations=Informationen add.formsinglechoice=Einzelauswahl add.formtable=Tabelle -add.slider=Frage hinzuf\u00FCgen +add.slider=Frage hinzuf\u00fcgen bar.chart.legend=Legende chart.avg=Durchschnitt chart.count=Anzahl -choice.add=Eintrag hinzuf\u00FCgen -choice.delete=L\u00F6schen +choice.add=Eintrag hinzuf\u00fcgen +choice.delete=L\u00f6schen choice.example=Beispielwert choice.move=Verschieben choice.value=Eintrag -choice.values=Eintr\u00E4ge -confirm.done=M\u00F6chten Sie die Antworten abgeben? Diese k\u00F6nnen anschliessend nicht mehr bearbeitet werden. -disclaimer.agreement=Beschriftung Einverst\u00E4ndniserkl\u00E4rung -disclaimer.default.agreement=Ich habe die Einverst\u00E4ndniserkl\u00E4rung gelesen, verstanden und bin mit ihr einverstanden. -disclaimer.default.text=Alle von den Umfrageteilnehmern \u00FCbermittelten personenbezogenen Daten werden gem\u00E4ss den Datenschutzvorschriften bearbeitet und in keinem Fall an Dritte weitergegeben. -disclaimer.not.accepted=Bitte geben Sie zuerst Ihr Einverst\u00E4ndnis. -disclaimer.text=Einverst\u00E4ndniserkl\u00E4rung +choice.values=Eintr\u00e4ge +confirm.done=M\u00f6chten Sie die Antworten abgeben? Diese k\u00f6nnen anschliessend nicht mehr bearbeitet werden. +disclaimer.agreement=Beschriftung Einverst\u00e4ndniserkl\u00e4rung +disclaimer.default.agreement=Ich habe die Einverst\u00e4ndniserkl\u00e4rung gelesen, verstanden und bin mit ihr einverstanden. +disclaimer.default.text=Alle von den Umfrageteilnehmern \u00fcbermittelten personenbezogenen Daten werden gem\u00e4ss den Datenschutzvorschriften bearbeitet und in keinem Fall an Dritte weitergegeben. +disclaimer.not.accepted=Bitte geben Sie zuerst Ihr Einverst\u00e4ndnis. +disclaimer.text=Einverst\u00e4ndniserkl\u00e4rung end.label=End error.cannot.save=Speichern fehlgeschlagen error.no.number=Falsches Zahlenformat. Beispiele\: 1.0, 0.5, 0.2 error.outside.range=Der Wert muss zwischen {0} und {1} liegen. -error.range.overlapping=Zwei Wertebereiche \u00FCberlappen sich. +error.range.overlapping=Zwei Wertebereiche \u00fcberlappen sich. error.wrong.int=Falsches Zahlenformat. Beispiele\: 1, 5, 10 -evaluation.anonymous= Dies ist eine anonyme Umfrage, die Umfrageantworten sind anonymisiert. Es werden keine pers\u00F6nlichen Daten \u00FCber Sie gespeichert, es sei denn, es wird ausdr\u00FCcklich danach gefragt (z. B. Alter, Geschlecht). Auch die IP-Adresse des von Ihnen verwendeten PC wird nicht gespeichert. Es gibt somit keinen Weg, die Umfrageergebnisse mit Ihren Daten zusammenzuf\u00FChren. -evaluation.form.in.use=Die Ressource wird bereits verwendet. Die Bearbeitung ist beschr\u00E4nkt. -evaluation.form.without.elements=F\u00FCr diesen Fragebogen sind noch keine Fragen vorhanden. -evaluation.in.progress=Die Einsch\u00E4tzung ist gerade in Bearbeitung +evaluation.anonymous= Dies ist eine anonyme Umfrage, die Umfrageantworten sind anonymisiert. Es werden keine pers\u00f6nlichen Daten \u00fcber Sie gespeichert, es sei denn, es wird ausdr\u00fccklich danach gefragt (z. B. Alter, Geschlecht). Auch die IP-Adresse des von Ihnen verwendeten PC wird nicht gespeichert. Es gibt somit keinen Weg, die Umfrageergebnisse mit Ihren Daten zusammenzuf\u00fchren. +evaluation.form.in.use=Die Ressource wird bereits verwendet. Die Bearbeitung ist beschr\u00e4nkt. +evaluation.form.without.elements=F\u00fcr diesen Fragebogen sind noch keine Fragen vorhanden. +evaluation.in.progress=Die Einsch\u00e4tzung ist gerade in Bearbeitung evaluator=Benutzer {0} file.upload.download.info=Es werden {0} von {1} Dateien angezeigt. file.upload.download.link=Alle Dateien herunterladen. file.upload.error.limit.exeeded=Die Datei ist zu gross file.upload.error.mime.type.wrong=Dieser Dateityps ist nicht erlaubt -file.upload.limit=Maximale Dateigr\u00F6sse +file.upload.limit=Maximale Dateigr\u00f6sse file.upload.mime.type.all=Alle file.upload.mime.type.audio=Audio file.upload.mime.type.image=Bilder @@ -61,15 +61,15 @@ htitle=Titel multiple.choice.others=Weitere multiple.choice.with.others.enabled=Teilnehmer kann weitere Werte erfassen multiple.choice.with.others=Weitere -no.response.help=Aktivieren Sie diese Option, um im Fragebogen die Spalte "Keine Antwort m\u00F6glich" anzuzeigen. Der Teilnehmer kann so zum Ausdruck bringen, dass er nicht in der Lage ist, eine Frage zu beantworten. -no.response=Keine Antwort m\u00F6glich +no.response.help=Aktivieren Sie diese Option, um im Fragebogen die Spalte "Keine Antwort m\u00f6glich" anzuzeigen. Der Teilnehmer kann so zum Ausdruck bringen, dass er nicht in der Lage ist, eine Frage zu beantworten. +no.response=Keine Antwort m\u00f6glich report.anonymous.user=Anonym report.count.count.title=Anzahl report.count.name.title=Wert report.excel.legend=Legende report.excel.text=Text report.export=Export Excel -report.max.session.exceeded=Die maximale Anzahl von einzelnen Frageb\u00F6gen ({0}) wurde \u00FCberschritten. Die einzelnen Frageb\u00F6gen werden nicht gedruckt. +report.max.session.exceeded=Die maximale Anzahl von einzelnen Frageb\u00f6gen ({0}) wurde \u00fcberschritten. Die einzelnen Frageb\u00f6gen werden nicht gedruckt. report.overview.duration.count=Anzahl report.overview.duration.title=Bearbeitungsdauer report.overview.duration=Bearbeitungsdauer @@ -95,20 +95,20 @@ report.session.dummy= report.session.participant=Teilnehmer report.session.quickview=<i class\='o_icon o_icon_quickview'> </i> reports.diagram.report=Diagramme -reports.session.forms=Frageb\u00F6gen -reports.session.selection=Einzelne Frageb\u00F6gen -reports.table.overview=\u00DCbersicht +reports.session.forms=Frageb\u00f6gen +reports.session.selection=Einzelne Frageb\u00f6gen +reports.table.overview=\u00dcbersicht reports.table.report=Tabellen rubric.column.label=Spaltenbeschriftung rubric.good.rating.end=Rechts -rubric.good.rating.help=Definieren Sie, ob die linke oder die rechte Seite der Skala eine positive Beurteilung darstellt. Diese Angabe wird f\u00FCr die Darstellung des Trenddiagramms verwendet. +rubric.good.rating.help=Definieren Sie, ob die linke oder die rechte Seite der Skala eine positive Beurteilung darstellt. Diese Angabe wird f\u00fcr die Darstellung des Trenddiagramms verwendet. rubric.good.rating.start=Links rubric.good.rating=Positive Bewertung -rubric.insufficient.explanation=Ungen\u00FCgende Beurteilung (Wert zwischen {0} und {1}) -rubric.insufficient=Ungen\u00FCgend +rubric.insufficient.explanation=Ungen\u00fcgende Beurteilung (Wert zwischen {0} und {1}) +rubric.insufficient=Ungen\u00fcgend rubric.lower.bound=von rubric.name.display=Anzeige des Namens -rubric.name.execution=In Durchf\u00FChrung +rubric.name.execution=In Durchf\u00fchrung rubric.name.help=Geben Sie diesem Rubric einen Namen und legen Sie fest, ob dieser im Fragebogen und in den Reports dargestellt werden soll. Im Report werden Rubrics ohne Namen zur Kennzeichnung durchnummeriert. rubric.name.report=In Reports rubric.name=Name @@ -116,7 +116,7 @@ rubric.neutral.explanation=Neutrale Beurteilung (Wert zwischen {0} und {1}) rubric.neutral=Neutral rubric.no.response.enabled=Spalte "$\:no.response" rubric.rating.help=Definieren Sie den Bereich der Beurteilung "{0}". Die Beurteilung wird in den einzelnen Reports und in der Analyse von Umfragen verwendet. Zudem basieren die Kriterien einiger Datenerhebungsgeneratoren auf diesem Bereich. -rubric.report.avg.abrev=\u00F8 +rubric.report.avg.abrev=\u00f8 rubric.report.avg.title=Durchschnitt rubric.report.end.lable.title= rubric.report.figure.title=Kennzahl @@ -127,12 +127,12 @@ rubric.report.number.no.responses.abrev=kA rubric.report.number.no.responses.title=Anzahl "$\:no.response" rubric.report.number.responses.abrev=A rubric.report.number.responses.title=Anzahl Antworten -rubric.report.sdtdev.abrev=\u03C3 +rubric.report.sdtdev.abrev=\u03c3 rubric.report.sdtdev.title=Standardabweichung rubric.report.start.label.title= rubric.report.total=Gesamttotal {0} rubric.report.value.title=Wert -rubric.report.variance.abrev=\u03C3\u00B2 +rubric.report.variance.abrev=\u03c3\u00b2 rubric.report.variance.title=Varianz rubric.report.weight.abrev=g rubric.report.weight.title=Gewichtung @@ -141,7 +141,7 @@ rubric.scale.maxToOne=Absteigende Likert-Skala (x bis 1) rubric.scale.maxToZero=Absteigende Likert-Skala (x bis 0) rubric.scale.oneToMax=Aufsteigende Likert-Skala (1 bis x) rubric.scale.zeroToMax=Aufsteigende Likert-Skala (0 bis x) -rubric.scale.type.help=Legen Sie die Werte der gew\u00E4hlten Skala fest. Die Werte werden in den Reports und der Analyse von Umfragen verwendet. +rubric.scale.type.help=Legen Sie die Werte der gew\u00e4hlten Skala fest. Die Werte werden in den Reports und der Analyse von Umfragen verwendet. rubric.scale.type=Skalentyp rubric.scale.zeroBallanced=Symmetrische Likert-Skala (-x bis x) rubric.sufficient.explanation=Gute Beurteilung (Wert zwischen {0} und {1}) @@ -152,9 +152,13 @@ rubric.upper.bound=bis save.as.done=Speichern und abschliessen save.intermediate=Zwischenspeichern session.informations.fill.in.label= -session.informations.fill.in=Automatisch einf\u00FCllen +session.informations.fill.in=Automatisch einf\u00fcllen session.informations.informations=Informationen session.informations.label={0} +session.information.obligation=Obligatorisch / Optional +session.information.obligation.autofill=Obligatorisch, automatisch ausgef\u00fcllt und nicht bearbeitbar +session.information.obligation.mandatory=Obligatorisch, bearbeitbar durch den Benutzer +session.information.obligation.optional=Optional, muss nicht ausgef\u00fcllt werden session.informations.report.number.participants=Es haben {0} Benutzer/innen an der Umfrage teilgenommen, {1} davon anonym. session.informations.type.age=Alter single.choice.presentation.dropdown=Auswahlliste @@ -172,8 +176,8 @@ slider.steps=Schritte slider.type=Typ slider.weight=Gewicht standalone.already.done=Sie haben bereits an der Umfrage teilgenommen. Vielen Dank! -standalone.done.now=Vielen Dank f\u00FCr Ihre Teilnahme an der Umfrage. -standalone.not.executable=Die Teilnahme an dieser Umfrage ist (noch) nicht m\u00F6glich. +standalone.done.now=Vielen Dank f\u00fcr Ihre Teilnahme an der Umfrage. +standalone.not.executable=Die Teilnahme an dieser Umfrage ist (noch) nicht m\u00f6glich. standalone.not.found=Es ist keine Umfrage vorhanden. start.label=Beginn textinput.download.info=Es werden {0} von {1} Texten angezeigt. @@ -187,4 +191,4 @@ textinput.rows.mode=Zeilentyp textinput.rows=Zeilen textinput.single.row=Eine Zeile title.example=<h1>Anklicken um Titel zu bearbeiten</h1> -warning.form.not.completed=Achtung! Sie haben nicht alle Felder ausgef\u00FCllt. +warning.form.not.completed=Achtung! Sie haben nicht alle Felder ausgef\u00fcllt. diff --git a/src/main/java/org/olat/modules/forms/ui/_i18n/LocalStrings_en.properties b/src/main/java/org/olat/modules/forms/ui/_i18n/LocalStrings_en.properties index 861ea2c5169..de22b0e8c39 100644 --- a/src/main/java/org/olat/modules/forms/ui/_i18n/LocalStrings_en.properties +++ b/src/main/java/org/olat/modules/forms/ui/_i18n/LocalStrings_en.properties @@ -115,7 +115,7 @@ rubric.neutral.explanation=Neutral assessment (value between {0} and {1}) rubric.neutral=Neutral rubric.no.response.enabled=Column "$\:no.response" rubric.rating.help=Define the range of the rating "{0}". The rating is used in reports and in the analysis of surveys. In addition, the criteria of some data collection generators are based on this range. -rubric.report.avg.abrev=\u00F8 +rubric.report.avg.abrev=\u00f8 rubric.report.avg.title=Average rubric.report.end.lable.title= rubric.report.figure.title=Figure @@ -126,12 +126,12 @@ rubric.report.number.no.responses.abrev=na rubric.report.number.no.responses.title=Number of "$\:no.response" rubric.report.number.responses.abrev=a rubric.report.number.responses.title=Number of answers -rubric.report.sdtdev.abrev=\u03C3 +rubric.report.sdtdev.abrev=\u03c3 rubric.report.sdtdev.title=Standard deviation rubric.report.start.label.title= rubric.report.total=Total {0} rubric.report.value.title=Value -rubric.report.variance.abrev=\u03C3\u00B2 +rubric.report.variance.abrev=\u03c3\u00b2 rubric.report.variance.title=Variance rubric.report.weight.abrev=w rubric.report.weight.title=Weight @@ -154,6 +154,10 @@ session.informations.fill.in.label= session.informations.fill.in=Fill in automatically session.informations.informations=Informations session.informations.label={0} +session.information.obligation=Mandatory / Optional +session.information.obligation.autofill=Mandatory, autofilled and not editable +session.information.obligation.mandatory=Mandatory, but editable by user +session.information.obligation.optional=Optional, can be left blank session.informations.report.number.participants={0} users have participated in the survey, thereof {1} anonymous. session.informations.type.age=Age single.choice.presentation.dropdown=Dropdown -- GitLab