diff --git a/calendar/setup/phpgw_en.lang b/calendar/setup/phpgw_en.lang
index 8dec5bd03e..224822974b 100644
--- a/calendar/setup/phpgw_en.lang
+++ b/calendar/setup/phpgw_en.lang
@@ -107,5 +107,6 @@ you have x high priority events on your calendar today. common en You have %1 hi
you have not entered a valid date calendar en You have not entered a valid date
you have not entered a title calendar en You have not entered a title
you have not entered a valid time of day calendar en You have not entered a valid time of day
+you have not entered participants calendar en You have not entered participants
you must enter one or more search keywords calendar en You must enter one or more search keywords
your suggested time of x - x conflicts with the following existing calendar entries: calendar en Your suggested time of %1 - %2 conflicts with the following existing calendar entries:
diff --git a/phpgwapi/inc/class.common.inc.php b/phpgwapi/inc/class.common.inc.php
index 691a5c0d4a..41ac387436 100644
--- a/phpgwapi/inc/class.common.inc.php
+++ b/phpgwapi/inc/class.common.inc.php
@@ -1411,6 +1411,8 @@
break;
case 42: $s .= lang('You have not entered a valid date').'.';
break;
+ case 43: $s .= lang('You have not entered participants').'.';
+ break;
default: return '';
}
return $s;