]> source.dussan.org Git - nextcloud-server.git/commitdiff
l10n: Spelling unification
authorValdnet <47037905+Valdnet@users.noreply.github.com>
Wed, 15 Jun 2022 09:01:18 +0000 (11:01 +0200)
committerGitHub <noreply@github.com>
Wed, 15 Jun 2022 09:01:18 +0000 (11:01 +0200)
Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
apps/dav/lib/CalDAV/Activity/Provider/Todo.php

index 4b2796aca53d40b3c05077d1d52030b35472452e..e2ddb99a1af7fefdecbf46011a65c82581804aeb 100644 (file)
@@ -50,29 +50,29 @@ class Todo extends Event {
                }
 
                if ($event->getSubject() === self::SUBJECT_OBJECT_ADD . '_todo') {
-                       $subject = $this->l->t('{actor} created todo {todo} in list {calendar}');
+                       $subject = $this->l->t('{actor} created to-do {todo} in list {calendar}');
                } elseif ($event->getSubject() === self::SUBJECT_OBJECT_ADD . '_todo_self') {
-                       $subject = $this->l->t('You created todo {todo} in list {calendar}');
+                       $subject = $this->l->t('You created to-do {todo} in list {calendar}');
                } elseif ($event->getSubject() === self::SUBJECT_OBJECT_DELETE . '_todo') {
-                       $subject = $this->l->t('{actor} deleted todo {todo} from list {calendar}');
+                       $subject = $this->l->t('{actor} deleted to-do {todo} from list {calendar}');
                } elseif ($event->getSubject() === self::SUBJECT_OBJECT_DELETE . '_todo_self') {
-                       $subject = $this->l->t('You deleted todo {todo} from list {calendar}');
+                       $subject = $this->l->t('You deleted to-do {todo} from list {calendar}');
                } elseif ($event->getSubject() === self::SUBJECT_OBJECT_UPDATE . '_todo') {
-                       $subject = $this->l->t('{actor} updated todo {todo} in list {calendar}');
+                       $subject = $this->l->t('{actor} updated to-do {todo} in list {calendar}');
                } elseif ($event->getSubject() === self::SUBJECT_OBJECT_UPDATE . '_todo_self') {
-                       $subject = $this->l->t('You updated todo {todo} in list {calendar}');
+                       $subject = $this->l->t('You updated to-do {todo} in list {calendar}');
                } elseif ($event->getSubject() === self::SUBJECT_OBJECT_UPDATE . '_todo_completed') {
-                       $subject = $this->l->t('{actor} solved todo {todo} in list {calendar}');
+                       $subject = $this->l->t('{actor} solved to-do {todo} in list {calendar}');
                } elseif ($event->getSubject() === self::SUBJECT_OBJECT_UPDATE . '_todo_completed_self') {
-                       $subject = $this->l->t('You solved todo {todo} in list {calendar}');
+                       $subject = $this->l->t('You solved to-do {todo} in list {calendar}');
                } elseif ($event->getSubject() === self::SUBJECT_OBJECT_UPDATE . '_todo_needs_action') {
-                       $subject = $this->l->t('{actor} reopened todo {todo} in list {calendar}');
+                       $subject = $this->l->t('{actor} reopened to-do {todo} in list {calendar}');
                } elseif ($event->getSubject() === self::SUBJECT_OBJECT_UPDATE . '_todo_needs_action_self') {
-                       $subject = $this->l->t('You reopened todo {todo} in list {calendar}');
+                       $subject = $this->l->t('You reopened to-do {todo} in list {calendar}');
                } elseif ($event->getSubject() === self::SUBJECT_OBJECT_MOVE . '_todo') {
-                       $subject = $this->l->t('{actor} moved todo {todo} from list {sourceCalendar} to list {targetCalendar}');
+                       $subject = $this->l->t('{actor} moved to-do {todo} from list {sourceCalendar} to list {targetCalendar}');
                } elseif ($event->getSubject() === self::SUBJECT_OBJECT_MOVE . '_todo_self') {
-                       $subject = $this->l->t('You moved todo {todo} from list {sourceCalendar} to list {targetCalendar}');
+                       $subject = $this->l->t('You moved to-do {todo} from list {sourceCalendar} to list {targetCalendar}');
                } else {
                        throw new \InvalidArgumentException();
                }