@@ -50,29 +50,29 @@ public function parse($language, IEvent $event, IEvent $previousEvent = null) {
5050 }
5151
5252 if ($ event ->getSubject () === self ::SUBJECT_OBJECT_ADD . '_todo ' ) {
53- $ subject = $ this ->l ->t ('{actor} created todo {todo} in list {calendar} ' );
53+ $ subject = $ this ->l ->t ('{actor} created to-do {todo} in list {calendar} ' );
5454 } elseif ($ event ->getSubject () === self ::SUBJECT_OBJECT_ADD . '_todo_self ' ) {
55- $ subject = $ this ->l ->t ('You created todo {todo} in list {calendar} ' );
55+ $ subject = $ this ->l ->t ('You created to-do {todo} in list {calendar} ' );
5656 } elseif ($ event ->getSubject () === self ::SUBJECT_OBJECT_DELETE . '_todo ' ) {
57- $ subject = $ this ->l ->t ('{actor} deleted todo {todo} from list {calendar} ' );
57+ $ subject = $ this ->l ->t ('{actor} deleted to-do {todo} from list {calendar} ' );
5858 } elseif ($ event ->getSubject () === self ::SUBJECT_OBJECT_DELETE . '_todo_self ' ) {
59- $ subject = $ this ->l ->t ('You deleted todo {todo} from list {calendar} ' );
59+ $ subject = $ this ->l ->t ('You deleted to-do {todo} from list {calendar} ' );
6060 } elseif ($ event ->getSubject () === self ::SUBJECT_OBJECT_UPDATE . '_todo ' ) {
61- $ subject = $ this ->l ->t ('{actor} updated todo {todo} in list {calendar} ' );
61+ $ subject = $ this ->l ->t ('{actor} updated to-do {todo} in list {calendar} ' );
6262 } elseif ($ event ->getSubject () === self ::SUBJECT_OBJECT_UPDATE . '_todo_self ' ) {
63- $ subject = $ this ->l ->t ('You updated todo {todo} in list {calendar} ' );
63+ $ subject = $ this ->l ->t ('You updated to-do {todo} in list {calendar} ' );
6464 } elseif ($ event ->getSubject () === self ::SUBJECT_OBJECT_UPDATE . '_todo_completed ' ) {
65- $ subject = $ this ->l ->t ('{actor} solved todo {todo} in list {calendar} ' );
65+ $ subject = $ this ->l ->t ('{actor} solved to-do {todo} in list {calendar} ' );
6666 } elseif ($ event ->getSubject () === self ::SUBJECT_OBJECT_UPDATE . '_todo_completed_self ' ) {
67- $ subject = $ this ->l ->t ('You solved todo {todo} in list {calendar} ' );
67+ $ subject = $ this ->l ->t ('You solved to-do {todo} in list {calendar} ' );
6868 } elseif ($ event ->getSubject () === self ::SUBJECT_OBJECT_UPDATE . '_todo_needs_action ' ) {
69- $ subject = $ this ->l ->t ('{actor} reopened todo {todo} in list {calendar} ' );
69+ $ subject = $ this ->l ->t ('{actor} reopened to-do {todo} in list {calendar} ' );
7070 } elseif ($ event ->getSubject () === self ::SUBJECT_OBJECT_UPDATE . '_todo_needs_action_self ' ) {
71- $ subject = $ this ->l ->t ('You reopened todo {todo} in list {calendar} ' );
71+ $ subject = $ this ->l ->t ('You reopened to-do {todo} in list {calendar} ' );
7272 } elseif ($ event ->getSubject () === self ::SUBJECT_OBJECT_MOVE . '_todo ' ) {
73- $ subject = $ this ->l ->t ('{actor} moved todo {todo} from list {sourceCalendar} to list {targetCalendar} ' );
73+ $ subject = $ this ->l ->t ('{actor} moved to-do {todo} from list {sourceCalendar} to list {targetCalendar} ' );
7474 } elseif ($ event ->getSubject () === self ::SUBJECT_OBJECT_MOVE . '_todo_self ' ) {
75- $ subject = $ this ->l ->t ('You moved todo {todo} from list {sourceCalendar} to list {targetCalendar} ' );
75+ $ subject = $ this ->l ->t ('You moved to-do {todo} from list {sourceCalendar} to list {targetCalendar} ' );
7676 } else {
7777 throw new \InvalidArgumentException ();
7878 }
0 commit comments