Skip to content
Snippets Groups Projects
Commit 469d87c5 authored by srosse's avatar srosse
Browse files

OO-4623: wording and more dates check

parent 84f7b675
No related branches found
No related tags found
No related merge requests found
...@@ -50,7 +50,7 @@ error.too.long.time=Zeit ist zu lang. Es sind maximal {0} Minuten erlaubt. ...@@ -50,7 +50,7 @@ error.too.long.time=Zeit ist zu lang. Es sind maximal {0} Minuten erlaubt.
error.url.invalid=Ung\u00FCltige Serveradresse error.url.invalid=Ung\u00FCltige Serveradresse
filter.all.instances=Alle OpenOlats filter.all.instances=Alle OpenOlats
filter.this.instance=Dieses OpenOlat filter.this.instance=Dieses OpenOlat
meeting.create.intro=Der Online-Termin wurde vom Betreuer noch nicht er\u00F6ffnet. Teilnehmer k\u00F6nnen den Raum f\u00FCr noch nicht betreten. meeting.create.intro=Der Online-Termin wurde vom Betreuer noch nicht er\u00F6ffnet. Teilnehmer k\u00F6nnen den Raum noch nicht betreten.
meeting.day=Datum des Meetings meeting.day=Datum des Meetings
meeting.deleted=Das Meeting wurde erfolgreich gel\u00F6scht. meeting.deleted=Das Meeting wurde erfolgreich gel\u00F6scht.
meeting.description=Beschreibung meeting.description=Beschreibung
...@@ -63,7 +63,7 @@ meeting.leadTime=Vorlaufzeit (Min.) ...@@ -63,7 +63,7 @@ meeting.leadTime=Vorlaufzeit (Min.)
meeting.name=Name meeting.name=Name
meeting.permanent=Online-Termin planung meeting.permanent=Online-Termin planung
meeting.permanent.on=Ohne Datum meeting.permanent.on=Ohne Datum
meeting.recurring.end=End wiederkehrendes Datum meeting.recurring.end=Ende wiederkehrendes Datum
meeting.recurring.start=Start wiederkehrendes Datum meeting.recurring.start=Start wiederkehrendes Datum
meeting.resource=Kontext meeting.resource=Kontext
meeting.start=Beginn meeting.start=Beginn
......
...@@ -192,6 +192,12 @@ public class BigBlugButtonMeetingConfigurationController extends StepFormBasicCo ...@@ -192,6 +192,12 @@ public class BigBlugButtonMeetingConfigurationController extends StepFormBasicCo
endRecurringDateEl.setErrorKey("form.legende.mandatory", null); endRecurringDateEl.setErrorKey("form.legende.mandatory", null);
allOk &= false; allOk &= false;
} }
if(startRecurringDateEl.getDate() != null && endRecurringDateEl.getDate() != null
&& endRecurringDateEl.getDate().before(startRecurringDateEl.getDate())) {
endRecurringDateEl.setErrorKey("error.start.after.end", null);
allOk &= false;
}
startTimeEl.clearError(); startTimeEl.clearError();
if(startTimeEl.getDate() == null) { if(startTimeEl.getDate() == null) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment