diff --git a/.github/workflows/codeception-min-version.yml b/.github/workflows/codeception-min-version.yml
index 68746948..4ea9c2d5 100644
--- a/.github/workflows/codeception-min-version.yml
+++ b/.github/workflows/codeception-min-version.yml
@@ -13,3 +13,4 @@ jobs:
with:
module-id: calendar
use-rest-module: true
+ rest-module-branch: develop
diff --git a/Events.php b/Events.php
index 9885c8aa..b0f0e932 100644
--- a/Events.php
+++ b/Events.php
@@ -3,17 +3,20 @@
namespace humhub\modules\calendar;
use DateTime;
+use humhub\helpers\ControllerHelper;
use humhub\modules\calendar\extensions\custom_pages\elements\CalendarEntryElement;
use humhub\modules\calendar\extensions\custom_pages\elements\CalendarEventsElement;
use humhub\modules\calendar\helpers\dav\SyncService;
use humhub\modules\calendar\helpers\RecurrenceHelper;
use humhub\modules\calendar\models\CalendarEntry;
use humhub\modules\calendar\models\CalendarEntryParticipant;
-use humhub\modules\calendar\models\ExportSettings;
use humhub\modules\calendar\models\MenuSettings;
use humhub\modules\content\events\ContentEvent;
-use humhub\modules\space\models\Space;
-use humhub\modules\user\models\User;
+use humhub\modules\content\widgets\WallEntryLinks;
+use humhub\modules\dashboard\widgets\Sidebar as DashboardSidebar;
+use humhub\modules\space\widgets\Menu;
+use humhub\modules\space\widgets\Sidebar as SpaceSidebar;
+use humhub\modules\ui\menu\MenuLink;
use humhub\modules\calendar\interfaces\event\EditableEventIF;
use humhub\modules\calendar\interfaces\event\CalendarItemTypesEvent;
use humhub\modules\calendar\interfaces\recurrence\RecurrentEventIF;
@@ -32,11 +35,13 @@
use humhub\modules\calendar\widgets\UpcomingEvents;
use humhub\modules\content\models\Content;
use humhub\modules\calendar\helpers\Url;
+use humhub\modules\user\widgets\ProfileMenu;
+use humhub\modules\user\widgets\ProfileSidebar;
+use humhub\widgets\TopMenu;
use Yii;
use yii\db\StaleObjectException;
use yii\helpers\Console;
use yii\web\Application;
-use humhub\components\ModuleEvent;
/**
* Description of CalendarEvents
@@ -107,15 +112,15 @@ public static function onTopMenuInit($event)
try {
if (SnippetModuleSettings::instance()->showGlobalCalendarItems()
&& MenuSettings::instance()->show) {
- $event->sender->addItem([
+ /* @var TopMenu $menu */
+ $menu = $event->sender;
+ $menu->addEntry(new MenuLink([
'label' => Yii::t('CalendarModule.base', 'Calendar'),
'url' => Url::toGlobalCalendar(),
- 'icon' => '',
- 'isActive' => (Yii::$app->controller->module
- && Yii::$app->controller->module->id == 'calendar'
- && Yii::$app->controller->id == 'global'),
+ 'icon' => 'calendar',
+ 'isActive' => ControllerHelper::isActivePath('calendar', 'global'),
'sortOrder' => MenuSettings::instance()->sortOrder,
- ]);
+ ]));
}
} catch (\Throwable $e) {
Yii::error($e);
@@ -125,17 +130,15 @@ public static function onTopMenuInit($event)
public static function onSpaceMenuInit($event)
{
try {
- /* @var Space $space */
- $space = $event->sender->space;
- if ($space->moduleManager->isEnabled('calendar')) {
- $event->sender->addItem([
+ /* @var Menu $menu */
+ $menu = $event->sender;
+ if ($menu->space->moduleManager->isEnabled('calendar')) {
+ $menu->addEntry(new MenuLink([
'label' => Yii::t('CalendarModule.base', 'Calendar'),
- 'group' => 'modules',
- 'url' => Url::toCalendar($space),
- 'icon' => '',
- 'isActive' => (Yii::$app->controller->module && Yii::$app->controller->module->id == 'calendar'),
-
- ]);
+ 'url' => Url::toCalendar($menu->space),
+ 'icon' => 'calendar',
+ 'isActive' => ControllerHelper::isActivePath('calendar'),
+ ]));
}
} catch (\Throwable $e) {
Yii::error($e);
@@ -145,15 +148,15 @@ public static function onSpaceMenuInit($event)
public static function onProfileMenuInit($event)
{
try {
- /* @var User $user */
- $user = $event->sender->user;
- if ($user->moduleManager->isEnabled('calendar')) {
- $event->sender->addItem([
+ /* @var ProfileMenu $menu */
+ $menu = $event->sender;
+ if ($menu->user->moduleManager->isEnabled('calendar')) {
+ $menu->addEntry(new MenuLink([
'label' => Yii::t('CalendarModule.base', 'Calendar'),
- 'url' => Url::toCalendar($user),
- 'icon' => '',
- 'isActive' => (Yii::$app->controller->module && Yii::$app->controller->module->id == 'calendar'),
- ]);
+ 'url' => Url::toCalendar($menu->user),
+ 'icon' => 'calendar',
+ 'isActive' => ControllerHelper::isActivePath('calendar'),
+ ]));
}
} catch (\Throwable $e) {
Yii::error($e);
@@ -163,14 +166,17 @@ public static function onProfileMenuInit($event)
public static function onSpaceSidebarInit($event)
{
try {
- /* @var Space $space */
- $space = $event->sender->space;
+ /* @var SpaceSidebar $sidebar */
+ $sidebar = $event->sender;
$settings = SnippetModuleSettings::instantiate();
- if ($space->moduleManager->isEnabled('calendar')) {
- if ($settings->showUpcomingEventsSnippet()) {
- $event->sender->addWidget(UpcomingEvents::class, ['contentContainer' => $space], ['sortOrder' => $settings->upcomingEventsSnippetSortOrder]);
- }
+ if ($sidebar->space->moduleManager->isEnabled('calendar')
+ && $settings->showUpcomingEventsSnippet()) {
+ $sidebar->addWidget(
+ UpcomingEvents::class,
+ ['contentContainer' => $sidebar->space],
+ ['sortOrder' => $settings->upcomingEventsSnippetSortOrder],
+ );
}
} catch (\Throwable $e) {
Yii::error($e);
@@ -180,10 +186,12 @@ public static function onSpaceSidebarInit($event)
public static function onDashboardSidebarInit($event)
{
try {
+ /* @var DashboardSidebar $sidebar */
+ $sidebar = $event->sender;
$settings = SnippetModuleSettings::instantiate();
if ($settings->showUpcomingEventsSnippet()) {
- $event->sender->addWidget(UpcomingEvents::class, [], ['sortOrder' => $settings->upcomingEventsSnippetSortOrder]);
+ $sidebar->addWidget(UpcomingEvents::class, [], ['sortOrder' => $settings->upcomingEventsSnippetSortOrder]);
}
} catch (\Throwable $e) {
Yii::error($e);
@@ -197,12 +205,18 @@ public static function onProfileSidebarInit($event)
return;
}
- $user = $event->sender->user;
- if ($user != null) {
+ /* @var ProfileSidebar $sidebar */
+ $sidebar = $event->sender;
+
+ if ($sidebar->user != null) {
$settings = SnippetModuleSettings::instantiate();
if ($settings->showUpcomingEventsSnippet()) {
- $event->sender->addWidget(UpcomingEvents::class, ['contentContainer' => $user], ['sortOrder' => $settings->upcomingEventsSnippetSortOrder]);
+ $sidebar->addWidget(
+ UpcomingEvents::class,
+ ['contentContainer' => $sidebar->user],
+ ['sortOrder' => $settings->upcomingEventsSnippetSortOrder],
+ );
}
}
} catch (\Throwable $e) {
@@ -213,14 +227,17 @@ public static function onProfileSidebarInit($event)
public static function onWallEntryLinks($event)
{
try {
- $eventModel = static::getCalendarEvent($event->sender->object);
+ /* @var WallEntryLinks $links */
+ $links = $event->sender;
+
+ $eventModel = static::getCalendarEvent($links->object);
if (!$eventModel) {
return;
}
if ($eventModel instanceof ContentActiveRecord && $eventModel instanceof CalendarEventIF) {
- $event->sender->addWidget(DownloadIcsLink::class, ['calendarEntry' => $eventModel]);
+ $links->addWidget(DownloadIcsLink::class, ['calendarEntry' => $eventModel]);
}
/* @var $eventModel CalendarEventIF */
@@ -229,7 +246,7 @@ public static function onWallEntryLinks($event)
}
if ($eventModel instanceof CalendarEventReminderIF && !RecurrenceHelper::isRecurrentRoot($eventModel)) {
- $event->sender->addWidget(ReminderLink::class, ['entry' => $eventModel]);
+ $links->addWidget(ReminderLink::class, ['entry' => $eventModel]);
}
} catch (\Throwable $e) {
Yii::error($e);
diff --git a/Module.php b/Module.php
index b9c6816d..f3eded86 100644
--- a/Module.php
+++ b/Module.php
@@ -2,7 +2,6 @@
namespace humhub\modules\calendar;
-use humhub\components\console\Application as ConsoleApplication;
use humhub\modules\calendar\models\CalendarEntryType;
use Yii;
use humhub\modules\calendar\helpers\Url;
@@ -47,19 +46,6 @@ class Module extends ContentContainerModule
*/
public $icsOrganizer = false;
- /**
- * @inheritdoc
- */
- public function init()
- {
- parent::init();
-
- if (Yii::$app instanceof ConsoleApplication) {
- // Prevents the Yii HelpCommand from crawling all web controllers and possibly throwing errors at REST endpoints if the REST module is not available.
- $this->controllerNamespace = 'calendar/commands';
- }
- }
-
/**
* @return bool
*/
diff --git a/activities/ResponseAttend.php b/activities/ResponseAttend.php
index e919fb27..bc79cfee 100644
--- a/activities/ResponseAttend.php
+++ b/activities/ResponseAttend.php
@@ -1,40 +1,36 @@
*/
-class ResponseAttend extends BaseActivity implements ConfigurableActivityInterface
+class ResponseAttend extends BaseContentActivity implements ConfigurableActivityInterface
{
- public $viewName = 'response_attend';
- public $moduleId = 'calendar';
+ protected string $contentActiveRecordClass = CalendarEntry::class;
- /**
- * @inheritdoc
- */
- public function getTitle()
+ public static function getTitle(): string
{
return Yii::t('CalendarModule.notification', 'Calendar: attend');
}
- /**
- * @inheritdoc
- */
- public function getDescription()
+ public static function getDescription(): string
{
return Yii::t('CalendarModule.notification', 'Whenever someone participates in an event.');
}
+
+ protected function getMessage(array $params): string
+ {
+ $params['dateTime']
+ = (new CalendarDateFormatter(['calendarItem' => $this->contentActiveRecord]))
+ ->getFormattedTime('short');
+
+ return Yii::t('CalendarModule.views', '{displayName} is attending Event "{contentTitle}" on {dateTime}.', $params);
+ }
}
diff --git a/activities/ResponseDeclined.php b/activities/ResponseDeclined.php
index 448e5b81..2708c798 100644
--- a/activities/ResponseDeclined.php
+++ b/activities/ResponseDeclined.php
@@ -1,40 +1,36 @@
*/
-class ResponseDeclined extends BaseActivity implements ConfigurableActivityInterface
+class ResponseDeclined extends BaseContentActivity implements ConfigurableActivityInterface
{
- public $viewName = 'response_declined';
- public $moduleId = 'calendar';
+ protected string $contentActiveRecordClass = CalendarEntry::class;
- /**
- * @inheritdoc
- */
- public function getTitle()
+ public static function getTitle(): string
{
return Yii::t('CalendarModule.notification', 'Calendar: decline');
}
- /**
- * @inheritdoc
- */
- public function getDescription()
+ public static function getDescription(): string
{
return Yii::t('CalendarModule.notification', 'Whenever someone declines to participate in an event.');
}
+
+ protected function getMessage(array $params): string
+ {
+ $params['dateTime'] = (new CalendarDateFormatter(
+ ['calendarItem' => $this->contentActiveRecord],
+ ))->getFormattedTime('short');
+
+ return Yii::t('CalendarModule.views', '{displayName} is attending Event "{contentTitle}" on {dateTime}.', $params);
+ }
}
diff --git a/activities/ResponseInvited.php b/activities/ResponseInvited.php
index 4f525017..f117a204 100644
--- a/activities/ResponseInvited.php
+++ b/activities/ResponseInvited.php
@@ -1,40 +1,35 @@
*/
-class ResponseInvited extends BaseActivity implements ConfigurableActivityInterface
+class ResponseInvited extends BaseContentActivity implements ConfigurableActivityInterface
{
- public $viewName = 'response_invited';
- public $moduleId = 'calendar';
+ protected string $contentActiveRecordClass = CalendarEntry::class;
- /**
- * @inheritdoc
- */
- public function getTitle()
+ public static function getTitle(): string
{
return Yii::t('CalendarModule.notification', 'Calendar: Invite');
}
- /**
- * @inheritdoc
- */
- public function getDescription()
+ public static function getDescription(): string
{
return Yii::t('CalendarModule.notification', 'Whenever someone invites to participate in an event.');
}
+
+ protected function getMessage(array $params): string
+ {
+ $params['dateTime'] = (new CalendarDateFormatter(
+ ['calendarItem' => $this->contentActiveRecord],
+ ))->getFormattedTime();
+ return Yii::t('CalendarModule.views', '{displayName} is attending Event "{contentTitle}" on {dateTime}.', $params);
+ }
}
diff --git a/activities/ResponseMaybe.php b/activities/ResponseMaybe.php
index 792b9dae..db52b6f8 100644
--- a/activities/ResponseMaybe.php
+++ b/activities/ResponseMaybe.php
@@ -1,40 +1,36 @@
*/
-class ResponseMaybe extends BaseActivity implements ConfigurableActivityInterface
+class ResponseMaybe extends BaseContentActivity implements ConfigurableActivityInterface
{
- public $viewName = 'response_maybe';
- public $moduleId = 'calendar';
+ protected string $contentActiveRecordClass = CalendarEntry::class;
- /**
- * @inheritdoc
- */
- public function getTitle()
+ public static function getTitle(): string
{
return Yii::t('CalendarModule.notification', 'Calendar: maybe');
}
- /**
- * @inheritdoc
- */
- public function getDescription()
+ public static function getDescription(): string
{
return Yii::t('CalendarModule.notification', 'Whenever someone may be participating in an event.');
}
+
+ protected function getMessage(array $params): string
+ {
+ $params['dateTime'] = (new CalendarDateFormatter(
+ ['calendarItem' => $this->contentActiveRecord],
+ ))->getFormattedTime();
+
+ return Yii::t('CalendarModule.views', '{displayName} is attending Event "{contentTitle}" on {dateTime}.', $params);
+ }
}
diff --git a/activities/views/response_attend.php b/activities/views/response_attend.php
deleted file mode 100644
index 6783ef83..00000000
--- a/activities/views/response_attend.php
+++ /dev/null
@@ -1,17 +0,0 @@
- $source]);
-?>
-
-= Yii::t('CalendarModule.views', '{displayName} is attending {contentTitle} on {dateTime}.', [
- 'displayName' => '' . Html::encode($originator->displayName) . '',
- 'contentTitle' => $this->context->getContentInfo($source),
- 'dateTime' => $formatter->getFormattedTime(),
-]) ?>
diff --git a/activities/views/response_declined.php b/activities/views/response_declined.php
deleted file mode 100644
index e9eaf1f6..00000000
--- a/activities/views/response_declined.php
+++ /dev/null
@@ -1,17 +0,0 @@
- $source]);
-?>
-
-= Yii::t('CalendarModule.views', '{displayName} cannot attend {contentTitle} on {dateTime}.', [
- 'displayName' => '' . Html::encode($originator->displayName) . '',
- 'contentTitle' => $this->context->getContentInfo($source),
- 'dateTime' => $formatter->getFormattedTime(),
-]) ?>
diff --git a/activities/views/response_invited.php b/activities/views/response_invited.php
deleted file mode 100644
index 7a6bfdb5..00000000
--- a/activities/views/response_invited.php
+++ /dev/null
@@ -1,17 +0,0 @@
- $source]);
-?>
-
-= Yii::t('CalendarModule.views', '{displayName} is invited to {contentTitle} on {dateTime}.', [
- 'displayName' => '' . Html::encode($originator->displayName) . '',
- 'contentTitle' => $this->context->getContentInfo($source),
- 'dateTime' => $formatter->getFormattedTime(),
-]) ?>
diff --git a/activities/views/response_maybe.php b/activities/views/response_maybe.php
deleted file mode 100644
index 319a31c0..00000000
--- a/activities/views/response_maybe.php
+++ /dev/null
@@ -1,17 +0,0 @@
- $source]);
-?>
-
-= Yii::t('CalendarModule.views', '{displayName} might be attending {contentTitle} on {dateTime}.', [
- 'displayName' => '' . Html::encode($originator->displayName) . '',
- 'contentTitle' => $this->context->getContentInfo($source),
- 'dateTime' => $formatter->getFormattedTime(),
-]) ?>
diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md
index 14879b33..4ead658e 100644
--- a/docs/CHANGELOG.md
+++ b/docs/CHANGELOG.md
@@ -1,6 +1,11 @@
Changelog
=========
+1.9.0 (June 5, 2026)
+--------------------
+- Fix: HumHub 1.19 Activity Handling
+- Enh #673: Remove deprecations
+
1.8.15 (Unreleased)
-------------------
- Enh: Automated code refactoring for HumHub 1.18.0-beta.6 using Rector
diff --git a/messages/am/views.php b/messages/am/views.php
index 1d1fcba7..576c3152 100644
--- a/messages/am/views.php
+++ b/messages/am/views.php
@@ -1,59 +1,57 @@
'',
- ':count Declined' => '',
- ':count Invited' => '',
- ':count Undecided' => '',
- 'Create Event' => '',
- 'Create new event type' => '',
- 'Edit Event' => '',
- 'Edit calendar' => '',
- 'Edit event type' => '',
- 'Edit recurring event' => '',
- 'Upcoming events ' => '',
- 'Additional information' => '',
- 'All' => '',
- 'Are you sure want to remove the participant from the event?' => '',
- 'Attend' => '',
- 'Attending' => '',
- 'Back' => 'ተመለስ',
- 'Calendars' => '',
- 'Close' => 'ዝጋ',
- 'Decline' => '',
- 'Declined' => '',
- 'Defaults' => '',
- 'Event Types' => '',
- 'Everybody can participate' => '',
- 'Export' => 'ላክ',
- 'Filter' => 'አጣራ',
- 'Filter events' => '',
- 'Followed spaces' => '',
- 'Followed users' => '',
- 'General' => 'አጠቃላይ',
- 'I\'m attending' => '',
- 'Invited' => '',
- 'Maybe' => '',
- 'Menu' => 'ማውጫ',
- 'My events' => '',
- 'My profile' => 'የግል መረጃዬ',
- 'My spaces' => '',
- 'Next' => 'ቀጥሎ',
- 'No participants' => '',
- 'Only by Invite' => '',
- 'Open Calendar' => '',
- 'Participants' => '',
- 'Recurrence' => '',
- 'Reminder' => '',
- 'Select calendars' => '',
- 'Select event type...' => '',
- 'Settings' => 'ማስተካከያዎች',
- 'Snippet' => '',
- 'Title' => 'ርዕስ',
- 'Undecided' => '',
- 'You are invited, please select your role:' => '',
- '{count} Participants' => '',
- '{displayName} cannot attend {contentTitle} on {dateTime}.' => '',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '',
+ 'Back' => 'ተመለስ',
+ 'Close' => 'ዝጋ',
+ 'Export' => 'ላክ',
+ 'Filter' => 'አጣራ',
+ 'General' => 'አጠቃላይ',
+ 'Menu' => 'ማውጫ',
+ 'My profile' => 'የግል መረጃዬ',
+ 'Next' => 'ቀጥሎ',
+ 'Settings' => 'ማስተካከያዎች',
+ 'Title' => 'ርዕስ',
+ ':count Attending' => '',
+ ':count Declined' => '',
+ ':count Invited' => '',
+ ':count Undecided' => '',
+ 'Create Event' => '',
+ 'Create new event type' => '',
+ 'Edit Event' => '',
+ 'Edit calendar' => '',
+ 'Edit event type' => '',
+ 'Edit recurring event' => '',
+ 'Upcoming events ' => '',
+ 'Additional information' => '',
+ 'All' => '',
+ 'Are you sure want to remove the participant from the event?' => '',
+ 'Attend' => '',
+ 'Attending' => '',
+ 'Calendars' => '',
+ 'Decline' => '',
+ 'Declined' => '',
+ 'Defaults' => '',
+ 'Event Types' => '',
+ 'Everybody can participate' => '',
+ 'Filter events' => '',
+ 'Followed spaces' => '',
+ 'Followed users' => '',
+ 'I\'m attending' => '',
+ 'Invited' => '',
+ 'Maybe' => '',
+ 'My events' => '',
+ 'My spaces' => '',
+ 'No participants' => '',
+ 'Only by Invite' => '',
+ 'Open Calendar' => '',
+ 'Participants' => '',
+ 'Recurrence' => '',
+ 'Reminder' => '',
+ 'Select calendars' => '',
+ 'Select event type...' => '',
+ 'Snippet' => '',
+ 'Undecided' => '',
+ 'You are invited, please select your role:' => '',
+ '{count} Participants' => '',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/an/views.php b/messages/an/views.php
index cfff28b1..1d1f7544 100644
--- a/messages/an/views.php
+++ b/messages/an/views.php
@@ -1,59 +1,57 @@
'',
- ':count Declined' => '',
- ':count Invited' => '',
- ':count Undecided' => '',
- 'Create Event' => '',
- 'Create new event type' => '',
- 'Edit Event' => '',
- 'Edit calendar' => '',
- 'Edit event type' => '',
- 'Edit recurring event' => '',
- 'Upcoming events ' => '',
- 'Additional information' => '',
- 'All' => 'Tot',
- 'Are you sure want to remove the participant from the event?' => '',
- 'Attend' => '',
- 'Attending' => '',
- 'Back' => 'Tornar',
- 'Calendars' => '',
- 'Close' => 'Zavřít',
- 'Decline' => '',
- 'Declined' => '',
- 'Defaults' => '',
- 'Event Types' => '',
- 'Everybody can participate' => '',
- 'Export' => 'Exportar:',
- 'Filter' => 'Filtrar',
- 'Filter events' => '',
- 'Followed spaces' => '',
- 'Followed users' => '',
- 'General' => 'Cheneral',
- 'I\'m attending' => '',
- 'Invited' => '',
- 'Maybe' => '',
- 'Menu' => 'Menú',
- 'My events' => '',
- 'My profile' => 'O mío perfil',
- 'My spaces' => 'Espacios',
- 'Next' => 'Siguient',
- 'No participants' => '',
- 'Only by Invite' => '',
- 'Open Calendar' => '',
- 'Participants' => '',
- 'Recurrence' => '',
- 'Reminder' => '',
- 'Select calendars' => '',
- 'Select event type...' => '',
- 'Settings' => 'Achustes',
- 'Snippet' => '',
- 'Title' => 'Titulek',
- 'Undecided' => '',
- 'You are invited, please select your role:' => '',
- '{count} Participants' => '',
- '{displayName} cannot attend {contentTitle} on {dateTime}.' => '',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '',
+ 'All' => 'Tot',
+ 'Back' => 'Tornar',
+ 'Close' => 'Zavřít',
+ 'Export' => 'Exportar:',
+ 'Filter' => 'Filtrar',
+ 'General' => 'Cheneral',
+ 'Menu' => 'Menú',
+ 'My profile' => 'O mío perfil',
+ 'My spaces' => 'Espacios',
+ 'Next' => 'Siguient',
+ 'Settings' => 'Achustes',
+ 'Title' => 'Titulek',
+ ':count Attending' => '',
+ ':count Declined' => '',
+ ':count Invited' => '',
+ ':count Undecided' => '',
+ 'Create Event' => '',
+ 'Create new event type' => '',
+ 'Edit Event' => '',
+ 'Edit calendar' => '',
+ 'Edit event type' => '',
+ 'Edit recurring event' => '',
+ 'Upcoming events ' => '',
+ 'Additional information' => '',
+ 'Are you sure want to remove the participant from the event?' => '',
+ 'Attend' => '',
+ 'Attending' => '',
+ 'Calendars' => '',
+ 'Decline' => '',
+ 'Declined' => '',
+ 'Defaults' => '',
+ 'Event Types' => '',
+ 'Everybody can participate' => '',
+ 'Filter events' => '',
+ 'Followed spaces' => '',
+ 'Followed users' => '',
+ 'I\'m attending' => '',
+ 'Invited' => '',
+ 'Maybe' => '',
+ 'My events' => '',
+ 'No participants' => '',
+ 'Only by Invite' => '',
+ 'Open Calendar' => '',
+ 'Participants' => '',
+ 'Recurrence' => '',
+ 'Reminder' => '',
+ 'Select calendars' => '',
+ 'Select event type...' => '',
+ 'Snippet' => '',
+ 'Undecided' => '',
+ 'You are invited, please select your role:' => '',
+ '{count} Participants' => '',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/ar/views.php b/messages/ar/views.php
index e8033f7e..de6412e9 100644
--- a/messages/ar/views.php
+++ b/messages/ar/views.php
@@ -1,59 +1,57 @@
':عدد الحضور',
- ':count Declined' => ':عدد الرافضين',
- ':count Invited' => ':عدد المدعوين',
- ':count Undecided' => ': عدد غير المقررين',
- 'Create Event' => 'إنشاء حدث',
- 'Create new event type' => 'إنشاء نوع حدث جديد',
- 'Edit Event' => 'تحرير الحدث',
- 'Edit calendar' => 'تحرير التقويم',
- 'Edit event type' => 'تعديل نوع الحدث',
- 'Edit recurring event' => 'تحرير الحدث المتكرر',
- 'Upcoming events ' => 'الأحداث القادمة',
- 'Additional information' => 'معلومات إضافية',
- 'All' => 'الكل',
- 'Are you sure want to remove the participant from the event?' => 'هل أنت متأكد أنك تريد إزالة المشارك من الحدث؟',
- 'Attend' => 'حضور',
- 'Attending' => 'الحضور',
- 'Back' => 'عودة',
- 'Calendars' => 'التقويمات',
- 'Close' => 'اغلاق',
- 'Decline' => 'رفض',
- 'Declined' => 'المرفوض',
- 'Defaults' => 'الافتراضيات',
- 'Event Types' => 'أنواع الأحداث',
- 'Everybody can participate' => 'الكل يمكنه المشاركة',
- 'Export' => 'تصدير',
- 'Filter' => 'تصفية',
- 'Filter events' => 'فرز الأحداث',
- 'Followed spaces' => 'الباحات المتبعة',
- 'Followed users' => 'المستخدمون المتبعون',
- 'General' => 'العام',
- 'I\'m attending' => 'أنا سأحضرها',
- 'Invited' => 'مدعو',
- 'Maybe' => 'ربما',
- 'Menu' => 'القائمة',
- 'My events' => 'أحداثي',
- 'My profile' => 'ملفي الشخصي',
- 'My spaces' => 'باحاتي',
- 'Next' => 'التالي',
- 'No participants' => 'لا مشاركين',
- 'Only by Invite' => 'فقط بواسطة دعوة',
- 'Open Calendar' => 'فتح التقويم',
- 'Participants' => 'المشاركون',
- 'Recurrence' => 'التكرار',
- 'Reminder' => 'تذكير',
- 'Select calendars' => 'اختيار تقاويم',
- 'Select event type...' => 'اختيار نوع الحدث...',
- 'Settings' => 'الإعدادات',
- 'Snippet' => 'المقتطف',
- 'Title' => 'العنوان',
- 'Undecided' => 'غير مقرر',
- 'You are invited, please select your role:' => 'أنت مدعو، من فضلك اختر دوراً:',
- '{count} Participants' => '{count} مشاركين',
- '{displayName} cannot attend {contentTitle} on {dateTime}.' => 'لا يمكن لـ {displayName} حضور {contentTitle} في {dateTime}.',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '{displayName} يحضر {dateTime} في {contentTitle}',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => 'تمت دعوة {displayName} إلى {contentTitle} في {dateTime}.',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '{displayName} قد يحضر {dateTime} في {contentTitle}.',
+ ':count Attending' => ':عدد الحضور',
+ ':count Declined' => ':عدد الرافضين',
+ ':count Invited' => ':عدد المدعوين',
+ ':count Undecided' => ': عدد غير المقررين',
+ 'Create Event' => 'إنشاء حدث',
+ 'Create new event type' => 'إنشاء نوع حدث جديد',
+ 'Edit Event' => 'تحرير الحدث',
+ 'Edit calendar' => 'تحرير التقويم',
+ 'Edit event type' => 'تعديل نوع الحدث',
+ 'Edit recurring event' => 'تحرير الحدث المتكرر',
+ 'Upcoming events ' => 'الأحداث القادمة',
+ 'Additional information' => 'معلومات إضافية',
+ 'All' => 'الكل',
+ 'Are you sure want to remove the participant from the event?' => 'هل أنت متأكد أنك تريد إزالة المشارك من الحدث؟',
+ 'Attend' => 'حضور',
+ 'Attending' => 'الحضور',
+ 'Back' => 'عودة',
+ 'Calendars' => 'التقويمات',
+ 'Close' => 'اغلاق',
+ 'Decline' => 'رفض',
+ 'Declined' => 'المرفوض',
+ 'Defaults' => 'الافتراضيات',
+ 'Event Types' => 'أنواع الأحداث',
+ 'Everybody can participate' => 'الكل يمكنه المشاركة',
+ 'Export' => 'تصدير',
+ 'Filter' => 'تصفية',
+ 'Filter events' => 'فرز الأحداث',
+ 'Followed spaces' => 'الباحات المتبعة',
+ 'Followed users' => 'المستخدمون المتبعون',
+ 'General' => 'العام',
+ 'I\'m attending' => 'أنا سأحضرها',
+ 'Invited' => 'مدعو',
+ 'Maybe' => 'ربما',
+ 'Menu' => 'القائمة',
+ 'My events' => 'أحداثي',
+ 'My profile' => 'ملفي الشخصي',
+ 'My spaces' => 'باحاتي',
+ 'Next' => 'التالي',
+ 'No participants' => 'لا مشاركين',
+ 'Only by Invite' => 'فقط بواسطة دعوة',
+ 'Open Calendar' => 'فتح التقويم',
+ 'Participants' => 'المشاركون',
+ 'Recurrence' => 'التكرار',
+ 'Reminder' => 'تذكير',
+ 'Select calendars' => 'اختيار تقاويم',
+ 'Select event type...' => 'اختيار نوع الحدث...',
+ 'Settings' => 'الإعدادات',
+ 'Snippet' => 'المقتطف',
+ 'Title' => 'العنوان',
+ 'Undecided' => 'غير مقرر',
+ 'You are invited, please select your role:' => 'أنت مدعو، من فضلك اختر دوراً:',
+ '{count} Participants' => '{count} مشاركين',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/bg/views.php b/messages/bg/views.php
index 0a168cd2..9e6ab01f 100644
--- a/messages/bg/views.php
+++ b/messages/bg/views.php
@@ -1,59 +1,57 @@
'',
- ':count Declined' => '',
- ':count Invited' => '',
- ':count Undecided' => '',
- 'Create Event' => '',
- 'Create new event type' => 'Създайте нов тип събитие',
- 'Edit Event' => '',
- 'Edit calendar' => 'Редактиране на календар',
- 'Edit event type' => 'Редактиране на тип събитие',
- 'Edit recurring event' => 'Редактиране на повтарящо се събитие',
- 'Upcoming events ' => 'Предстоящи събития',
- 'Additional information' => 'Допълнителна информация',
- 'All' => 'Всички',
- 'Are you sure want to remove the participant from the event?' => '',
- 'Attend' => 'Присъствам',
- 'Attending' => 'Присъствие',
- 'Back' => 'Назад',
- 'Calendars' => 'Календари',
- 'Close' => 'Затвори',
- 'Decline' => 'Отказвам',
- 'Declined' => '',
- 'Defaults' => 'По подразбиране',
- 'Event Types' => 'Типове събития',
- 'Everybody can participate' => 'Всеки може да участва',
- 'Export' => 'Извличане',
- 'Filter' => 'Филтър',
- 'Filter events' => '',
- 'Followed spaces' => 'Следвани раздели',
- 'Followed users' => 'Следвани потребители',
- 'General' => 'Общ',
- 'I\'m attending' => 'Посещавам',
- 'Invited' => '',
- 'Maybe' => 'Не съм сигурен',
- 'Menu' => 'Меню',
- 'My events' => 'Моите Събития',
- 'My profile' => 'Моят Профил',
- 'My spaces' => 'Моите Раздели',
- 'Next' => 'Следващ',
- 'No participants' => 'Няма участници',
- 'Only by Invite' => '',
- 'Open Calendar' => 'Отворете Календар',
- 'Participants' => 'Участници',
- 'Recurrence' => 'Повтаряне',
- 'Reminder' => 'Напомняне',
- 'Select calendars' => '',
- 'Select event type...' => 'Изберете тип събитие...',
- 'Settings' => 'Настройки',
- 'Snippet' => 'Фрагмент',
- 'Title' => 'Заглавие',
- 'Undecided' => '',
- 'You are invited, please select your role:' => '',
- '{count} Participants' => '',
- '{displayName} cannot attend {contentTitle} on {dateTime}.' => '{displayName} не може да присъства на {contentTitle} на {dateTime}.',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '{displayName} присъства на {contentTitle} на {dateTime}.',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '{displayName} може да присъства на {contentTitle} на {dateTime}.',
+ 'Create new event type' => 'Създайте нов тип събитие',
+ 'Edit calendar' => 'Редактиране на календар',
+ 'Edit event type' => 'Редактиране на тип събитие',
+ 'Edit recurring event' => 'Редактиране на повтарящо се събитие',
+ 'Upcoming events ' => 'Предстоящи събития',
+ 'Additional information' => 'Допълнителна информация',
+ 'All' => 'Всички',
+ 'Attend' => 'Присъствам',
+ 'Attending' => 'Присъствие',
+ 'Back' => 'Назад',
+ 'Calendars' => 'Календари',
+ 'Close' => 'Затвори',
+ 'Decline' => 'Отказвам',
+ 'Defaults' => 'По подразбиране',
+ 'Event Types' => 'Типове събития',
+ 'Everybody can participate' => 'Всеки може да участва',
+ 'Export' => 'Извличане',
+ 'Filter' => 'Филтър',
+ 'Followed spaces' => 'Следвани раздели',
+ 'Followed users' => 'Следвани потребители',
+ 'General' => 'Общ',
+ 'I\'m attending' => 'Посещавам',
+ 'Maybe' => 'Не съм сигурен',
+ 'Menu' => 'Меню',
+ 'My events' => 'Моите Събития',
+ 'My profile' => 'Моят Профил',
+ 'My spaces' => 'Моите Раздели',
+ 'Next' => 'Следващ',
+ 'No participants' => 'Няма участници',
+ 'Open Calendar' => 'Отворете Календар',
+ 'Participants' => 'Участници',
+ 'Recurrence' => 'Повтаряне',
+ 'Reminder' => 'Напомняне',
+ 'Select event type...' => 'Изберете тип събитие...',
+ 'Settings' => 'Настройки',
+ 'Snippet' => 'Фрагмент',
+ 'Title' => 'Заглавие',
+ ':count Attending' => '',
+ ':count Declined' => '',
+ ':count Invited' => '',
+ ':count Undecided' => '',
+ 'Create Event' => '',
+ 'Edit Event' => '',
+ 'Are you sure want to remove the participant from the event?' => '',
+ 'Declined' => '',
+ 'Filter events' => '',
+ 'Invited' => '',
+ 'Only by Invite' => '',
+ 'Select calendars' => '',
+ 'Undecided' => '',
+ 'You are invited, please select your role:' => '',
+ '{count} Participants' => '',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/br/views.php b/messages/br/views.php
index 08350f0a..4338c5ac 100644
--- a/messages/br/views.php
+++ b/messages/br/views.php
@@ -1,10 +1,6 @@
'',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '',
':count Attending' => '',
':count Declined' => '',
':count Invited' => '',
@@ -57,4 +53,5 @@
'Undecided' => '',
'You are invited, please select your role:' => '',
'{count} Participants' => '',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/ca/views.php b/messages/ca/views.php
index c6d2883a..a93abff0 100644
--- a/messages/ca/views.php
+++ b/messages/ca/views.php
@@ -1,59 +1,57 @@
'',
- ':count Declined' => '',
- ':count Invited' => '',
- ':count Undecided' => '',
- 'Create Event' => '',
- 'Create new event type' => '',
- 'Edit Event' => '',
- 'Edit calendar' => '',
- 'Edit event type' => '',
- 'Edit recurring event' => '',
- 'Upcoming events ' => 'Pròxims esdeveniments ',
- 'Additional information' => '',
- 'All' => 'Totes',
- 'Are you sure want to remove the participant from the event?' => '',
- 'Attend' => 'Hi assistiré',
- 'Attending' => 'Assistint',
- 'Back' => 'Enrere',
- 'Calendars' => '',
- 'Close' => 'Tanca',
- 'Decline' => 'No hi assistiré',
- 'Declined' => '',
- 'Defaults' => '',
- 'Event Types' => '',
- 'Everybody can participate' => 'Tothom pot participar',
- 'Export' => 'Exporta:',
- 'Filter' => 'Filtre',
- 'Filter events' => '',
- 'Followed spaces' => 'Espais on participes',
- 'Followed users' => 'Membres a qui segueixes',
- 'General' => 'General',
- 'I\'m attending' => 'Hi aniré',
- 'Invited' => '',
- 'Maybe' => 'Potser',
- 'Menu' => 'Menú',
- 'My events' => 'Els meus esdeveniments',
- 'My profile' => 'El meu perfil',
- 'My spaces' => 'Els meus espais',
- 'Next' => 'Següent',
- 'No participants' => 'No participants',
- 'Only by Invite' => '',
- 'Open Calendar' => '',
- 'Participants' => 'Participants',
- 'Recurrence' => '',
- 'Reminder' => '',
- 'Select calendars' => '',
- 'Select event type...' => '',
- 'Settings' => 'Configuració',
- 'Snippet' => '',
- 'Title' => 'Títol',
- 'Undecided' => '',
- 'You are invited, please select your role:' => '',
- '{count} Participants' => '',
- '{displayName} cannot attend {contentTitle} on {dateTime}.' => '',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '',
+ 'Upcoming events ' => 'Pròxims esdeveniments ',
+ 'All' => 'Totes',
+ 'Attend' => 'Hi assistiré',
+ 'Attending' => 'Assistint',
+ 'Back' => 'Enrere',
+ 'Close' => 'Tanca',
+ 'Decline' => 'No hi assistiré',
+ 'Everybody can participate' => 'Tothom pot participar',
+ 'Export' => 'Exporta:',
+ 'Filter' => 'Filtre',
+ 'Followed spaces' => 'Espais on participes',
+ 'Followed users' => 'Membres a qui segueixes',
+ 'General' => 'General',
+ 'I\'m attending' => 'Hi aniré',
+ 'Maybe' => 'Potser',
+ 'Menu' => 'Menú',
+ 'My events' => 'Els meus esdeveniments',
+ 'My profile' => 'El meu perfil',
+ 'My spaces' => 'Els meus espais',
+ 'Next' => 'Següent',
+ 'No participants' => 'No participants',
+ 'Participants' => 'Participants',
+ 'Settings' => 'Configuració',
+ 'Title' => 'Títol',
+ ':count Attending' => '',
+ ':count Declined' => '',
+ ':count Invited' => '',
+ ':count Undecided' => '',
+ 'Create Event' => '',
+ 'Create new event type' => '',
+ 'Edit Event' => '',
+ 'Edit calendar' => '',
+ 'Edit event type' => '',
+ 'Edit recurring event' => '',
+ 'Additional information' => '',
+ 'Are you sure want to remove the participant from the event?' => '',
+ 'Calendars' => '',
+ 'Declined' => '',
+ 'Defaults' => '',
+ 'Event Types' => '',
+ 'Filter events' => '',
+ 'Invited' => '',
+ 'Only by Invite' => '',
+ 'Open Calendar' => '',
+ 'Recurrence' => '',
+ 'Reminder' => '',
+ 'Select calendars' => '',
+ 'Select event type...' => '',
+ 'Snippet' => '',
+ 'Undecided' => '',
+ 'You are invited, please select your role:' => '',
+ '{count} Participants' => '',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/cs/views.php b/messages/cs/views.php
index c79c0546..c1b144ac 100644
--- a/messages/cs/views.php
+++ b/messages/cs/views.php
@@ -1,59 +1,57 @@
':count Účastní se',
- ':count Declined' => ':count Zamítnuto',
- ':count Invited' => ':count Pozváno',
- ':count Undecided' => ':count Nerozhodnuto',
- 'Create Event' => 'Vytvořit událost',
- 'Create new event type' => 'Vytvořit nový typ události',
- 'Edit Event' => 'Upravit událost',
- 'Edit calendar' => 'Upravit kalendář',
- 'Edit event type' => 'Upravit typ události',
- 'Edit recurring event' => 'Upravit opakující se událost',
- 'Upcoming events ' => 'Nadcházející události',
- 'Additional information' => 'Další informace',
- 'All' => 'Vše',
- 'Are you sure want to remove the participant from the event?' => 'Jste si jisti, že chcete účastníka z události odstranit?',
- 'Attend' => 'Chci se zúčastnit',
- 'Attending' => 'Zúčastnit se',
- 'Back' => 'Zpět',
- 'Calendars' => 'Kalendáře',
- 'Close' => 'Zavřít',
- 'Decline' => 'Nechci se zúčastnit',
- 'Declined' => 'Odmítnuté',
- 'Defaults' => 'Výchozí',
- 'Event Types' => 'Typy událostí',
- 'Everybody can participate' => 'Každý se může zúčastnit',
- 'Export' => 'Export',
- 'Filter' => 'Filtr',
- 'Filter events' => '',
- 'Followed spaces' => 'Sledované prostory',
- 'Followed users' => 'Sledovaní uživatelé',
- 'General' => 'Obecné',
- 'I\'m attending' => 'Zúčastním se',
- 'Invited' => 'Pozvánky',
- 'Maybe' => 'Možná',
- 'Menu' => 'Menu',
- 'My events' => 'Moje události',
- 'My profile' => 'Můj profil',
- 'My spaces' => 'Moje prostory',
- 'Next' => 'Další',
- 'No participants' => 'Nikdo se nemůže zúčastnit',
- 'Only by Invite' => 'Pouze na pozvání',
- 'Open Calendar' => 'Otevřít kalendář',
- 'Participants' => 'Účastníci',
- 'Recurrence' => 'Opakování',
- 'Reminder' => 'Připomínka',
- 'Select calendars' => '',
- 'Select event type...' => 'Zvolte typ události...',
- 'Settings' => 'Nastavení',
- 'Snippet' => 'Úryvek',
- 'Title' => 'Nadpis',
- 'Undecided' => 'Nerozhodnuté',
- 'You are invited, please select your role:' => 'Jste zváni, vyberte si svou roli:',
- '{count} Participants' => '{count} Účastníci',
- '{displayName} cannot attend {contentTitle} on {dateTime}.' => '{displayName} se nemůže účastnit {contentTitle} v {dateTime}.',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '{displayName} se účastní {contentTitle} v {dateTime}.',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '{displayName} je pozván do {contentTitle} v {dateTime}.',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '{displayName} se může účastnit {contentTitle} v {dateTime}.',
+ ':count Attending' => ':count Účastní se',
+ ':count Declined' => ':count Zamítnuto',
+ ':count Invited' => ':count Pozváno',
+ ':count Undecided' => ':count Nerozhodnuto',
+ 'Create Event' => 'Vytvořit událost',
+ 'Create new event type' => 'Vytvořit nový typ události',
+ 'Edit Event' => 'Upravit událost',
+ 'Edit calendar' => 'Upravit kalendář',
+ 'Edit event type' => 'Upravit typ události',
+ 'Edit recurring event' => 'Upravit opakující se událost',
+ 'Upcoming events ' => 'Nadcházející události',
+ 'Additional information' => 'Další informace',
+ 'All' => 'Vše',
+ 'Are you sure want to remove the participant from the event?' => 'Jste si jisti, že chcete účastníka z události odstranit?',
+ 'Attend' => 'Chci se zúčastnit',
+ 'Attending' => 'Zúčastnit se',
+ 'Back' => 'Zpět',
+ 'Calendars' => 'Kalendáře',
+ 'Close' => 'Zavřít',
+ 'Decline' => 'Nechci se zúčastnit',
+ 'Declined' => 'Odmítnuté',
+ 'Defaults' => 'Výchozí',
+ 'Event Types' => 'Typy událostí',
+ 'Everybody can participate' => 'Každý se může zúčastnit',
+ 'Export' => 'Export',
+ 'Filter' => 'Filtr',
+ 'Followed spaces' => 'Sledované prostory',
+ 'Followed users' => 'Sledovaní uživatelé',
+ 'General' => 'Obecné',
+ 'I\'m attending' => 'Zúčastním se',
+ 'Invited' => 'Pozvánky',
+ 'Maybe' => 'Možná',
+ 'Menu' => 'Menu',
+ 'My events' => 'Moje události',
+ 'My profile' => 'Můj profil',
+ 'My spaces' => 'Moje prostory',
+ 'Next' => 'Další',
+ 'No participants' => 'Nikdo se nemůže zúčastnit',
+ 'Only by Invite' => 'Pouze na pozvání',
+ 'Open Calendar' => 'Otevřít kalendář',
+ 'Participants' => 'Účastníci',
+ 'Recurrence' => 'Opakování',
+ 'Reminder' => 'Připomínka',
+ 'Select event type...' => 'Zvolte typ události...',
+ 'Settings' => 'Nastavení',
+ 'Snippet' => 'Úryvek',
+ 'Title' => 'Nadpis',
+ 'Undecided' => 'Nerozhodnuté',
+ 'You are invited, please select your role:' => 'Jste zváni, vyberte si svou roli:',
+ '{count} Participants' => '{count} Účastníci',
+ 'Filter events' => '',
+ 'Select calendars' => '',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/cy/views.php b/messages/cy/views.php
index 08350f0a..4338c5ac 100644
--- a/messages/cy/views.php
+++ b/messages/cy/views.php
@@ -1,10 +1,6 @@
'',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '',
':count Attending' => '',
':count Declined' => '',
':count Invited' => '',
@@ -57,4 +53,5 @@
'Undecided' => '',
'You are invited, please select your role:' => '',
'{count} Participants' => '',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/da/views.php b/messages/da/views.php
index 73dae7ab..f5196fe0 100644
--- a/messages/da/views.php
+++ b/messages/da/views.php
@@ -1,59 +1,57 @@
':count Deltager',
- ':count Declined' => ':count Afviste',
- ':count Invited' => ':count Inviteret',
- ':count Undecided' => ':count Uafklaret',
- 'Create Event' => 'Opret begivenhed',
- 'Create new event type' => 'Opret ny begivenhedstype',
- 'Edit Event' => 'Rediger begivenhed',
- 'Edit calendar' => 'Rediger kalender',
- 'Edit event type' => 'Rediger begivenhedstype',
- 'Edit recurring event' => 'Rediger tilbagevendende begivenhed',
- 'Upcoming events ' => 'Kommende events',
- 'Additional information' => 'Yderligere information',
- 'All' => 'Alle',
- 'Are you sure want to remove the participant from the event?' => 'Er du sikker på, at du vil fjerne deltageren fra begivenheden?',
- 'Attend' => 'Deltag',
- 'Attending' => 'Deltager',
- 'Back' => 'Tilbage',
- 'Calendars' => 'Kalendere',
- 'Close' => 'Luk',
- 'Decline' => 'Afslå',
- 'Declined' => 'Afviste',
- 'Defaults' => 'Standarder',
- 'Event Types' => 'Begivenhedstyper',
- 'Everybody can participate' => 'Alle kan deltage',
- 'Export' => 'Eksport',
- 'Filter' => 'Filter',
- 'Filter events' => 'Filtrer begivenheder',
- 'Followed spaces' => 'Fulgte sider',
- 'Followed users' => 'Fulgte brugere',
- 'General' => 'Generelt',
- 'I\'m attending' => 'Jeg deltager',
- 'Invited' => 'Inviteret',
- 'Maybe' => 'Måske',
- 'Menu' => 'Menu',
- 'My events' => 'Mine events',
- 'My profile' => 'Min profil',
- 'My spaces' => 'Mine Sider',
- 'Next' => 'Næste',
- 'No participants' => 'Ingen deltagere',
- 'Only by Invite' => 'Kun med invitation',
- 'Open Calendar' => 'Åbn kalender',
- 'Participants' => 'Deltagere',
- 'Recurrence' => 'Gentagelse',
- 'Reminder' => 'Påmindelse',
- 'Select calendars' => 'Vælg kalendere',
- 'Select event type...' => 'Vælg begivenhedstype...',
- 'Settings' => 'Indstillinger',
- 'Snippet' => 'Uddrag',
- 'Title' => 'Titel',
- 'Undecided' => 'Uafklaret',
- 'You are invited, please select your role:' => 'Du er inviteret, vælg din rolle:',
- '{count} Participants' => '{count} Deltagere',
- '{displayName} cannot attend {contentTitle} on {dateTime}.' => '{displayName} kan ikke deltage i {contentTitle} den {dateTime}.',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '{displayName} deltager i {contentTitle} den {dateTime}.',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '{displayName} er inviteret til {contentTitle} den {dateTime}.',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '{displayName} deltager måske i {contentTitle} den {dateTime}.',
+ ':count Attending' => ':count Deltager',
+ ':count Declined' => ':count Afviste',
+ ':count Invited' => ':count Inviteret',
+ ':count Undecided' => ':count Uafklaret',
+ 'Create Event' => 'Opret begivenhed',
+ 'Create new event type' => 'Opret ny begivenhedstype',
+ 'Edit Event' => 'Rediger begivenhed',
+ 'Edit calendar' => 'Rediger kalender',
+ 'Edit event type' => 'Rediger begivenhedstype',
+ 'Edit recurring event' => 'Rediger tilbagevendende begivenhed',
+ 'Upcoming events ' => 'Kommende events',
+ 'Additional information' => 'Yderligere information',
+ 'All' => 'Alle',
+ 'Are you sure want to remove the participant from the event?' => 'Er du sikker på, at du vil fjerne deltageren fra begivenheden?',
+ 'Attend' => 'Deltag',
+ 'Attending' => 'Deltager',
+ 'Back' => 'Tilbage',
+ 'Calendars' => 'Kalendere',
+ 'Close' => 'Luk',
+ 'Decline' => 'Afslå',
+ 'Declined' => 'Afviste',
+ 'Defaults' => 'Standarder',
+ 'Event Types' => 'Begivenhedstyper',
+ 'Everybody can participate' => 'Alle kan deltage',
+ 'Export' => 'Eksport',
+ 'Filter' => 'Filter',
+ 'Filter events' => 'Filtrer begivenheder',
+ 'Followed spaces' => 'Fulgte sider',
+ 'Followed users' => 'Fulgte brugere',
+ 'General' => 'Generelt',
+ 'I\'m attending' => 'Jeg deltager',
+ 'Invited' => 'Inviteret',
+ 'Maybe' => 'Måske',
+ 'Menu' => 'Menu',
+ 'My events' => 'Mine events',
+ 'My profile' => 'Min profil',
+ 'My spaces' => 'Mine Sider',
+ 'Next' => 'Næste',
+ 'No participants' => 'Ingen deltagere',
+ 'Only by Invite' => 'Kun med invitation',
+ 'Open Calendar' => 'Åbn kalender',
+ 'Participants' => 'Deltagere',
+ 'Recurrence' => 'Gentagelse',
+ 'Reminder' => 'Påmindelse',
+ 'Select calendars' => 'Vælg kalendere',
+ 'Select event type...' => 'Vælg begivenhedstype...',
+ 'Settings' => 'Indstillinger',
+ 'Snippet' => 'Uddrag',
+ 'Title' => 'Titel',
+ 'Undecided' => 'Uafklaret',
+ 'You are invited, please select your role:' => 'Du er inviteret, vælg din rolle:',
+ '{count} Participants' => '{count} Deltagere',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/de/views.php b/messages/de/views.php
index f8982e3b..46051103 100644
--- a/messages/de/views.php
+++ b/messages/de/views.php
@@ -1,59 +1,57 @@
'{displayName} kann nicht an {contentTitle} am {dateTime} teilnehmen.',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '{displayName} nimmt an {contentTitle} am {dateTime} teil.',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '{displayName} ist zu {contentTitle} am {dateTime} eingeladen.',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '{displayName} nimmt vielleicht an {contentTitle} am {dateTime} teil.',
- ':count Attending' => ':count Zusagen',
- ':count Declined' => ':count Ablehnungen',
- ':count Invited' => ':count Eingeladen',
- ':count Undecided' => ':count Vielleicht',
- 'Create Event' => 'Termin erstellen',
- 'Create new event type' => 'Neue Kategorie erstellen',
- 'Edit Event' => 'Termin bearbeiten',
- 'Edit calendar' => 'Kalender bearbeiten',
- 'Edit event type' => 'Kategorie bearbeiten',
- 'Edit recurring event' => 'Wiederkehrenden Termin bearbeiten',
- 'Upcoming events ' => 'Anstehende Veranstaltungen',
- 'Additional information' => 'Weitere Informationen',
- 'All' => 'Alle',
- 'Are you sure want to remove the participant from the event?' => 'Bist du sicher, dass du den Teilnehmer vom Termin entfernen möchtest?',
- 'Attend' => 'Teilnehmen',
- 'Attending' => 'Zugesagt',
- 'Back' => 'Zurück',
- 'Calendars' => 'Kalender',
- 'Close' => 'Schließen',
- 'Decline' => 'Ablehnen',
- 'Declined' => 'Abgelehnt',
- 'Defaults' => 'Standards',
- 'Event Types' => 'Kategorie',
- 'Everybody can participate' => 'Jeder darf teilnehmen',
- 'Export' => 'Export',
- 'Filter' => 'Filter',
- 'Filter events' => 'Events filtern',
- 'Followed spaces' => 'Gefolgte Spaces',
- 'Followed users' => 'Gefolgte Benutzer',
- 'General' => 'Allgemein',
- 'I\'m attending' => 'Ich nehme teil',
- 'Invited' => 'Eingeladen',
- 'Maybe' => 'Vielleicht',
- 'Menu' => 'Menü',
- 'My events' => 'Meine Termine',
- 'My profile' => 'Mein Profil',
- 'My spaces' => 'Meine Spaces',
- 'Next' => 'Weiter',
- 'No participants' => 'Keine Teilnehmer',
- 'Only by Invite' => 'Nur mit Einladung',
- 'Open Calendar' => 'Kalender öffnen',
- 'Participants' => 'Teilnehmer',
- 'Recurrence' => 'Wiederkehrende Termine',
- 'Reminder' => 'Erinnerung',
- 'Select calendars' => 'Kalender wählen',
- 'Select event type...' => 'Kategorie wählen',
- 'Settings' => 'Einstellungen',
- 'Snippet' => 'Widget',
- 'Title' => 'Titel',
- 'Undecided' => 'Vielleicht',
- 'You are invited, please select your role:' => 'Du bist eingeladen, bitte wähle deinen Teilnahmestatus:',
- '{count} Participants' => '{count} Teilnehmer',
+ ':count Attending' => ':count Zusagen',
+ ':count Declined' => ':count Ablehnungen',
+ ':count Invited' => ':count Eingeladen',
+ ':count Undecided' => ':count Vielleicht',
+ 'Create Event' => 'Termin erstellen',
+ 'Create new event type' => 'Neue Kategorie erstellen',
+ 'Edit Event' => 'Termin bearbeiten',
+ 'Edit calendar' => 'Kalender bearbeiten',
+ 'Edit event type' => 'Kategorie bearbeiten',
+ 'Edit recurring event' => 'Wiederkehrenden Termin bearbeiten',
+ 'Upcoming events ' => 'Anstehende Veranstaltungen',
+ 'Additional information' => 'Weitere Informationen',
+ 'All' => 'Alle',
+ 'Are you sure want to remove the participant from the event?' => 'Bist du sicher, dass du den Teilnehmer vom Termin entfernen möchtest?',
+ 'Attend' => 'Teilnehmen',
+ 'Attending' => 'Zugesagt',
+ 'Back' => 'Zurück',
+ 'Calendars' => 'Kalender',
+ 'Close' => 'Schließen',
+ 'Decline' => 'Ablehnen',
+ 'Declined' => 'Abgelehnt',
+ 'Defaults' => 'Standards',
+ 'Event Types' => 'Kategorie',
+ 'Everybody can participate' => 'Jeder darf teilnehmen',
+ 'Export' => 'Export',
+ 'Filter' => 'Filter',
+ 'Filter events' => 'Events filtern',
+ 'Followed spaces' => 'Gefolgte Spaces',
+ 'Followed users' => 'Gefolgte Benutzer',
+ 'General' => 'Allgemein',
+ 'I\'m attending' => 'Ich nehme teil',
+ 'Invited' => 'Eingeladen',
+ 'Maybe' => 'Vielleicht',
+ 'Menu' => 'Menü',
+ 'My events' => 'Meine Termine',
+ 'My profile' => 'Mein Profil',
+ 'My spaces' => 'Meine Spaces',
+ 'Next' => 'Weiter',
+ 'No participants' => 'Keine Teilnehmer',
+ 'Only by Invite' => 'Nur mit Einladung',
+ 'Open Calendar' => 'Kalender öffnen',
+ 'Participants' => 'Teilnehmer',
+ 'Recurrence' => 'Wiederkehrende Termine',
+ 'Reminder' => 'Erinnerung',
+ 'Select calendars' => 'Kalender wählen',
+ 'Select event type...' => 'Kategorie wählen',
+ 'Settings' => 'Einstellungen',
+ 'Snippet' => 'Widget',
+ 'Title' => 'Titel',
+ 'Undecided' => 'Vielleicht',
+ 'You are invited, please select your role:' => 'Du bist eingeladen, bitte wähle deinen Teilnahmestatus:',
+ '{count} Participants' => '{count} Teilnehmer',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/el/views.php b/messages/el/views.php
index 2e735d27..436855e7 100644
--- a/messages/el/views.php
+++ b/messages/el/views.php
@@ -1,59 +1,57 @@
'',
- ':count Declined' => '',
- ':count Invited' => '',
- ':count Undecided' => '',
- 'Create Event' => '',
- 'Create new event type' => 'Δημιουργία νέου τύπου εκδήλωσης',
- 'Edit Event' => '',
- 'Edit calendar' => 'Επεξεργασία ημερολογίου',
- 'Edit event type' => 'Επεξεργασία τύπου εκδήλωσης',
- 'Edit recurring event' => 'Επεξεργασία Επαναλαμβανόμενης Εκδήλωσης',
- 'Upcoming events ' => 'Ανερχόμενη εκδήλωση',
- 'Additional information' => 'Επιπλέον Πληροφορίες',
- 'All' => 'Όλα',
- 'Are you sure want to remove the participant from the event?' => '',
- 'Attend' => 'Συμμετοχή',
- 'Attending' => 'Συμμετοχή',
- 'Back' => 'Πίσω',
- 'Calendars' => 'Ημερολόγια',
- 'Close' => 'Κλείσιμο',
- 'Decline' => 'Άρνηση',
- 'Declined' => '',
- 'Defaults' => 'Προεπιλογές',
- 'Event Types' => 'Τύποι εκδηλώσεων',
- 'Everybody can participate' => 'Ο καθένας μπορεί να συμμετάσχει',
- 'Export' => 'Εξαγωγή',
- 'Filter' => 'Φίλτρο',
- 'Filter events' => '',
- 'Followed spaces' => 'Ακολουθούμενοι χώροι',
- 'Followed users' => 'Ακολουθούμενοι χρήστες',
- 'General' => 'Γενικά',
- 'I\'m attending' => 'Παρακολουθώ',
- 'Invited' => '',
- 'Maybe' => 'Ίσως',
- 'Menu' => 'Μενού',
- 'My events' => 'Οι εκδηλώσεις μου',
- 'My profile' => 'Το προφίλ μου',
- 'My spaces' => 'Οι χώροι μου',
- 'Next' => 'Επόμενο',
- 'No participants' => 'Δεν υπάρχουν συμμετέχοντες',
- 'Only by Invite' => '',
- 'Open Calendar' => 'Άνοιγμα ημερολογίου',
- 'Participants' => 'Συμμετέχοντες',
- 'Recurrence' => 'Επανάληψη',
- 'Reminder' => 'Υπενθύμιση',
- 'Select calendars' => '',
- 'Select event type...' => 'Επιλέξτε τύπο εκδήλωσης ...',
- 'Settings' => 'Ρυθμίσεις',
- 'Snippet' => 'Απόσπασμα',
- 'Title' => 'Τίτλος',
- 'Undecided' => '',
- 'You are invited, please select your role:' => '',
- '{count} Participants' => '',
- '{displayName} cannot attend {contentTitle} on {dateTime}.' => '{displayName} δεν μπορεί να παρευρεθεί {contentTitle} στις {dateTime}.',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '{displayName} παρακολουθεί {contentTitle} στις {dateTime}.',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '{displayName} μπορεί να παρευρεθεί {contentTitle} στις {dateTime}.',
+ 'Create new event type' => 'Δημιουργία νέου τύπου εκδήλωσης',
+ 'Edit calendar' => 'Επεξεργασία ημερολογίου',
+ 'Edit event type' => 'Επεξεργασία τύπου εκδήλωσης',
+ 'Edit recurring event' => 'Επεξεργασία Επαναλαμβανόμενης Εκδήλωσης',
+ 'Upcoming events ' => 'Ανερχόμενη εκδήλωση',
+ 'Additional information' => 'Επιπλέον Πληροφορίες',
+ 'All' => 'Όλα',
+ 'Attend' => 'Συμμετοχή',
+ 'Attending' => 'Συμμετοχή',
+ 'Back' => 'Πίσω',
+ 'Calendars' => 'Ημερολόγια',
+ 'Close' => 'Κλείσιμο',
+ 'Decline' => 'Άρνηση',
+ 'Defaults' => 'Προεπιλογές',
+ 'Event Types' => 'Τύποι εκδηλώσεων',
+ 'Everybody can participate' => 'Ο καθένας μπορεί να συμμετάσχει',
+ 'Export' => 'Εξαγωγή',
+ 'Filter' => 'Φίλτρο',
+ 'Followed spaces' => 'Ακολουθούμενοι χώροι',
+ 'Followed users' => 'Ακολουθούμενοι χρήστες',
+ 'General' => 'Γενικά',
+ 'I\'m attending' => 'Παρακολουθώ',
+ 'Maybe' => 'Ίσως',
+ 'Menu' => 'Μενού',
+ 'My events' => 'Οι εκδηλώσεις μου',
+ 'My profile' => 'Το προφίλ μου',
+ 'My spaces' => 'Οι χώροι μου',
+ 'Next' => 'Επόμενο',
+ 'No participants' => 'Δεν υπάρχουν συμμετέχοντες',
+ 'Open Calendar' => 'Άνοιγμα ημερολογίου',
+ 'Participants' => 'Συμμετέχοντες',
+ 'Recurrence' => 'Επανάληψη',
+ 'Reminder' => 'Υπενθύμιση',
+ 'Select event type...' => 'Επιλέξτε τύπο εκδήλωσης ...',
+ 'Settings' => 'Ρυθμίσεις',
+ 'Snippet' => 'Απόσπασμα',
+ 'Title' => 'Τίτλος',
+ ':count Attending' => '',
+ ':count Declined' => '',
+ ':count Invited' => '',
+ ':count Undecided' => '',
+ 'Create Event' => '',
+ 'Edit Event' => '',
+ 'Are you sure want to remove the participant from the event?' => '',
+ 'Declined' => '',
+ 'Filter events' => '',
+ 'Invited' => '',
+ 'Only by Invite' => '',
+ 'Select calendars' => '',
+ 'Undecided' => '',
+ 'You are invited, please select your role:' => '',
+ '{count} Participants' => '',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/es-419/views.php b/messages/es-419/views.php
index 08350f0a..4338c5ac 100644
--- a/messages/es-419/views.php
+++ b/messages/es-419/views.php
@@ -1,10 +1,6 @@
'',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '',
':count Attending' => '',
':count Declined' => '',
':count Invited' => '',
@@ -57,4 +53,5 @@
'Undecided' => '',
'You are invited, please select your role:' => '',
'{count} Participants' => '',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/es/views.php b/messages/es/views.php
index 1f6d1369..0c8c6554 100644
--- a/messages/es/views.php
+++ b/messages/es/views.php
@@ -1,59 +1,57 @@
':count van a asistir',
- ':count Declined' => ':count han rechazado asistir',
- ':count Invited' => ':count invitados',
- ':count Undecided' => ':count están indecisos',
- 'Create Event' => 'Crear evento',
- 'Create new event type' => 'Crear nuevo tipo de evento',
- 'Edit Event' => 'Editar evento',
- 'Edit calendar' => 'Editar calendario',
- 'Edit event type' => 'Editar tipo de evento',
- 'Edit recurring event' => 'Editar evento recurrente',
- 'Upcoming events ' => 'Eventos próximos',
- 'Additional information' => 'Información Adicional',
- 'All' => 'Todos',
- 'Are you sure want to remove the participant from the event?' => '¿Estás seguro de que quieres eliminar a este participante del evento?',
- 'Attend' => 'Asistir',
- 'Attending' => 'Asistiendo',
- 'Back' => 'Volver',
- 'Calendars' => 'Calendarios',
- 'Close' => 'Cerrar',
- 'Decline' => 'No asistir',
- 'Declined' => 'Rechazar',
- 'Defaults' => 'Valores por defecto',
- 'Event Types' => 'Tipos de evento',
- 'Everybody can participate' => 'Todo el mundo puede participar',
- 'Export' => 'Exportar',
- 'Filter' => 'Filtrar',
- 'Filter events' => 'Filtrar eventos',
- 'Followed spaces' => 'Espacios seguidos',
- 'Followed users' => 'Usuarios seguidos',
- 'General' => 'General',
- 'I\'m attending' => 'Asistiré',
- 'Invited' => 'Invitado',
- 'Maybe' => 'Tal vez',
- 'Menu' => 'Menú',
- 'My events' => 'Mis eventos',
- 'My profile' => 'Mi perfil',
- 'My spaces' => 'Mis espacios',
- 'Next' => 'Siguiente',
- 'No participants' => 'Sin participantes',
- 'Only by Invite' => 'Sólo mediante invitación',
- 'Open Calendar' => 'Calendario abierto',
- 'Participants' => 'Participantes',
- 'Recurrence' => 'Recurrencia',
- 'Reminder' => 'Recordatorio',
- 'Select calendars' => 'Seleccionar calendarios',
- 'Select event type...' => 'Seleccionar tipo de evento...',
- 'Settings' => 'Configuración',
- 'Snippet' => 'Snippet',
- 'Title' => 'Título',
- 'Undecided' => 'Indeciso',
- 'You are invited, please select your role:' => 'Estas invitado. Por favor elige tu papel:',
- '{count} Participants' => '{count} participantes',
- '{displayName} cannot attend {contentTitle} on {dateTime}.' => '{displayName} no puede asistir a {contentTitle} el {dateTime}.',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '{displayName} está asistiendo a {contentTitle} el {dateTime}.',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '{displayName} está invitado a {contentTitle} el {dateTime}.',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '{displayName} puede que asista a {contentTitle} el {dateTime}.',
+ ':count Attending' => ':count van a asistir',
+ ':count Declined' => ':count han rechazado asistir',
+ ':count Invited' => ':count invitados',
+ ':count Undecided' => ':count están indecisos',
+ 'Create Event' => 'Crear evento',
+ 'Create new event type' => 'Crear nuevo tipo de evento',
+ 'Edit Event' => 'Editar evento',
+ 'Edit calendar' => 'Editar calendario',
+ 'Edit event type' => 'Editar tipo de evento',
+ 'Edit recurring event' => 'Editar evento recurrente',
+ 'Upcoming events ' => 'Eventos próximos',
+ 'Additional information' => 'Información Adicional',
+ 'All' => 'Todos',
+ 'Are you sure want to remove the participant from the event?' => '¿Estás seguro de que quieres eliminar a este participante del evento?',
+ 'Attend' => 'Asistir',
+ 'Attending' => 'Asistiendo',
+ 'Back' => 'Volver',
+ 'Calendars' => 'Calendarios',
+ 'Close' => 'Cerrar',
+ 'Decline' => 'No asistir',
+ 'Declined' => 'Rechazar',
+ 'Defaults' => 'Valores por defecto',
+ 'Event Types' => 'Tipos de evento',
+ 'Everybody can participate' => 'Todo el mundo puede participar',
+ 'Export' => 'Exportar',
+ 'Filter' => 'Filtrar',
+ 'Filter events' => 'Filtrar eventos',
+ 'Followed spaces' => 'Espacios seguidos',
+ 'Followed users' => 'Usuarios seguidos',
+ 'General' => 'General',
+ 'I\'m attending' => 'Asistiré',
+ 'Invited' => 'Invitado',
+ 'Maybe' => 'Tal vez',
+ 'Menu' => 'Menú',
+ 'My events' => 'Mis eventos',
+ 'My profile' => 'Mi perfil',
+ 'My spaces' => 'Mis espacios',
+ 'Next' => 'Siguiente',
+ 'No participants' => 'Sin participantes',
+ 'Only by Invite' => 'Sólo mediante invitación',
+ 'Open Calendar' => 'Calendario abierto',
+ 'Participants' => 'Participantes',
+ 'Recurrence' => 'Recurrencia',
+ 'Reminder' => 'Recordatorio',
+ 'Select calendars' => 'Seleccionar calendarios',
+ 'Select event type...' => 'Seleccionar tipo de evento...',
+ 'Settings' => 'Configuración',
+ 'Snippet' => 'Snippet',
+ 'Title' => 'Título',
+ 'Undecided' => 'Indeciso',
+ 'You are invited, please select your role:' => 'Estas invitado. Por favor elige tu papel:',
+ '{count} Participants' => '{count} participantes',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/et/views.php b/messages/et/views.php
index 08350f0a..4338c5ac 100644
--- a/messages/et/views.php
+++ b/messages/et/views.php
@@ -1,10 +1,6 @@
'',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '',
':count Attending' => '',
':count Declined' => '',
':count Invited' => '',
@@ -57,4 +53,5 @@
'Undecided' => '',
'You are invited, please select your role:' => '',
'{count} Participants' => '',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/eu/views.php b/messages/eu/views.php
index 2c3e8002..20e653b4 100644
--- a/messages/eu/views.php
+++ b/messages/eu/views.php
@@ -1,59 +1,57 @@
'',
- ':count Declined' => '',
- ':count Invited' => '',
- ':count Undecided' => '',
- 'Create Event' => '',
- 'Create new event type' => '',
- 'Edit Event' => '',
- 'Edit calendar' => '',
- 'Edit event type' => '',
- 'Edit recurring event' => '',
- 'Upcoming events ' => '',
- 'Additional information' => '',
- 'All' => 'Denak',
- 'Are you sure want to remove the participant from the event?' => '',
- 'Attend' => '',
- 'Attending' => '',
- 'Back' => 'Itzuli',
- 'Calendars' => '',
- 'Close' => 'Itxi',
- 'Decline' => 'Ez onartu',
- 'Declined' => '',
- 'Defaults' => '',
- 'Event Types' => '',
- 'Everybody can participate' => '',
- 'Export' => 'Esportatu',
- 'Filter' => 'Iragazkia',
- 'Filter events' => '',
- 'Followed spaces' => '',
- 'Followed users' => '',
- 'General' => 'Orokorra',
- 'I\'m attending' => '',
- 'Invited' => '',
- 'Maybe' => '',
- 'Menu' => 'Menua',
- 'My events' => '',
- 'My profile' => '',
- 'My spaces' => 'Nire espazioak',
- 'Next' => 'Hurrengoa',
- 'No participants' => '',
- 'Only by Invite' => '',
- 'Open Calendar' => '',
- 'Participants' => '',
- 'Recurrence' => '',
- 'Reminder' => 'Gogorarazpena',
- 'Select calendars' => '',
- 'Select event type...' => '',
- 'Settings' => 'Ezarpenak',
- 'Snippet' => '',
- 'Title' => 'Izenburua',
- 'Undecided' => '',
- 'You are invited, please select your role:' => '',
- '{count} Participants' => '',
- '{displayName} cannot attend {contentTitle} on {dateTime}.' => '',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '',
+ 'All' => 'Denak',
+ 'Back' => 'Itzuli',
+ 'Close' => 'Itxi',
+ 'Decline' => 'Ez onartu',
+ 'Export' => 'Esportatu',
+ 'Filter' => 'Iragazkia',
+ 'General' => 'Orokorra',
+ 'Menu' => 'Menua',
+ 'My spaces' => 'Nire espazioak',
+ 'Next' => 'Hurrengoa',
+ 'Reminder' => 'Gogorarazpena',
+ 'Settings' => 'Ezarpenak',
+ 'Title' => 'Izenburua',
+ ':count Attending' => '',
+ ':count Declined' => '',
+ ':count Invited' => '',
+ ':count Undecided' => '',
+ 'Create Event' => '',
+ 'Create new event type' => '',
+ 'Edit Event' => '',
+ 'Edit calendar' => '',
+ 'Edit event type' => '',
+ 'Edit recurring event' => '',
+ 'Upcoming events ' => '',
+ 'Additional information' => '',
+ 'Are you sure want to remove the participant from the event?' => '',
+ 'Attend' => '',
+ 'Attending' => '',
+ 'Calendars' => '',
+ 'Declined' => '',
+ 'Defaults' => '',
+ 'Event Types' => '',
+ 'Everybody can participate' => '',
+ 'Filter events' => '',
+ 'Followed spaces' => '',
+ 'Followed users' => '',
+ 'I\'m attending' => '',
+ 'Invited' => '',
+ 'Maybe' => '',
+ 'My events' => '',
+ 'My profile' => '',
+ 'No participants' => '',
+ 'Only by Invite' => '',
+ 'Open Calendar' => '',
+ 'Participants' => '',
+ 'Recurrence' => '',
+ 'Select calendars' => '',
+ 'Select event type...' => '',
+ 'Snippet' => '',
+ 'Undecided' => '',
+ 'You are invited, please select your role:' => '',
+ '{count} Participants' => '',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/fa-IR/views.php b/messages/fa-IR/views.php
index f65625ee..208958cc 100644
--- a/messages/fa-IR/views.php
+++ b/messages/fa-IR/views.php
@@ -1,59 +1,57 @@
'',
- ':count Declined' => '',
- ':count Invited' => '',
- ':count Undecided' => '',
- 'Create Event' => '',
- 'Create new event type' => '',
- 'Edit Event' => '',
- 'Edit calendar' => '',
- 'Edit event type' => '',
- 'Edit recurring event' => '',
- 'Upcoming events ' => 'نزدیک رویدادهای',
- 'Additional information' => '',
- 'All' => 'همه',
- 'Are you sure want to remove the participant from the event?' => '',
- 'Attend' => 'حضور',
- 'Attending' => '',
- 'Back' => 'بازگشت',
- 'Calendars' => '',
- 'Close' => 'بستن',
- 'Decline' => 'انصراف',
- 'Declined' => '',
- 'Defaults' => 'مقادیر پیشفرض',
- 'Event Types' => '',
- 'Everybody can participate' => 'همه میتوانند مشارکت کنند',
- 'Export' => 'صدور',
- 'Filter' => 'پالایه',
- 'Filter events' => '',
- 'Followed spaces' => 'انجمنهای دنبالشده',
- 'Followed users' => 'کاربران دنبالشده',
- 'General' => 'کلی',
- 'I\'m attending' => 'حضور خواهمداشت',
- 'Invited' => '',
- 'Maybe' => 'احتمالا',
- 'Menu' => 'منو',
- 'My events' => 'رویدادهای من',
- 'My profile' => 'پروفایل من',
- 'My spaces' => 'انجمنهای من',
- 'Next' => 'بعدی',
- 'No participants' => 'مشارکتکنندهای وجود ندارد',
- 'Only by Invite' => '',
- 'Open Calendar' => '',
- 'Participants' => 'مشارکتکنندهها',
- 'Recurrence' => '',
- 'Reminder' => '',
- 'Select calendars' => '',
- 'Select event type...' => '',
- 'Settings' => 'تنطیمات',
- 'Snippet' => '',
- 'Title' => 'عنوان',
- 'Undecided' => '',
- 'You are invited, please select your role:' => '',
- '{count} Participants' => '',
- '{displayName} cannot attend {contentTitle} on {dateTime}.' => '',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '',
+ 'Upcoming events ' => 'نزدیک رویدادهای',
+ 'All' => 'همه',
+ 'Attend' => 'حضور',
+ 'Back' => 'بازگشت',
+ 'Close' => 'بستن',
+ 'Decline' => 'انصراف',
+ 'Defaults' => 'مقادیر پیشفرض',
+ 'Everybody can participate' => 'همه میتوانند مشارکت کنند',
+ 'Export' => 'صدور',
+ 'Filter' => 'پالایه',
+ 'Followed spaces' => 'انجمنهای دنبالشده',
+ 'Followed users' => 'کاربران دنبالشده',
+ 'General' => 'کلی',
+ 'I\'m attending' => 'حضور خواهمداشت',
+ 'Maybe' => 'احتمالا',
+ 'Menu' => 'منو',
+ 'My events' => 'رویدادهای من',
+ 'My profile' => 'پروفایل من',
+ 'My spaces' => 'انجمنهای من',
+ 'Next' => 'بعدی',
+ 'No participants' => 'مشارکتکنندهای وجود ندارد',
+ 'Participants' => 'مشارکتکنندهها',
+ 'Settings' => 'تنطیمات',
+ 'Title' => 'عنوان',
+ ':count Attending' => '',
+ ':count Declined' => '',
+ ':count Invited' => '',
+ ':count Undecided' => '',
+ 'Create Event' => '',
+ 'Create new event type' => '',
+ 'Edit Event' => '',
+ 'Edit calendar' => '',
+ 'Edit event type' => '',
+ 'Edit recurring event' => '',
+ 'Additional information' => '',
+ 'Are you sure want to remove the participant from the event?' => '',
+ 'Attending' => '',
+ 'Calendars' => '',
+ 'Declined' => '',
+ 'Event Types' => '',
+ 'Filter events' => '',
+ 'Invited' => '',
+ 'Only by Invite' => '',
+ 'Open Calendar' => '',
+ 'Recurrence' => '',
+ 'Reminder' => '',
+ 'Select calendars' => '',
+ 'Select event type...' => '',
+ 'Snippet' => '',
+ 'Undecided' => '',
+ 'You are invited, please select your role:' => '',
+ '{count} Participants' => '',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/fi/views.php b/messages/fi/views.php
index b2e6245d..14174cdb 100644
--- a/messages/fi/views.php
+++ b/messages/fi/views.php
@@ -1,59 +1,57 @@
'',
- ':count Declined' => '',
- ':count Invited' => '',
- ':count Undecided' => '',
- 'Create Event' => '',
- 'Create new event type' => 'Luo uusi tapahtuma tyyppi',
- 'Edit Event' => '',
- 'Edit calendar' => 'Muokkaa kalenteria',
- 'Edit event type' => 'Muokkaa tapahtuma tyyppiä',
- 'Edit recurring event' => '',
- 'Upcoming events ' => 'Tulevat tapahtumat',
- 'Additional information' => '',
- 'All' => 'Kaikki',
- 'Are you sure want to remove the participant from the event?' => '',
- 'Attend' => 'Osallistu',
- 'Attending' => 'Osallistuu',
- 'Back' => 'Takaisin',
- 'Calendars' => '',
- 'Close' => 'Sulje',
- 'Decline' => 'En osallistu',
- 'Declined' => '',
- 'Defaults' => 'Oletukset',
- 'Event Types' => 'Taphtumatyypit',
- 'Everybody can participate' => 'Kaikki voivat osallistua',
- 'Export' => 'Vie',
- 'Filter' => 'Suodatin',
- 'Filter events' => '',
- 'Followed spaces' => 'Seuratut sivut',
- 'Followed users' => 'Seuratut käyttäjät',
- 'General' => 'Yleiset',
- 'I\'m attending' => 'Minä osallistun',
- 'Invited' => '',
- 'Maybe' => 'Ehkä osalistun',
- 'Menu' => 'Valikko',
- 'My events' => 'Minun tapahtumat',
- 'My profile' => 'Minun tapahtumat',
- 'My spaces' => 'Minun sivut',
- 'Next' => 'Seuraava',
- 'No participants' => 'Ei osallistujia',
- 'Only by Invite' => '',
- 'Open Calendar' => 'Avaa Kalenteri',
- 'Participants' => 'Osallistujat',
- 'Recurrence' => '',
- 'Reminder' => 'Muistutus',
- 'Select calendars' => '',
- 'Select event type...' => 'Valitse tapahtumatyyppi...',
- 'Settings' => 'Asetukset',
- 'Snippet' => 'Laatikko',
- 'Title' => 'Otsikko',
- 'Undecided' => '',
- 'You are invited, please select your role:' => '',
- '{count} Participants' => '',
- '{displayName} cannot attend {contentTitle} on {dateTime}.' => '',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '',
+ 'Create new event type' => 'Luo uusi tapahtuma tyyppi',
+ 'Edit calendar' => 'Muokkaa kalenteria',
+ 'Edit event type' => 'Muokkaa tapahtuma tyyppiä',
+ 'Upcoming events ' => 'Tulevat tapahtumat',
+ 'All' => 'Kaikki',
+ 'Attend' => 'Osallistu',
+ 'Attending' => 'Osallistuu',
+ 'Back' => 'Takaisin',
+ 'Close' => 'Sulje',
+ 'Decline' => 'En osallistu',
+ 'Defaults' => 'Oletukset',
+ 'Event Types' => 'Taphtumatyypit',
+ 'Everybody can participate' => 'Kaikki voivat osallistua',
+ 'Export' => 'Vie',
+ 'Filter' => 'Suodatin',
+ 'Followed spaces' => 'Seuratut sivut',
+ 'Followed users' => 'Seuratut käyttäjät',
+ 'General' => 'Yleiset',
+ 'I\'m attending' => 'Minä osallistun',
+ 'Maybe' => 'Ehkä osalistun',
+ 'Menu' => 'Valikko',
+ 'My events' => 'Minun tapahtumat',
+ 'My profile' => 'Minun tapahtumat',
+ 'My spaces' => 'Minun sivut',
+ 'Next' => 'Seuraava',
+ 'No participants' => 'Ei osallistujia',
+ 'Open Calendar' => 'Avaa Kalenteri',
+ 'Participants' => 'Osallistujat',
+ 'Reminder' => 'Muistutus',
+ 'Select event type...' => 'Valitse tapahtumatyyppi...',
+ 'Settings' => 'Asetukset',
+ 'Snippet' => 'Laatikko',
+ 'Title' => 'Otsikko',
+ ':count Attending' => '',
+ ':count Declined' => '',
+ ':count Invited' => '',
+ ':count Undecided' => '',
+ 'Create Event' => '',
+ 'Edit Event' => '',
+ 'Edit recurring event' => '',
+ 'Additional information' => '',
+ 'Are you sure want to remove the participant from the event?' => '',
+ 'Calendars' => '',
+ 'Declined' => '',
+ 'Filter events' => '',
+ 'Invited' => '',
+ 'Only by Invite' => '',
+ 'Recurrence' => '',
+ 'Select calendars' => '',
+ 'Undecided' => '',
+ 'You are invited, please select your role:' => '',
+ '{count} Participants' => '',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/fr/views.php b/messages/fr/views.php
index c615a75e..809c7e6f 100644
--- a/messages/fr/views.php
+++ b/messages/fr/views.php
@@ -1,59 +1,57 @@
':count participent',
- ':count Declined' => ':count ont décliné',
- ':count Invited' => ':count sont invité·es',
- ':count Undecided' => ':count ne savent pas encore',
- 'Create Event' => 'Créer un événement',
- 'Create new event type' => 'Ajouter un nouveau type d\'événement',
- 'Edit Event' => 'Modifier l’événement',
- 'Edit calendar' => 'Éditer le calendrier',
- 'Edit event type' => 'Modifier le type d\'événement',
- 'Edit recurring event' => 'Modifier l\'évènement récurrent',
- 'Upcoming events ' => 'Événement(s) à venir',
- 'Additional information' => 'Informations additionnelles :',
- 'All' => 'Tous et toutes',
- 'Are you sure want to remove the participant from the event?' => 'Êtes-vous sûr·e de vouloir supprimer la ou le participant·e de l’événement ?',
- 'Attend' => 'Participer',
- 'Attending' => 'Participe',
- 'Back' => 'Retour',
- 'Calendars' => 'Calendriers',
- 'Close' => 'Fermer',
- 'Decline' => 'Décliner',
- 'Declined' => 'Décliné',
- 'Defaults' => 'Général',
- 'Event Types' => 'Types',
- 'Everybody can participate' => 'Tout le monde peut participer',
- 'Export' => 'Exporter',
- 'Filter' => 'Filtre',
- 'Filter events' => 'Filtrer les événements',
- 'Followed spaces' => 'Espaces suivis',
- 'Followed users' => 'Utilisateurs suivis',
- 'General' => 'Général',
- 'I\'m attending' => 'Je participe',
- 'Invited' => 'Invité·e',
- 'Maybe' => 'Peut-être',
- 'Menu' => 'Menu',
- 'My events' => 'Mes événements',
- 'My profile' => 'Mon profil',
- 'My spaces' => 'Mes espaces',
- 'Next' => 'Suivant',
- 'No participants' => 'Pas de participants',
- 'Only by Invite' => 'Uniquement sur invitation',
- 'Open Calendar' => 'Ouvrir le calendrier',
- 'Participants' => 'Participant·es',
- 'Recurrence' => 'Récurrence',
- 'Reminder' => 'Rappel',
- 'Select calendars' => 'Sélectionner les calendriers',
- 'Select event type...' => 'Sélectionner le type d\'événement...',
- 'Settings' => 'Réglages',
- 'Snippet' => 'Extrait',
- 'Title' => 'Titre',
- 'Undecided' => 'Ne sais pas encore',
- 'You are invited, please select your role:' => 'Vous êtes invité·e, veuillez sélectionner votre rôle :',
- '{count} Participants' => '{count} participant·es',
- '{displayName} cannot attend {contentTitle} on {dateTime}.' => '{displayName} ne peut pas participer à {contentTitle} le {dateTime}.',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '{displayName} participe à {contentTitle} le {dateTime}.',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '{displayName} est invité·e à {contentTitle} le {dateTime}.',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '{displayName} participera peut-être à {contentTitle} le {dateTime}.',
+ ':count Attending' => ':count participent',
+ ':count Declined' => ':count ont décliné',
+ ':count Invited' => ':count sont invité·es',
+ ':count Undecided' => ':count ne savent pas encore',
+ 'Create Event' => 'Créer un événement',
+ 'Create new event type' => 'Ajouter un nouveau type d\'événement',
+ 'Edit Event' => 'Modifier l’événement',
+ 'Edit calendar' => 'Éditer le calendrier',
+ 'Edit event type' => 'Modifier le type d\'événement',
+ 'Edit recurring event' => 'Modifier l\'évènement récurrent',
+ 'Upcoming events ' => 'Événement(s) à venir',
+ 'Additional information' => 'Informations additionnelles :',
+ 'All' => 'Tous et toutes',
+ 'Are you sure want to remove the participant from the event?' => 'Êtes-vous sûr·e de vouloir supprimer la ou le participant·e de l’événement ?',
+ 'Attend' => 'Participer',
+ 'Attending' => 'Participe',
+ 'Back' => 'Retour',
+ 'Calendars' => 'Calendriers',
+ 'Close' => 'Fermer',
+ 'Decline' => 'Décliner',
+ 'Declined' => 'Décliné',
+ 'Defaults' => 'Général',
+ 'Event Types' => 'Types',
+ 'Everybody can participate' => 'Tout le monde peut participer',
+ 'Export' => 'Exporter',
+ 'Filter' => 'Filtre',
+ 'Filter events' => 'Filtrer les événements',
+ 'Followed spaces' => 'Espaces suivis',
+ 'Followed users' => 'Utilisateurs suivis',
+ 'General' => 'Général',
+ 'I\'m attending' => 'Je participe',
+ 'Invited' => 'Invité·e',
+ 'Maybe' => 'Peut-être',
+ 'Menu' => 'Menu',
+ 'My events' => 'Mes événements',
+ 'My profile' => 'Mon profil',
+ 'My spaces' => 'Mes espaces',
+ 'Next' => 'Suivant',
+ 'No participants' => 'Pas de participants',
+ 'Only by Invite' => 'Uniquement sur invitation',
+ 'Open Calendar' => 'Ouvrir le calendrier',
+ 'Participants' => 'Participant·es',
+ 'Recurrence' => 'Récurrence',
+ 'Reminder' => 'Rappel',
+ 'Select calendars' => 'Sélectionner les calendriers',
+ 'Select event type...' => 'Sélectionner le type d\'événement...',
+ 'Settings' => 'Réglages',
+ 'Snippet' => 'Extrait',
+ 'Title' => 'Titre',
+ 'Undecided' => 'Ne sais pas encore',
+ 'You are invited, please select your role:' => 'Vous êtes invité·e, veuillez sélectionner votre rôle :',
+ '{count} Participants' => '{count} participant·es',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/he/views.php b/messages/he/views.php
index 28a9522c..90cd4eaf 100644
--- a/messages/he/views.php
+++ b/messages/he/views.php
@@ -1,59 +1,57 @@
'',
- ':count Declined' => '',
- ':count Invited' => '',
- ':count Undecided' => '',
- 'Create Event' => '',
- 'Create new event type' => '',
- 'Edit Event' => '',
- 'Edit calendar' => '',
- 'Edit event type' => '',
- 'Edit recurring event' => '',
- 'Upcoming events ' => '',
- 'Additional information' => '',
- 'All' => 'הכל',
- 'Are you sure want to remove the participant from the event?' => '',
- 'Attend' => '',
- 'Attending' => '',
- 'Back' => 'חזרה',
- 'Calendars' => '',
- 'Close' => 'סגור',
- 'Decline' => 'דחה',
- 'Declined' => '',
- 'Defaults' => '',
- 'Event Types' => '',
- 'Everybody can participate' => '',
- 'Export' => 'יצוא',
- 'Filter' => '',
- 'Filter events' => '',
- 'Followed spaces' => '',
- 'Followed users' => '',
- 'General' => '',
- 'I\'m attending' => '',
- 'Invited' => '',
- 'Maybe' => '',
- 'Menu' => 'תפריט',
- 'My events' => '',
- 'My profile' => 'הפרופיל שלי',
- 'My spaces' => '',
- 'Next' => 'הבא',
- 'No participants' => '',
- 'Only by Invite' => '',
- 'Open Calendar' => '',
- 'Participants' => '',
- 'Recurrence' => '',
- 'Reminder' => '',
- 'Select calendars' => '',
- 'Select event type...' => '',
- 'Settings' => 'הגדרות',
- 'Snippet' => '',
- 'Title' => 'כותרת',
- 'Undecided' => '',
- 'You are invited, please select your role:' => '',
- '{count} Participants' => '',
- '{displayName} cannot attend {contentTitle} on {dateTime}.' => '',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '',
+ 'All' => 'הכל',
+ 'Back' => 'חזרה',
+ 'Close' => 'סגור',
+ 'Decline' => 'דחה',
+ 'Export' => 'יצוא',
+ 'Menu' => 'תפריט',
+ 'My profile' => 'הפרופיל שלי',
+ 'Next' => 'הבא',
+ 'Settings' => 'הגדרות',
+ 'Title' => 'כותרת',
+ ':count Attending' => '',
+ ':count Declined' => '',
+ ':count Invited' => '',
+ ':count Undecided' => '',
+ 'Create Event' => '',
+ 'Create new event type' => '',
+ 'Edit Event' => '',
+ 'Edit calendar' => '',
+ 'Edit event type' => '',
+ 'Edit recurring event' => '',
+ 'Upcoming events ' => '',
+ 'Additional information' => '',
+ 'Are you sure want to remove the participant from the event?' => '',
+ 'Attend' => '',
+ 'Attending' => '',
+ 'Calendars' => '',
+ 'Declined' => '',
+ 'Defaults' => '',
+ 'Event Types' => '',
+ 'Everybody can participate' => '',
+ 'Filter' => '',
+ 'Filter events' => '',
+ 'Followed spaces' => '',
+ 'Followed users' => '',
+ 'General' => '',
+ 'I\'m attending' => '',
+ 'Invited' => '',
+ 'Maybe' => '',
+ 'My events' => '',
+ 'My spaces' => '',
+ 'No participants' => '',
+ 'Only by Invite' => '',
+ 'Open Calendar' => '',
+ 'Participants' => '',
+ 'Recurrence' => '',
+ 'Reminder' => '',
+ 'Select calendars' => '',
+ 'Select event type...' => '',
+ 'Snippet' => '',
+ 'Undecided' => '',
+ 'You are invited, please select your role:' => '',
+ '{count} Participants' => '',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/hr/views.php b/messages/hr/views.php
index 0225cf5f..c4ae8a83 100644
--- a/messages/hr/views.php
+++ b/messages/hr/views.php
@@ -1,59 +1,57 @@
'',
- ':count Declined' => '',
- ':count Invited' => '',
- ':count Undecided' => '',
- 'Create Event' => '',
- 'Create new event type' => 'Kreiraj novi tip događaja',
- 'Edit Event' => '',
- 'Edit calendar' => 'Uredi kalendar',
- 'Edit event type' => 'Uredi tip događaja',
- 'Edit recurring event' => 'Uredi ponavljajući događaj',
- 'Upcoming events ' => 'Nadolazeći događaji',
- 'Additional information' => 'Dodatne informacije',
- 'All' => 'Sve',
- 'Are you sure want to remove the participant from the event?' => '',
- 'Attend' => 'Prisustvo',
- 'Attending' => 'Prisustvovati',
- 'Back' => 'Natrag',
- 'Calendars' => 'Kalendari',
- 'Close' => 'Zatvori',
- 'Decline' => 'Odbij',
- 'Declined' => 'Odbijeni',
- 'Defaults' => 'Zadano',
- 'Event Types' => 'Vrste događaja',
- 'Everybody can participate' => 'Svi mogu sudjelovati',
- 'Export' => 'Izvoz',
- 'Filter' => 'Filter',
- 'Filter events' => 'Filtriraj događaje',
- 'Followed spaces' => 'Praćeni prostori',
- 'Followed users' => 'Praćeni korisnici',
- 'General' => 'Općenito',
- 'I\'m attending' => 'Ja prisustvujem',
- 'Invited' => 'Pozvani',
- 'Maybe' => 'Možda',
- 'Menu' => 'Izbornik',
- 'My events' => 'Moji događaji',
- 'My profile' => 'Moj profil',
- 'My spaces' => 'Moji prostori',
- 'Next' => 'Dalje',
- 'No participants' => 'Nema sudionika',
- 'Only by Invite' => 'Samo pozivom',
- 'Open Calendar' => 'Otvori kalendar',
- 'Participants' => 'Sudionici',
- 'Recurrence' => 'Ponavljanje',
- 'Reminder' => 'Podsjetnik',
- 'Select calendars' => 'Odaberi kalendare',
- 'Select event type...' => 'Odaberite tip događaja...',
- 'Settings' => 'Postavke',
- 'Snippet' => 'Isječak',
- 'Title' => 'Naziv',
- 'Undecided' => 'Neodlučeno',
- 'You are invited, please select your role:' => 'Pozvani ste, odaberite ulogu:',
- '{count} Participants' => '{count} Sudionik/a',
- '{displayName} cannot attend {contentTitle} on {dateTime}.' => '{displayName} ne može prisustvovati {contentTitle} na {dateTime}.',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '{displayName} prisustvuje {contentTitle} na {dateTime}.',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '{displayName} možda će prisustvovati {contentTitle} na {dateTime}.',
+ 'Create new event type' => 'Kreiraj novi tip događaja',
+ 'Edit calendar' => 'Uredi kalendar',
+ 'Edit event type' => 'Uredi tip događaja',
+ 'Edit recurring event' => 'Uredi ponavljajući događaj',
+ 'Upcoming events ' => 'Nadolazeći događaji',
+ 'Additional information' => 'Dodatne informacije',
+ 'All' => 'Sve',
+ 'Attend' => 'Prisustvo',
+ 'Attending' => 'Prisustvovati',
+ 'Back' => 'Natrag',
+ 'Calendars' => 'Kalendari',
+ 'Close' => 'Zatvori',
+ 'Decline' => 'Odbij',
+ 'Declined' => 'Odbijeni',
+ 'Defaults' => 'Zadano',
+ 'Event Types' => 'Vrste događaja',
+ 'Everybody can participate' => 'Svi mogu sudjelovati',
+ 'Export' => 'Izvoz',
+ 'Filter' => 'Filter',
+ 'Filter events' => 'Filtriraj događaje',
+ 'Followed spaces' => 'Praćeni prostori',
+ 'Followed users' => 'Praćeni korisnici',
+ 'General' => 'Općenito',
+ 'I\'m attending' => 'Ja prisustvujem',
+ 'Invited' => 'Pozvani',
+ 'Maybe' => 'Možda',
+ 'Menu' => 'Izbornik',
+ 'My events' => 'Moji događaji',
+ 'My profile' => 'Moj profil',
+ 'My spaces' => 'Moji prostori',
+ 'Next' => 'Dalje',
+ 'No participants' => 'Nema sudionika',
+ 'Only by Invite' => 'Samo pozivom',
+ 'Open Calendar' => 'Otvori kalendar',
+ 'Participants' => 'Sudionici',
+ 'Recurrence' => 'Ponavljanje',
+ 'Reminder' => 'Podsjetnik',
+ 'Select calendars' => 'Odaberi kalendare',
+ 'Select event type...' => 'Odaberite tip događaja...',
+ 'Settings' => 'Postavke',
+ 'Snippet' => 'Isječak',
+ 'Title' => 'Naziv',
+ 'Undecided' => 'Neodlučeno',
+ 'You are invited, please select your role:' => 'Pozvani ste, odaberite ulogu:',
+ '{count} Participants' => '{count} Sudionik/a',
+ ':count Attending' => '',
+ ':count Declined' => '',
+ ':count Invited' => '',
+ ':count Undecided' => '',
+ 'Create Event' => '',
+ 'Edit Event' => '',
+ 'Are you sure want to remove the participant from the event?' => '',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/ht/views.php b/messages/ht/views.php
index 4bfce4ec..9f007b66 100644
--- a/messages/ht/views.php
+++ b/messages/ht/views.php
@@ -8,10 +8,6 @@
'Next' => 'Apre',
'Settings' => 'Anviwònman',
'Title' => 'Tit',
- '{displayName} cannot attend {contentTitle} on {dateTime}.' => '',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '',
':count Attending' => '',
':count Declined' => '',
':count Invited' => '',
@@ -57,4 +53,5 @@
'Undecided' => '',
'You are invited, please select your role:' => '',
'{count} Participants' => '',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/hu/views.php b/messages/hu/views.php
index 13f2c1e0..44642aac 100644
--- a/messages/hu/views.php
+++ b/messages/hu/views.php
@@ -1,59 +1,57 @@
':count Részt vesz',
- ':count Declined' => ':count Elutasítva',
- ':count Invited' => ':count Meghívva',
- ':count Undecided' => ':count Még nem döntött',
- 'Create Event' => 'Esemény létrehozása',
- 'Create new event type' => 'Új eseménytípus létrehozása',
- 'Edit Event' => 'Esemény Szerkesztése',
- 'Edit calendar' => 'Naptár szerkesztése',
- 'Edit event type' => 'Eseménytípus szerkesztése',
- 'Edit recurring event' => 'Ismétlődő esemény szerkesztése',
- 'Upcoming events ' => 'Közelgő események',
- 'Additional information' => 'További információ',
- 'All' => 'Minden',
- 'Are you sure want to remove the participant from the event?' => 'Biztosan eltávolítja a résztvevőt az eseményből?',
- 'Attend' => 'Részt vesz',
- 'Attending' => 'Részt vesz',
- 'Back' => 'Vissza',
- 'Calendars' => 'Naptárak',
- 'Close' => 'Bezárás',
- 'Decline' => 'Nem vesz részt',
- 'Declined' => 'Elutasítva',
- 'Defaults' => 'Alapértelmezett',
- 'Event Types' => 'Eseménytípusok',
- 'Everybody can participate' => 'Bárki részt vehet',
- 'Export' => 'Exportálás',
- 'Filter' => 'Szűrés',
- 'Filter events' => 'Események szűrése',
- 'Followed spaces' => 'Követett közösségek',
- 'Followed users' => 'Követett felhasználók',
- 'General' => 'Általános',
- 'I\'m attending' => 'Részt veszek',
- 'Invited' => 'Meghívva',
- 'Maybe' => 'Talán',
- 'Menu' => 'Menü',
- 'My events' => 'Eseményeim',
- 'My profile' => 'Profilom',
- 'My spaces' => 'Közösségeim',
- 'Next' => 'Következő',
- 'No participants' => 'Nincsenek résztvevők',
- 'Only by Invite' => 'Csak meghívással',
- 'Open Calendar' => 'Naptár megnyitása',
- 'Participants' => 'Résztvevők',
- 'Recurrence' => 'Ismétlődés',
- 'Reminder' => 'Emlékeztető',
- 'Select calendars' => 'Naptárak kiválasztása',
- 'Select event type...' => 'Eseménytípus kiválasztása...',
- 'Settings' => 'Beállítások',
- 'Snippet' => 'Kódrészlet (snippet)',
- 'Title' => 'Cím',
- 'Undecided' => 'Még nincs eldöntve',
- 'You are invited, please select your role:' => 'Önt meghívták, kérjük, válassza ki a szerepét:',
- '{count} Participants' => '{count} résztvevő',
- '{displayName} cannot attend {contentTitle} on {dateTime}.' => '{displayName} nem vehet részt ebben: {contentTitle} {dateTime}.',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '{displayName} részt vehet itt: {contentTitle} {dateTime}.',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '{displayName} meghívást kapott ide: {contentTitle} {dateTime}.',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '{displayName} esetleg részt vehet itt: {contentTitle} {dateTime}.',
+ ':count Attending' => ':count Részt vesz',
+ ':count Declined' => ':count Elutasítva',
+ ':count Invited' => ':count Meghívva',
+ ':count Undecided' => ':count Még nem döntött',
+ 'Create Event' => 'Esemény létrehozása',
+ 'Create new event type' => 'Új eseménytípus létrehozása',
+ 'Edit Event' => 'Esemény Szerkesztése',
+ 'Edit calendar' => 'Naptár szerkesztése',
+ 'Edit event type' => 'Eseménytípus szerkesztése',
+ 'Edit recurring event' => 'Ismétlődő esemény szerkesztése',
+ 'Upcoming events ' => 'Közelgő események',
+ 'Additional information' => 'További információ',
+ 'All' => 'Minden',
+ 'Are you sure want to remove the participant from the event?' => 'Biztosan eltávolítja a résztvevőt az eseményből?',
+ 'Attend' => 'Részt vesz',
+ 'Attending' => 'Részt vesz',
+ 'Back' => 'Vissza',
+ 'Calendars' => 'Naptárak',
+ 'Close' => 'Bezárás',
+ 'Decline' => 'Nem vesz részt',
+ 'Declined' => 'Elutasítva',
+ 'Defaults' => 'Alapértelmezett',
+ 'Event Types' => 'Eseménytípusok',
+ 'Everybody can participate' => 'Bárki részt vehet',
+ 'Export' => 'Exportálás',
+ 'Filter' => 'Szűrés',
+ 'Filter events' => 'Események szűrése',
+ 'Followed spaces' => 'Követett közösségek',
+ 'Followed users' => 'Követett felhasználók',
+ 'General' => 'Általános',
+ 'I\'m attending' => 'Részt veszek',
+ 'Invited' => 'Meghívva',
+ 'Maybe' => 'Talán',
+ 'Menu' => 'Menü',
+ 'My events' => 'Eseményeim',
+ 'My profile' => 'Profilom',
+ 'My spaces' => 'Közösségeim',
+ 'Next' => 'Következő',
+ 'No participants' => 'Nincsenek résztvevők',
+ 'Only by Invite' => 'Csak meghívással',
+ 'Open Calendar' => 'Naptár megnyitása',
+ 'Participants' => 'Résztvevők',
+ 'Recurrence' => 'Ismétlődés',
+ 'Reminder' => 'Emlékeztető',
+ 'Select calendars' => 'Naptárak kiválasztása',
+ 'Select event type...' => 'Eseménytípus kiválasztása...',
+ 'Settings' => 'Beállítások',
+ 'Snippet' => 'Kódrészlet (snippet)',
+ 'Title' => 'Cím',
+ 'Undecided' => 'Még nincs eldöntve',
+ 'You are invited, please select your role:' => 'Önt meghívták, kérjük, válassza ki a szerepét:',
+ '{count} Participants' => '{count} résztvevő',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/id/views.php b/messages/id/views.php
index f25c9e40..9b88e742 100644
--- a/messages/id/views.php
+++ b/messages/id/views.php
@@ -1,59 +1,57 @@
'',
- ':count Declined' => '',
- ':count Invited' => '',
- ':count Undecided' => '',
- 'Create Event' => '',
- 'Create new event type' => '',
- 'Edit Event' => '',
- 'Edit calendar' => '',
- 'Edit event type' => '',
- 'Edit recurring event' => '',
- 'Upcoming events ' => 'Acara Selanjutnya',
- 'Additional information' => '',
- 'All' => 'Semua',
- 'Are you sure want to remove the participant from the event?' => '',
- 'Attend' => 'Hadir',
- 'Attending' => 'Menghadiri',
- 'Back' => 'Kembali',
- 'Calendars' => '',
- 'Close' => 'Tutup',
- 'Decline' => 'Batal',
- 'Declined' => '',
- 'Defaults' => '',
- 'Event Types' => '',
- 'Everybody can participate' => 'Semua orang dapat berpartisipasi',
- 'Export' => 'Kirim',
- 'Filter' => 'Filter',
- 'Filter events' => '',
- 'Followed spaces' => 'Ikuti Ruang',
- 'Followed users' => 'Ikuti pengguna',
- 'General' => 'Umum',
- 'I\'m attending' => '',
- 'Invited' => '',
- 'Maybe' => 'Mungkin',
- 'Menu' => 'Menu',
- 'My events' => 'Acara Saya',
- 'My profile' => 'Profil saya',
- 'My spaces' => 'Ruang Saya',
- 'Next' => 'Selanjutnya',
- 'No participants' => 'Tidak berpartisipasi',
- 'Only by Invite' => '',
- 'Open Calendar' => '',
- 'Participants' => 'Partisipasi',
- 'Recurrence' => '',
- 'Reminder' => '',
- 'Select calendars' => '',
- 'Select event type...' => '',
- 'Settings' => 'Pengaturan',
- 'Snippet' => '',
- 'Title' => 'Judul',
- 'Undecided' => '',
- 'You are invited, please select your role:' => '',
- '{count} Participants' => '',
- '{displayName} cannot attend {contentTitle} on {dateTime}.' => '',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '',
+ 'Upcoming events ' => 'Acara Selanjutnya',
+ 'All' => 'Semua',
+ 'Attend' => 'Hadir',
+ 'Attending' => 'Menghadiri',
+ 'Back' => 'Kembali',
+ 'Close' => 'Tutup',
+ 'Decline' => 'Batal',
+ 'Everybody can participate' => 'Semua orang dapat berpartisipasi',
+ 'Export' => 'Kirim',
+ 'Filter' => 'Filter',
+ 'Followed spaces' => 'Ikuti Ruang',
+ 'Followed users' => 'Ikuti pengguna',
+ 'General' => 'Umum',
+ 'Maybe' => 'Mungkin',
+ 'Menu' => 'Menu',
+ 'My events' => 'Acara Saya',
+ 'My profile' => 'Profil saya',
+ 'My spaces' => 'Ruang Saya',
+ 'Next' => 'Selanjutnya',
+ 'No participants' => 'Tidak berpartisipasi',
+ 'Participants' => 'Partisipasi',
+ 'Settings' => 'Pengaturan',
+ 'Title' => 'Judul',
+ ':count Attending' => '',
+ ':count Declined' => '',
+ ':count Invited' => '',
+ ':count Undecided' => '',
+ 'Create Event' => '',
+ 'Create new event type' => '',
+ 'Edit Event' => '',
+ 'Edit calendar' => '',
+ 'Edit event type' => '',
+ 'Edit recurring event' => '',
+ 'Additional information' => '',
+ 'Are you sure want to remove the participant from the event?' => '',
+ 'Calendars' => '',
+ 'Declined' => '',
+ 'Defaults' => '',
+ 'Event Types' => '',
+ 'Filter events' => '',
+ 'I\'m attending' => '',
+ 'Invited' => '',
+ 'Only by Invite' => '',
+ 'Open Calendar' => '',
+ 'Recurrence' => '',
+ 'Reminder' => '',
+ 'Select calendars' => '',
+ 'Select event type...' => '',
+ 'Snippet' => '',
+ 'Undecided' => '',
+ 'You are invited, please select your role:' => '',
+ '{count} Participants' => '',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/it/views.php b/messages/it/views.php
index 10b1cd64..3c4a0297 100644
--- a/messages/it/views.php
+++ b/messages/it/views.php
@@ -1,59 +1,57 @@
':count Partecipanti',
- ':count Declined' => ':count Rifiutati',
- ':count Invited' => ':count Invitati',
- ':count Undecided' => ':count Indecisi',
- 'Create Event' => 'Crea Evento',
- 'Create new event type' => 'Crea un nuovo tipo di evento',
- 'Edit Event' => 'Modifica Evento',
- 'Edit calendar' => 'Modifica calendario',
- 'Edit event type' => 'Modifica il tipo di evento',
- 'Edit recurring event' => 'Modifica Evento ricorrente',
- 'Upcoming events ' => 'Eventi imminenti',
- 'Additional information' => 'Informazioni aggiuntive',
- 'All' => 'Tutti',
- 'Are you sure want to remove the participant from the event?' => 'Sei sicuro di voler rimuovere il partecipante dall\'evento?',
- 'Attend' => 'Partecipa',
- 'Attending' => 'Parteciperò',
- 'Back' => 'Indietro',
- 'Calendars' => 'Calendari',
- 'Close' => 'Chiudi',
- 'Decline' => 'Rifiuta',
- 'Declined' => 'Rifiutato',
- 'Defaults' => 'Predefinite',
- 'Event Types' => 'Tipi di evento',
- 'Everybody can participate' => 'Ognuno può partecipare',
- 'Export' => 'Esporta',
- 'Filter' => 'Filtro',
- 'Filter events' => '',
- 'Followed spaces' => 'Spazi che seguo',
- 'Followed users' => 'Utenti che seguo',
- 'General' => 'Generale',
- 'I\'m attending' => 'sto partecipando',
- 'Invited' => 'Invitato',
- 'Maybe' => 'Forse',
- 'Menu' => 'Menù',
- 'My events' => 'I miei eventi',
- 'My profile' => 'il mio profilo',
- 'My spaces' => 'I miei spazi',
- 'Next' => 'Avanti',
- 'No participants' => 'Nessun partecipante',
- 'Only by Invite' => 'Solo su invito',
- 'Open Calendar' => 'Apri Calendario',
- 'Participants' => 'Partecipanti',
- 'Recurrence' => 'Ricorrenza',
- 'Reminder' => 'Promemoria',
- 'Select calendars' => '',
- 'Select event type...' => 'Seleziona il tipo di evento....',
- 'Settings' => 'Impostazioni',
- 'Snippet' => 'Snippet',
- 'Title' => 'Titolo',
- 'Undecided' => 'Indeciso',
- 'You are invited, please select your role:' => 'Sei invitato, seleziona il tuo ruolo:',
- '{count} Participants' => '{count} Partecipanti',
- '{displayName} cannot attend {contentTitle} on {dateTime}.' => '{displayName} non può partecipare a {contentTitle} il {dateTime}.',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '{displayName} sta partecipando a {contentTitle} il {dateTime}.',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '{displayName} è invitato a {contentTitle} il {dateTime}.',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '{displayName} potrebbe partecipare a {contentTitle} il {dateTime}.',
+ ':count Attending' => ':count Partecipanti',
+ ':count Declined' => ':count Rifiutati',
+ ':count Invited' => ':count Invitati',
+ ':count Undecided' => ':count Indecisi',
+ 'Create Event' => 'Crea Evento',
+ 'Create new event type' => 'Crea un nuovo tipo di evento',
+ 'Edit Event' => 'Modifica Evento',
+ 'Edit calendar' => 'Modifica calendario',
+ 'Edit event type' => 'Modifica il tipo di evento',
+ 'Edit recurring event' => 'Modifica Evento ricorrente',
+ 'Upcoming events ' => 'Eventi imminenti',
+ 'Additional information' => 'Informazioni aggiuntive',
+ 'All' => 'Tutti',
+ 'Are you sure want to remove the participant from the event?' => 'Sei sicuro di voler rimuovere il partecipante dall\'evento?',
+ 'Attend' => 'Partecipa',
+ 'Attending' => 'Parteciperò',
+ 'Back' => 'Indietro',
+ 'Calendars' => 'Calendari',
+ 'Close' => 'Chiudi',
+ 'Decline' => 'Rifiuta',
+ 'Declined' => 'Rifiutato',
+ 'Defaults' => 'Predefinite',
+ 'Event Types' => 'Tipi di evento',
+ 'Everybody can participate' => 'Ognuno può partecipare',
+ 'Export' => 'Esporta',
+ 'Filter' => 'Filtro',
+ 'Followed spaces' => 'Spazi che seguo',
+ 'Followed users' => 'Utenti che seguo',
+ 'General' => 'Generale',
+ 'I\'m attending' => 'sto partecipando',
+ 'Invited' => 'Invitato',
+ 'Maybe' => 'Forse',
+ 'Menu' => 'Menù',
+ 'My events' => 'I miei eventi',
+ 'My profile' => 'il mio profilo',
+ 'My spaces' => 'I miei spazi',
+ 'Next' => 'Avanti',
+ 'No participants' => 'Nessun partecipante',
+ 'Only by Invite' => 'Solo su invito',
+ 'Open Calendar' => 'Apri Calendario',
+ 'Participants' => 'Partecipanti',
+ 'Recurrence' => 'Ricorrenza',
+ 'Reminder' => 'Promemoria',
+ 'Select event type...' => 'Seleziona il tipo di evento....',
+ 'Settings' => 'Impostazioni',
+ 'Snippet' => 'Snippet',
+ 'Title' => 'Titolo',
+ 'Undecided' => 'Indeciso',
+ 'You are invited, please select your role:' => 'Sei invitato, seleziona il tuo ruolo:',
+ '{count} Participants' => '{count} Partecipanti',
+ 'Filter events' => '',
+ 'Select calendars' => '',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/ja/views.php b/messages/ja/views.php
index 2b352609..793f4b84 100644
--- a/messages/ja/views.php
+++ b/messages/ja/views.php
@@ -1,59 +1,57 @@
':count 参加者',
- ':count Declined' => ':count 辞退者',
- ':count Invited' => ':count 招待者',
- ':count Undecided' => ':count 未決定者',
- 'Create Event' => 'イベントを作成',
- 'Create new event type' => '新しいイベント タイプを 作成',
- 'Edit Event' => 'イベントを編集',
- 'Edit calendar' => 'カレンダーを 編集',
- 'Edit event type' => 'イベント タイプを 編集',
- 'Edit recurring event' => '繰り返しイベントを編集',
- 'Upcoming events ' => '次回 次回のイベント',
- 'Additional information' => '追加情報',
- 'All' => 'すべて',
- 'Are you sure want to remove the participant from the event?' => 'イベントから参加者を削除しますか?',
- 'Attend' => '参加',
- 'Attending' => '参加',
- 'Back' => '戻る',
- 'Calendars' => 'カレンダー',
- 'Close' => 'クローズ',
- 'Decline' => '辞退',
- 'Declined' => '辞退',
- 'Defaults' => '既定',
- 'Event Types' => 'イベントタイプ',
- 'Everybody can participate' => '誰もが参加できる',
- 'Export' => 'エクスポート',
- 'Filter' => 'フィルター',
- 'Filter events' => 'フィルターイベント',
- 'Followed spaces' => 'フォローされたスペース',
- 'Followed users' => 'フォローされたユーザー',
- 'General' => '一般',
- 'I\'m attending' => '参加する',
- 'Invited' => '招待済み',
- 'Maybe' => '未定',
- 'Menu' => 'メニュー',
- 'My events' => '自分のイベント',
- 'My profile' => '私のプロフィール',
- 'My spaces' => 'マイスペース',
- 'Next' => '次へ',
- 'No participants' => '参加者なし',
- 'Only by Invite' => '招待された人のみ',
- 'Open Calendar' => 'カレンダーを開く',
- 'Participants' => '参加者',
- 'Recurrence' => '繰り返し',
- 'Reminder' => 'リマインダー',
- 'Select calendars' => 'カレンダーを選択します',
- 'Select event type...' => 'イベント・タイプを選択...',
- 'Settings' => '設定',
- 'Snippet' => 'スニペット',
- 'Title' => 'タイトル',
- 'Undecided' => '未決定',
- 'You are invited, please select your role:' => '招待されました。役割を選択してください:',
- '{count} Participants' => '{count}人の参加者',
- '{displayName} cannot attend {contentTitle} on {dateTime}.' => '{displayName} は {contentTitle} {dateTime} に参加できません。',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '{displayName} は {contentTitle} {dateTime} に参加しています。',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '{displayName} は {contentTitle} {dateTime} に招待されています。',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '{displayName} は {contentTitle} {dateTime} に参加している可能性があります。',
+ ':count Attending' => ':count 参加者',
+ ':count Declined' => ':count 辞退者',
+ ':count Invited' => ':count 招待者',
+ ':count Undecided' => ':count 未決定者',
+ 'Create Event' => 'イベントを作成',
+ 'Create new event type' => '新しいイベント タイプを 作成',
+ 'Edit Event' => 'イベントを編集',
+ 'Edit calendar' => 'カレンダーを 編集',
+ 'Edit event type' => 'イベント タイプを 編集',
+ 'Edit recurring event' => '繰り返しイベントを編集',
+ 'Upcoming events ' => '次回 次回のイベント',
+ 'Additional information' => '追加情報',
+ 'All' => 'すべて',
+ 'Are you sure want to remove the participant from the event?' => 'イベントから参加者を削除しますか?',
+ 'Attend' => '参加',
+ 'Attending' => '参加',
+ 'Back' => '戻る',
+ 'Calendars' => 'カレンダー',
+ 'Close' => 'クローズ',
+ 'Decline' => '辞退',
+ 'Declined' => '辞退',
+ 'Defaults' => '既定',
+ 'Event Types' => 'イベントタイプ',
+ 'Everybody can participate' => '誰もが参加できる',
+ 'Export' => 'エクスポート',
+ 'Filter' => 'フィルター',
+ 'Filter events' => 'フィルターイベント',
+ 'Followed spaces' => 'フォローされたスペース',
+ 'Followed users' => 'フォローされたユーザー',
+ 'General' => '一般',
+ 'I\'m attending' => '参加する',
+ 'Invited' => '招待済み',
+ 'Maybe' => '未定',
+ 'Menu' => 'メニュー',
+ 'My events' => '自分のイベント',
+ 'My profile' => '私のプロフィール',
+ 'My spaces' => 'マイスペース',
+ 'Next' => '次へ',
+ 'No participants' => '参加者なし',
+ 'Only by Invite' => '招待された人のみ',
+ 'Open Calendar' => 'カレンダーを開く',
+ 'Participants' => '参加者',
+ 'Recurrence' => '繰り返し',
+ 'Reminder' => 'リマインダー',
+ 'Select calendars' => 'カレンダーを選択します',
+ 'Select event type...' => 'イベント・タイプを選択...',
+ 'Settings' => '設定',
+ 'Snippet' => 'スニペット',
+ 'Title' => 'タイトル',
+ 'Undecided' => '未決定',
+ 'You are invited, please select your role:' => '招待されました。役割を選択してください:',
+ '{count} Participants' => '{count}人の参加者',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/ko/views.php b/messages/ko/views.php
index 26b00c6b..b51f537b 100644
--- a/messages/ko/views.php
+++ b/messages/ko/views.php
@@ -1,59 +1,57 @@
'',
- ':count Declined' => '',
- ':count Invited' => '',
- ':count Undecided' => '',
- 'Create Event' => '',
- 'Create new event type' => '',
- 'Edit Event' => '',
- 'Edit calendar' => '',
- 'Edit event type' => '',
- 'Edit recurring event' => '',
- 'Upcoming events ' => '',
- 'Additional information' => '',
- 'All' => '모두',
- 'Are you sure want to remove the participant from the event?' => '',
- 'Attend' => '',
- 'Attending' => '',
- 'Back' => '돌아가기',
- 'Calendars' => '',
- 'Close' => '닫기',
- 'Decline' => '거부',
- 'Declined' => '',
- 'Defaults' => '',
- 'Event Types' => '',
- 'Everybody can participate' => '',
- 'Export' => '내보내기',
- 'Filter' => '필터',
- 'Filter events' => '',
- 'Followed spaces' => '',
- 'Followed users' => '',
- 'General' => '일반',
- 'I\'m attending' => '',
- 'Invited' => '',
- 'Maybe' => '',
- 'Menu' => '메뉴',
- 'My events' => '',
- 'My profile' => '내 프로필',
- 'My spaces' => '나의 방',
- 'Next' => '다음',
- 'No participants' => '',
- 'Only by Invite' => '',
- 'Open Calendar' => '',
- 'Participants' => '',
- 'Recurrence' => '',
- 'Reminder' => '',
- 'Select calendars' => '',
- 'Select event type...' => '',
- 'Settings' => '설정',
- 'Snippet' => '',
- 'Title' => '제목',
- 'Undecided' => '',
- 'You are invited, please select your role:' => '',
- '{count} Participants' => '',
- '{displayName} cannot attend {contentTitle} on {dateTime}.' => '',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '',
+ 'All' => '모두',
+ 'Back' => '돌아가기',
+ 'Close' => '닫기',
+ 'Decline' => '거부',
+ 'Export' => '내보내기',
+ 'Filter' => '필터',
+ 'General' => '일반',
+ 'Menu' => '메뉴',
+ 'My profile' => '내 프로필',
+ 'My spaces' => '나의 방',
+ 'Next' => '다음',
+ 'Settings' => '설정',
+ 'Title' => '제목',
+ ':count Attending' => '',
+ ':count Declined' => '',
+ ':count Invited' => '',
+ ':count Undecided' => '',
+ 'Create Event' => '',
+ 'Create new event type' => '',
+ 'Edit Event' => '',
+ 'Edit calendar' => '',
+ 'Edit event type' => '',
+ 'Edit recurring event' => '',
+ 'Upcoming events ' => '',
+ 'Additional information' => '',
+ 'Are you sure want to remove the participant from the event?' => '',
+ 'Attend' => '',
+ 'Attending' => '',
+ 'Calendars' => '',
+ 'Declined' => '',
+ 'Defaults' => '',
+ 'Event Types' => '',
+ 'Everybody can participate' => '',
+ 'Filter events' => '',
+ 'Followed spaces' => '',
+ 'Followed users' => '',
+ 'I\'m attending' => '',
+ 'Invited' => '',
+ 'Maybe' => '',
+ 'My events' => '',
+ 'No participants' => '',
+ 'Only by Invite' => '',
+ 'Open Calendar' => '',
+ 'Participants' => '',
+ 'Recurrence' => '',
+ 'Reminder' => '',
+ 'Select calendars' => '',
+ 'Select event type...' => '',
+ 'Snippet' => '',
+ 'Undecided' => '',
+ 'You are invited, please select your role:' => '',
+ '{count} Participants' => '',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/lt/views.php b/messages/lt/views.php
index bd40a651..5e3ae48e 100644
--- a/messages/lt/views.php
+++ b/messages/lt/views.php
@@ -1,59 +1,57 @@
'',
- ':count Declined' => '',
- ':count Invited' => '',
- ':count Undecided' => '',
- 'Create Event' => '',
- 'Create new event type' => '',
- 'Edit Event' => '',
- 'Edit calendar' => '',
- 'Edit event type' => '',
- 'Edit recurring event' => '',
- 'Upcoming events ' => 'Artėjantys renginiai',
- 'Additional information' => '',
- 'All' => 'Visi',
- 'Are you sure want to remove the participant from the event?' => '',
- 'Attend' => 'Dalyvauti',
- 'Attending' => '',
- 'Back' => 'Atgal',
- 'Calendars' => '',
- 'Close' => 'Uždaryti',
- 'Decline' => 'Atmesti',
- 'Declined' => '',
- 'Defaults' => 'Numatytieji',
- 'Event Types' => '',
- 'Everybody can participate' => 'Dalyvauti gali visi',
- 'Export' => 'Eksportuoti:',
- 'Filter' => 'Filtras',
- 'Filter events' => '',
- 'Followed spaces' => 'Sekamos erdvės',
- 'Followed users' => 'Sekami vartotojai',
- 'General' => 'Pagrindinis',
- 'I\'m attending' => 'Dalyvauju',
- 'Invited' => '',
- 'Maybe' => 'Galbūt',
- 'Menu' => 'Meniu',
- 'My events' => 'Mano įvykiai',
- 'My profile' => 'Mano profilis',
- 'My spaces' => 'Mano erdvės',
- 'Next' => 'Kitas',
- 'No participants' => 'Nėra dalyvių',
- 'Only by Invite' => '',
- 'Open Calendar' => '',
- 'Participants' => 'Dalyviai',
- 'Recurrence' => '',
- 'Reminder' => '',
- 'Select calendars' => '',
- 'Select event type...' => '',
- 'Settings' => 'Nustatymai',
- 'Snippet' => '',
- 'Title' => 'Pavadinimas',
- 'Undecided' => '',
- 'You are invited, please select your role:' => '',
- '{count} Participants' => '',
- '{displayName} cannot attend {contentTitle} on {dateTime}.' => '',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '',
+ 'Upcoming events ' => 'Artėjantys renginiai',
+ 'All' => 'Visi',
+ 'Attend' => 'Dalyvauti',
+ 'Back' => 'Atgal',
+ 'Close' => 'Uždaryti',
+ 'Decline' => 'Atmesti',
+ 'Defaults' => 'Numatytieji',
+ 'Everybody can participate' => 'Dalyvauti gali visi',
+ 'Export' => 'Eksportuoti:',
+ 'Filter' => 'Filtras',
+ 'Followed spaces' => 'Sekamos erdvės',
+ 'Followed users' => 'Sekami vartotojai',
+ 'General' => 'Pagrindinis',
+ 'I\'m attending' => 'Dalyvauju',
+ 'Maybe' => 'Galbūt',
+ 'Menu' => 'Meniu',
+ 'My events' => 'Mano įvykiai',
+ 'My profile' => 'Mano profilis',
+ 'My spaces' => 'Mano erdvės',
+ 'Next' => 'Kitas',
+ 'No participants' => 'Nėra dalyvių',
+ 'Participants' => 'Dalyviai',
+ 'Settings' => 'Nustatymai',
+ 'Title' => 'Pavadinimas',
+ ':count Attending' => '',
+ ':count Declined' => '',
+ ':count Invited' => '',
+ ':count Undecided' => '',
+ 'Create Event' => '',
+ 'Create new event type' => '',
+ 'Edit Event' => '',
+ 'Edit calendar' => '',
+ 'Edit event type' => '',
+ 'Edit recurring event' => '',
+ 'Additional information' => '',
+ 'Are you sure want to remove the participant from the event?' => '',
+ 'Attending' => '',
+ 'Calendars' => '',
+ 'Declined' => '',
+ 'Event Types' => '',
+ 'Filter events' => '',
+ 'Invited' => '',
+ 'Only by Invite' => '',
+ 'Open Calendar' => '',
+ 'Recurrence' => '',
+ 'Reminder' => '',
+ 'Select calendars' => '',
+ 'Select event type...' => '',
+ 'Snippet' => '',
+ 'Undecided' => '',
+ 'You are invited, please select your role:' => '',
+ '{count} Participants' => '',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/lv/views.php b/messages/lv/views.php
index 383c9545..768d86de 100644
--- a/messages/lv/views.php
+++ b/messages/lv/views.php
@@ -21,10 +21,6 @@
'Participants' => 'Dalībnieki',
'Settings' => 'Uzstādījumi',
'Title' => 'Nosaukum',
- '{displayName} cannot attend {contentTitle} on {dateTime}.' => '',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '',
':count Attending' => '',
':count Declined' => '',
':count Invited' => '',
@@ -57,4 +53,5 @@
'Undecided' => '',
'You are invited, please select your role:' => '',
'{count} Participants' => '',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/nb-NO/views.php b/messages/nb-NO/views.php
index 71602922..0c827842 100644
--- a/messages/nb-NO/views.php
+++ b/messages/nb-NO/views.php
@@ -1,59 +1,57 @@
'',
- ':count Declined' => '',
- ':count Invited' => '',
- ':count Undecided' => '',
- 'Create Event' => '',
- 'Create new event type' => 'Opprett ny aktiviteststype',
- 'Edit Event' => '',
- 'Edit calendar' => 'Rediger kalenderen',
- 'Edit event type' => 'Rediger aktivitetstype',
- 'Edit recurring event' => '',
- 'Upcoming events ' => 'Kommende aktiviteter',
- 'Additional information' => '',
- 'All' => 'Alt',
- 'Are you sure want to remove the participant from the event?' => '',
- 'Attend' => 'Delta',
- 'Attending' => 'Deltar',
- 'Back' => 'Tilbake',
- 'Calendars' => '',
- 'Close' => 'Lukk',
- 'Decline' => 'Avvis',
- 'Declined' => '',
- 'Defaults' => 'Standard innstillinger',
- 'Event Types' => 'Aktivitetstyper',
- 'Everybody can participate' => 'Med påmelding',
- 'Export' => 'Eksporter',
- 'Filter' => 'Filter',
- 'Filter events' => '',
- 'Followed spaces' => 'Følger grupper',
- 'Followed users' => 'Følger brukere',
- 'General' => 'Generelt',
- 'I\'m attending' => 'Jeg deltar',
- 'Invited' => 'Invitert',
- 'Maybe' => 'Kanskje',
- 'Menu' => 'Meny',
- 'My events' => 'Mine events',
- 'My profile' => 'Min profil',
- 'My spaces' => 'Mine grupper',
- 'Next' => 'Neste',
- 'No participants' => 'Uten påmelding',
- 'Only by Invite' => '',
- 'Open Calendar' => 'Åpne Kalender',
- 'Participants' => 'Deltagere',
- 'Recurrence' => '',
- 'Reminder' => '',
- 'Select calendars' => '',
- 'Select event type...' => 'Velg aktivitetstype',
- 'Settings' => 'Innstillinger',
- 'Snippet' => 'Snippet',
- 'Title' => 'Tittel',
- 'Undecided' => '',
- 'You are invited, please select your role:' => '',
- '{count} Participants' => '',
- '{displayName} cannot attend {contentTitle} on {dateTime}.' => '',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '',
+ 'Create new event type' => 'Opprett ny aktiviteststype',
+ 'Edit calendar' => 'Rediger kalenderen',
+ 'Edit event type' => 'Rediger aktivitetstype',
+ 'Upcoming events ' => 'Kommende aktiviteter',
+ 'All' => 'Alt',
+ 'Attend' => 'Delta',
+ 'Attending' => 'Deltar',
+ 'Back' => 'Tilbake',
+ 'Close' => 'Lukk',
+ 'Decline' => 'Avvis',
+ 'Defaults' => 'Standard innstillinger',
+ 'Event Types' => 'Aktivitetstyper',
+ 'Everybody can participate' => 'Med påmelding',
+ 'Export' => 'Eksporter',
+ 'Filter' => 'Filter',
+ 'Followed spaces' => 'Følger grupper',
+ 'Followed users' => 'Følger brukere',
+ 'General' => 'Generelt',
+ 'I\'m attending' => 'Jeg deltar',
+ 'Invited' => 'Invitert',
+ 'Maybe' => 'Kanskje',
+ 'Menu' => 'Meny',
+ 'My events' => 'Mine events',
+ 'My profile' => 'Min profil',
+ 'My spaces' => 'Mine grupper',
+ 'Next' => 'Neste',
+ 'No participants' => 'Uten påmelding',
+ 'Open Calendar' => 'Åpne Kalender',
+ 'Participants' => 'Deltagere',
+ 'Select event type...' => 'Velg aktivitetstype',
+ 'Settings' => 'Innstillinger',
+ 'Snippet' => 'Snippet',
+ 'Title' => 'Tittel',
+ ':count Attending' => '',
+ ':count Declined' => '',
+ ':count Invited' => '',
+ ':count Undecided' => '',
+ 'Create Event' => '',
+ 'Edit Event' => '',
+ 'Edit recurring event' => '',
+ 'Additional information' => '',
+ 'Are you sure want to remove the participant from the event?' => '',
+ 'Calendars' => '',
+ 'Declined' => '',
+ 'Filter events' => '',
+ 'Only by Invite' => '',
+ 'Recurrence' => '',
+ 'Reminder' => '',
+ 'Select calendars' => '',
+ 'Undecided' => '',
+ 'You are invited, please select your role:' => '',
+ '{count} Participants' => '',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/nl/views.php b/messages/nl/views.php
index d49885c4..2ae3e040 100644
--- a/messages/nl/views.php
+++ b/messages/nl/views.php
@@ -1,9 +1,5 @@
'{displayName} kan {contentTitle} niet bijwonen op {dateTime}.',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '{displayName} gaat naar {contentTitle} op {dateTime}.',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '{displayName} is uitgenodigd voor {contentTitle} op {dateTime}.',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '{displayName} is mogelijk aanwezig op {contentTitle} op {dateTime}.',
':count Attending' => ':count aanwezig',
':count Declined' => ':count afgewezen',
':count Invited' => ':count uitgenodigd',
@@ -56,4 +52,5 @@
'Undecided' => 'Onbepaald',
'You are invited, please select your role:' => 'U bent uitgenodigd, selecteer uw rol:',
'{count} Participants' => '{count} deelnemers',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '{displayName} neemt deel aan gebeurtenis "{contentTitle}" op {dateTime}.',
];
diff --git a/messages/nn-NO/views.php b/messages/nn-NO/views.php
index 1b66314e..af710815 100644
--- a/messages/nn-NO/views.php
+++ b/messages/nn-NO/views.php
@@ -3,10 +3,6 @@
return [
'Settings' => 'Innstillinger',
'Title' => 'Tittel',
- '{displayName} cannot attend {contentTitle} on {dateTime}.' => '',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '',
':count Attending' => '',
':count Declined' => '',
':count Invited' => '',
@@ -57,4 +53,5 @@
'Undecided' => '',
'You are invited, please select your role:' => '',
'{count} Participants' => '',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/pl/views.php b/messages/pl/views.php
index 1ca2a777..255ec7ab 100644
--- a/messages/pl/views.php
+++ b/messages/pl/views.php
@@ -1,59 +1,57 @@
':count uczestników',
- ':count Declined' => ':count odmówiło',
- ':count Invited' => ':count zaproszonych',
- ':count Undecided' => ':count niezdecydowanych',
- 'Create Event' => 'Utwórz wydarzenie',
- 'Create new event type' => 'Stwórz nowy typ wydarzeń',
- 'Edit Event' => 'Zmień wydarzenie',
- 'Edit calendar' => 'edytuj kalendarz',
- 'Edit event type' => 'Edytuj typ wydarzeń',
- 'Edit recurring event' => 'Edytuj powtarzające się wydarzenie',
- 'Upcoming events ' => 'Nadchodzące wydarzenia',
- 'Additional information' => 'Dodatkowe informacje',
- 'All' => 'Wszystko',
- 'Are you sure want to remove the participant from the event?' => 'Czy aby na pewno chcesz usunąć uczestników wydarzenia?',
- 'Attend' => 'Wezmę udział',
- 'Attending' => 'Biorę udział',
- 'Back' => 'Wstecz',
- 'Calendars' => 'Kalendarze',
- 'Close' => 'Zamknij',
- 'Decline' => 'Odrzuć',
- 'Declined' => 'Odmówili',
- 'Defaults' => 'Domyślne',
- 'Event Types' => 'Typy wydarzeń',
- 'Everybody can participate' => 'Każdy może wziąć udział',
- 'Export' => 'Eksportuj',
- 'Filter' => 'Filtr',
- 'Filter events' => 'Filtruj wydarzenia',
- 'Followed spaces' => 'Obserwowane strefy',
- 'Followed users' => 'Obserwowani użytkownicy',
- 'General' => 'Ogólne',
- 'I\'m attending' => 'Biorę udział',
- 'Invited' => 'Zaproszeni',
- 'Maybe' => 'Może',
- 'Menu' => 'Menu',
- 'My events' => 'Moje wydarzenia',
- 'My profile' => 'Mój profil',
- 'My spaces' => 'Moje strefy',
- 'Next' => 'Dalej',
- 'No participants' => 'Brak biorących udział',
- 'Only by Invite' => 'Tylko na zaproszenie',
- 'Open Calendar' => 'Otwórz kalendarz',
- 'Participants' => 'Uczestnicy',
- 'Recurrence' => 'Powtarzanie',
- 'Reminder' => 'Przypomnienia',
- 'Select calendars' => 'Wybrane kalendarze',
- 'Select event type...' => 'Wybierz typ wydarzenia...',
- 'Settings' => 'Ustawienia',
- 'Snippet' => 'Panel',
- 'Title' => 'Tytuł',
- 'Undecided' => 'Niezdecydowani',
- 'You are invited, please select your role:' => 'Jesteś zaproszony, proszę określ swoją rolę',
- '{count} Participants' => '{count} uczestników',
- '{displayName} cannot attend {contentTitle} on {dateTime}.' => '{displayName} nie może uczestniczyć w {contentTitle} w {dateTime}.',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '{displayName} uczestniczy w {contentTitle} w {dateTime}.',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '{displayName} jest zaproszony na {contentTitle} w {dateTime}.',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '{displayName} może weźmie udział w {contentTitle} w {dateTime}.',
+ ':count Attending' => ':count uczestników',
+ ':count Declined' => ':count odmówiło',
+ ':count Invited' => ':count zaproszonych',
+ ':count Undecided' => ':count niezdecydowanych',
+ 'Create Event' => 'Utwórz wydarzenie',
+ 'Create new event type' => 'Stwórz nowy typ wydarzeń',
+ 'Edit Event' => 'Zmień wydarzenie',
+ 'Edit calendar' => 'edytuj kalendarz',
+ 'Edit event type' => 'Edytuj typ wydarzeń',
+ 'Edit recurring event' => 'Edytuj powtarzające się wydarzenie',
+ 'Upcoming events ' => 'Nadchodzące wydarzenia',
+ 'Additional information' => 'Dodatkowe informacje',
+ 'All' => 'Wszystko',
+ 'Are you sure want to remove the participant from the event?' => 'Czy aby na pewno chcesz usunąć uczestników wydarzenia?',
+ 'Attend' => 'Wezmę udział',
+ 'Attending' => 'Biorę udział',
+ 'Back' => 'Wstecz',
+ 'Calendars' => 'Kalendarze',
+ 'Close' => 'Zamknij',
+ 'Decline' => 'Odrzuć',
+ 'Declined' => 'Odmówili',
+ 'Defaults' => 'Domyślne',
+ 'Event Types' => 'Typy wydarzeń',
+ 'Everybody can participate' => 'Każdy może wziąć udział',
+ 'Export' => 'Eksportuj',
+ 'Filter' => 'Filtr',
+ 'Filter events' => 'Filtruj wydarzenia',
+ 'Followed spaces' => 'Obserwowane strefy',
+ 'Followed users' => 'Obserwowani użytkownicy',
+ 'General' => 'Ogólne',
+ 'I\'m attending' => 'Biorę udział',
+ 'Invited' => 'Zaproszeni',
+ 'Maybe' => 'Może',
+ 'Menu' => 'Menu',
+ 'My events' => 'Moje wydarzenia',
+ 'My profile' => 'Mój profil',
+ 'My spaces' => 'Moje strefy',
+ 'Next' => 'Dalej',
+ 'No participants' => 'Brak biorących udział',
+ 'Only by Invite' => 'Tylko na zaproszenie',
+ 'Open Calendar' => 'Otwórz kalendarz',
+ 'Participants' => 'Uczestnicy',
+ 'Recurrence' => 'Powtarzanie',
+ 'Reminder' => 'Przypomnienia',
+ 'Select calendars' => 'Wybrane kalendarze',
+ 'Select event type...' => 'Wybierz typ wydarzenia...',
+ 'Settings' => 'Ustawienia',
+ 'Snippet' => 'Panel',
+ 'Title' => 'Tytuł',
+ 'Undecided' => 'Niezdecydowani',
+ 'You are invited, please select your role:' => 'Jesteś zaproszony, proszę określ swoją rolę',
+ '{count} Participants' => '{count} uczestników',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/pt-BR/views.php b/messages/pt-BR/views.php
index f4c8f812..3f7bdf1e 100644
--- a/messages/pt-BR/views.php
+++ b/messages/pt-BR/views.php
@@ -1,59 +1,57 @@
'{displayName} não pode participar a {contentTitle} em {dateTime}.',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '{displayName} está participando de {contentTitle} em {dateTime}.',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '{displayName} foi convidado para {contentTitle} em {dateTime}.',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '{displayName} pode estar participando de {contentTitle} em {dateTime}.',
- ':count Attending' => ':count Confirmados',
- ':count Declined' => ':count Ausentes',
- ':count Invited' => ':count Convidados',
- ':count Undecided' => ':count Indecisos',
- 'Create Event' => 'Criar Evento',
- 'Create new event type' => 'Criar novo tipo de evento',
- 'Edit Event' => 'Editar Evento',
- 'Edit calendar' => 'Editar calendário',
- 'Edit event type' => 'Alterar tipo de evento',
- 'Edit recurring event' => 'Editar evento recorrente',
- 'Upcoming events ' => 'Próximos eventos',
- 'Additional information' => 'Informações adicionais',
- 'All' => 'Todos',
- 'Are you sure want to remove the participant from the event?' => 'Tem certeza que deseja remover o participante do evento?',
- 'Attend' => 'Confirmar',
- 'Attending' => 'Participando',
- 'Back' => 'Voltar',
- 'Calendars' => 'Calendários',
- 'Close' => 'Fechar',
- 'Decline' => 'Recusar',
- 'Declined' => 'Recusado',
- 'Defaults' => 'Padrões',
- 'Event Types' => 'Tipos de Eventos',
- 'Everybody can participate' => 'Todos podem participar',
- 'Export' => 'Exportar',
- 'Filter' => 'Filtro',
- 'Filter events' => 'Filtrar eventos',
- 'Followed spaces' => 'Espaços que eu sigo',
- 'Followed users' => 'Usuários que eu sigo',
- 'General' => 'Geral',
- 'I\'m attending' => 'Estou participando',
- 'Invited' => 'Convidado',
- 'Maybe' => 'Talvez',
- 'Menu' => 'Menu',
- 'My events' => 'Meus eventos',
- 'My profile' => 'Meu perfil',
- 'My spaces' => 'Meus espaços',
- 'Next' => 'Avançar',
- 'No participants' => 'Sem participantes',
- 'Only by Invite' => 'Somente por convite',
- 'Open Calendar' => 'Abrir Calendário',
- 'Participants' => 'Participantes',
- 'Recurrence' => 'Recorrência',
- 'Reminder' => 'Lembrete',
- 'Select calendars' => 'Selecionar calendários',
- 'Select event type...' => 'Selecionar tipo de evento...',
- 'Settings' => 'Configurações',
- 'Snippet' => 'Trecho',
- 'Title' => 'Título',
- 'Undecided' => 'Indeciso',
- 'You are invited, please select your role:' => 'Você foi convidado. Selecione uma das opções abaixo:',
- '{count} Participants' => '{count} participantes',
+ ':count Attending' => ':count Confirmados',
+ ':count Declined' => ':count Ausentes',
+ ':count Invited' => ':count Convidados',
+ ':count Undecided' => ':count Indecisos',
+ 'Create Event' => 'Criar Evento',
+ 'Create new event type' => 'Criar novo tipo de evento',
+ 'Edit Event' => 'Editar Evento',
+ 'Edit calendar' => 'Editar calendário',
+ 'Edit event type' => 'Alterar tipo de evento',
+ 'Edit recurring event' => 'Editar evento recorrente',
+ 'Upcoming events ' => 'Próximos eventos',
+ 'Additional information' => 'Informações adicionais',
+ 'All' => 'Todos',
+ 'Are you sure want to remove the participant from the event?' => 'Tem certeza que deseja remover o participante do evento?',
+ 'Attend' => 'Confirmar',
+ 'Attending' => 'Participando',
+ 'Back' => 'Voltar',
+ 'Calendars' => 'Calendários',
+ 'Close' => 'Fechar',
+ 'Decline' => 'Recusar',
+ 'Declined' => 'Recusado',
+ 'Defaults' => 'Padrões',
+ 'Event Types' => 'Tipos de Eventos',
+ 'Everybody can participate' => 'Todos podem participar',
+ 'Export' => 'Exportar',
+ 'Filter' => 'Filtro',
+ 'Filter events' => 'Filtrar eventos',
+ 'Followed spaces' => 'Espaços que eu sigo',
+ 'Followed users' => 'Usuários que eu sigo',
+ 'General' => 'Geral',
+ 'I\'m attending' => 'Estou participando',
+ 'Invited' => 'Convidado',
+ 'Maybe' => 'Talvez',
+ 'Menu' => 'Menu',
+ 'My events' => 'Meus eventos',
+ 'My profile' => 'Meu perfil',
+ 'My spaces' => 'Meus espaços',
+ 'Next' => 'Avançar',
+ 'No participants' => 'Sem participantes',
+ 'Only by Invite' => 'Somente por convite',
+ 'Open Calendar' => 'Abrir Calendário',
+ 'Participants' => 'Participantes',
+ 'Recurrence' => 'Recorrência',
+ 'Reminder' => 'Lembrete',
+ 'Select calendars' => 'Selecionar calendários',
+ 'Select event type...' => 'Selecionar tipo de evento...',
+ 'Settings' => 'Configurações',
+ 'Snippet' => 'Trecho',
+ 'Title' => 'Título',
+ 'Undecided' => 'Indeciso',
+ 'You are invited, please select your role:' => 'Você foi convidado. Selecione uma das opções abaixo:',
+ '{count} Participants' => '{count} participantes',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/pt/views.php b/messages/pt/views.php
index c5cd217b..1abe7301 100644
--- a/messages/pt/views.php
+++ b/messages/pt/views.php
@@ -1,59 +1,57 @@
':count Participam',
- ':count Declined' => ':count Recusaram',
- ':count Invited' => ':count Convidados',
- ':count Undecided' => ':count Indecisos',
- 'Create Event' => 'Criar Evento',
- 'Create new event type' => 'Criar novo tipo de evento',
- 'Edit Event' => 'Editar Event',
- 'Edit calendar' => 'Editar calendário',
- 'Edit event type' => 'Editar tipo de evento',
- 'Edit recurring event' => 'Editar evento recorrente',
- 'Upcoming events ' => 'Próximos eventos',
- 'Additional information' => 'Informação adicional',
- 'All' => 'Todos',
- 'Are you sure want to remove the participant from the event?' => 'Tens a certeza de que queres remover o participante deste evento?',
- 'Attend' => 'Participar',
- 'Attending' => 'Participam',
- 'Back' => 'Voltar',
- 'Calendars' => 'Calendários',
- 'Close' => 'Fechar',
- 'Decline' => 'Recusar',
- 'Declined' => 'Recusaram',
- 'Defaults' => 'Padrões',
- 'Event Types' => 'Tipos de Evento',
- 'Everybody can participate' => 'Todas as pessoas podem participar',
- 'Export' => 'Exportar',
- 'Filter' => 'Filtro',
- 'Filter events' => '',
- 'Followed spaces' => 'Espaços seguidos',
- 'Followed users' => 'Pessoas seguidas',
- 'General' => 'Geral',
- 'I\'m attending' => 'Vou',
- 'Invited' => 'Convidados',
- 'Maybe' => 'Talvez',
- 'Menu' => 'Menu',
- 'My events' => 'Meus eventos',
- 'My profile' => 'Meu perfil',
- 'My spaces' => 'Meus espaços',
- 'Next' => 'Seguinte',
- 'No participants' => 'Sem participantes',
- 'Only by Invite' => 'Só por Convite',
- 'Open Calendar' => 'Abrir o Calendário',
- 'Participants' => 'Participantes',
- 'Recurrence' => 'Repetição',
- 'Reminder' => 'Lembrete',
- 'Select calendars' => '',
- 'Select event type...' => 'Seleciona o tipo do evento...',
- 'Settings' => 'Definições',
- 'Snippet' => 'Excerto',
- 'Title' => 'Título',
- 'Undecided' => 'Indecisos',
- 'You are invited, please select your role:' => 'Estás convidado, por favor seleciona o papel:',
- '{count} Participants' => '{count} Participantes',
- '{displayName} cannot attend {contentTitle} on {dateTime}.' => '{displayName} não vai participar em {contentTitle} em {dateTime}.',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '{displayName} vai participar em {contentTitle} em {dateTime}.',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '{displayName} está convidado a participar em {contentTitle} em {dateTime}.',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '{displayName} talvez participe em {contentTitle} em {dateTime}.',
+ ':count Attending' => ':count Participam',
+ ':count Declined' => ':count Recusaram',
+ ':count Invited' => ':count Convidados',
+ ':count Undecided' => ':count Indecisos',
+ 'Create Event' => 'Criar Evento',
+ 'Create new event type' => 'Criar novo tipo de evento',
+ 'Edit Event' => 'Editar Event',
+ 'Edit calendar' => 'Editar calendário',
+ 'Edit event type' => 'Editar tipo de evento',
+ 'Edit recurring event' => 'Editar evento recorrente',
+ 'Upcoming events ' => 'Próximos eventos',
+ 'Additional information' => 'Informação adicional',
+ 'All' => 'Todos',
+ 'Are you sure want to remove the participant from the event?' => 'Tens a certeza de que queres remover o participante deste evento?',
+ 'Attend' => 'Participar',
+ 'Attending' => 'Participam',
+ 'Back' => 'Voltar',
+ 'Calendars' => 'Calendários',
+ 'Close' => 'Fechar',
+ 'Decline' => 'Recusar',
+ 'Declined' => 'Recusaram',
+ 'Defaults' => 'Padrões',
+ 'Event Types' => 'Tipos de Evento',
+ 'Everybody can participate' => 'Todas as pessoas podem participar',
+ 'Export' => 'Exportar',
+ 'Filter' => 'Filtro',
+ 'Followed spaces' => 'Espaços seguidos',
+ 'Followed users' => 'Pessoas seguidas',
+ 'General' => 'Geral',
+ 'I\'m attending' => 'Vou',
+ 'Invited' => 'Convidados',
+ 'Maybe' => 'Talvez',
+ 'Menu' => 'Menu',
+ 'My events' => 'Meus eventos',
+ 'My profile' => 'Meu perfil',
+ 'My spaces' => 'Meus espaços',
+ 'Next' => 'Seguinte',
+ 'No participants' => 'Sem participantes',
+ 'Only by Invite' => 'Só por Convite',
+ 'Open Calendar' => 'Abrir o Calendário',
+ 'Participants' => 'Participantes',
+ 'Recurrence' => 'Repetição',
+ 'Reminder' => 'Lembrete',
+ 'Select event type...' => 'Seleciona o tipo do evento...',
+ 'Settings' => 'Definições',
+ 'Snippet' => 'Excerto',
+ 'Title' => 'Título',
+ 'Undecided' => 'Indecisos',
+ 'You are invited, please select your role:' => 'Estás convidado, por favor seleciona o papel:',
+ '{count} Participants' => '{count} Participantes',
+ 'Filter events' => '',
+ 'Select calendars' => '',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/ro/views.php b/messages/ro/views.php
index 7785ebe2..c03436e1 100644
--- a/messages/ro/views.php
+++ b/messages/ro/views.php
@@ -1,59 +1,57 @@
'',
- ':count Declined' => '',
- ':count Invited' => '',
- ':count Undecided' => '',
- 'Create Event' => '',
- 'Create new event type' => '',
- 'Edit Event' => '',
- 'Edit calendar' => '',
- 'Edit event type' => '',
- 'Edit recurring event' => '',
- 'Upcoming events ' => 'Viitoare evenimente',
- 'Additional information' => '',
- 'All' => 'Toate',
- 'Are you sure want to remove the participant from the event?' => '',
- 'Attend' => 'Participă',
- 'Attending' => '',
- 'Back' => 'Înapoi',
- 'Calendars' => '',
- 'Close' => 'Închide',
- 'Decline' => 'Respinge',
- 'Declined' => '',
- 'Defaults' => '',
- 'Event Types' => '',
- 'Everybody can participate' => 'Oricine poate participa',
- 'Export' => 'Exportă',
- 'Filter' => 'Filtrează',
- 'Filter events' => '',
- 'Followed spaces' => 'Spații urmărite',
- 'Followed users' => 'Utilizatori urmăriți',
- 'General' => '',
- 'I\'m attending' => 'Particip',
- 'Invited' => '',
- 'Maybe' => 'Probabil',
- 'Menu' => 'Meniu',
- 'My events' => 'Evenimentele mele',
- 'My profile' => 'Profilul meu',
- 'My spaces' => 'Spațiile mele',
- 'Next' => 'Inainte',
- 'No participants' => 'Fără participanți',
- 'Only by Invite' => '',
- 'Open Calendar' => '',
- 'Participants' => 'Participanți',
- 'Recurrence' => '',
- 'Reminder' => '',
- 'Select calendars' => '',
- 'Select event type...' => '',
- 'Settings' => 'Impostatii',
- 'Snippet' => '',
- 'Title' => 'Titlul',
- 'Undecided' => '',
- 'You are invited, please select your role:' => '',
- '{count} Participants' => '',
- '{displayName} cannot attend {contentTitle} on {dateTime}.' => '',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '',
+ 'Upcoming events ' => 'Viitoare evenimente',
+ 'All' => 'Toate',
+ 'Attend' => 'Participă',
+ 'Back' => 'Înapoi',
+ 'Close' => 'Închide',
+ 'Decline' => 'Respinge',
+ 'Everybody can participate' => 'Oricine poate participa',
+ 'Export' => 'Exportă',
+ 'Filter' => 'Filtrează',
+ 'Followed spaces' => 'Spații urmărite',
+ 'Followed users' => 'Utilizatori urmăriți',
+ 'I\'m attending' => 'Particip',
+ 'Maybe' => 'Probabil',
+ 'Menu' => 'Meniu',
+ 'My events' => 'Evenimentele mele',
+ 'My profile' => 'Profilul meu',
+ 'My spaces' => 'Spațiile mele',
+ 'Next' => 'Inainte',
+ 'No participants' => 'Fără participanți',
+ 'Participants' => 'Participanți',
+ 'Settings' => 'Impostatii',
+ 'Title' => 'Titlul',
+ ':count Attending' => '',
+ ':count Declined' => '',
+ ':count Invited' => '',
+ ':count Undecided' => '',
+ 'Create Event' => '',
+ 'Create new event type' => '',
+ 'Edit Event' => '',
+ 'Edit calendar' => '',
+ 'Edit event type' => '',
+ 'Edit recurring event' => '',
+ 'Additional information' => '',
+ 'Are you sure want to remove the participant from the event?' => '',
+ 'Attending' => '',
+ 'Calendars' => '',
+ 'Declined' => '',
+ 'Defaults' => '',
+ 'Event Types' => '',
+ 'Filter events' => '',
+ 'General' => '',
+ 'Invited' => '',
+ 'Only by Invite' => '',
+ 'Open Calendar' => '',
+ 'Recurrence' => '',
+ 'Reminder' => '',
+ 'Select calendars' => '',
+ 'Select event type...' => '',
+ 'Snippet' => '',
+ 'Undecided' => '',
+ 'You are invited, please select your role:' => '',
+ '{count} Participants' => '',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/ru/views.php b/messages/ru/views.php
index 880b2e7c..9663a2c1 100644
--- a/messages/ru/views.php
+++ b/messages/ru/views.php
@@ -1,59 +1,57 @@
'',
- ':count Declined' => '',
- ':count Invited' => '',
- ':count Undecided' => '',
- 'Create Event' => 'Создать событие',
- 'Create new event type' => 'Создать новый тип события.',
- 'Edit Event' => 'Изменить событие',
- 'Edit calendar' => 'Изменить календарь',
- 'Edit event type' => 'Изменить тип события',
- 'Edit recurring event' => 'Изменить повторяющееся событие',
- 'Upcoming events ' => 'Будущие события',
- 'Additional information' => 'Дополнительная информация',
- 'All' => 'Все',
- 'Are you sure want to remove the participant from the event?' => 'Вы уверены, что хотите удалить участника с мероприятия?',
- 'Attend' => 'Посетить',
- 'Attending' => 'Участвует',
- 'Back' => 'Назад',
- 'Calendars' => 'Календари',
- 'Close' => 'Закрыть',
- 'Decline' => 'Отказать',
- 'Declined' => '',
- 'Defaults' => 'По-умолчанию',
- 'Event Types' => 'Типы событий',
- 'Everybody can participate' => 'Любой может принять участие',
- 'Export' => 'Экспорт',
- 'Filter' => 'Фильтр',
- 'Filter events' => 'Фильтр событий',
- 'Followed spaces' => 'Пространства, за которыми слежу',
- 'Followed users' => 'Пользователи, за которыми слежу',
- 'General' => 'Основная информация',
- 'I\'m attending' => 'Я собираюсь посетить',
- 'Invited' => 'Приглашение',
- 'Maybe' => 'Возможно',
- 'Menu' => 'Меню',
- 'My events' => 'Мои события',
- 'My profile' => 'Мой профиль',
- 'My spaces' => 'Мои пространства',
- 'Next' => 'Далее',
- 'No participants' => 'Нет участников',
- 'Only by Invite' => 'Только по приглашению',
- 'Open Calendar' => 'Открыть календарь',
- 'Participants' => 'Участники',
- 'Recurrence' => 'Повторение',
- 'Reminder' => 'Напоминание',
- 'Select calendars' => 'Выберите календари',
- 'Select event type...' => 'Выберите тип мероприятия...',
- 'Settings' => 'Настройки',
- 'Snippet' => 'Виджет',
- 'Title' => 'Наименование',
- 'Undecided' => '',
- 'You are invited, please select your role:' => 'Вы приглашены, пожалуйста, выберите свою роль:',
- '{count} Participants' => '{count} участников',
- '{displayName} cannot attend {contentTitle} on {dateTime}.' => '{displayName} не может посещать {contentTitle} {dateTime}.',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '{displayName} посещает {contentTitle} {dateTime}.',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '{displayName} приглашен в {contentTitle} {dateTime}.',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '{displayName} может присутствовать на {contentTitle} {dateTime}.',
+ 'Create Event' => 'Создать событие',
+ 'Create new event type' => 'Создать новый тип события.',
+ 'Edit Event' => 'Изменить событие',
+ 'Edit calendar' => 'Изменить календарь',
+ 'Edit event type' => 'Изменить тип события',
+ 'Edit recurring event' => 'Изменить повторяющееся событие',
+ 'Upcoming events ' => 'Будущие события',
+ 'Additional information' => 'Дополнительная информация',
+ 'All' => 'Все',
+ 'Are you sure want to remove the participant from the event?' => 'Вы уверены, что хотите удалить участника с мероприятия?',
+ 'Attend' => 'Посетить',
+ 'Attending' => 'Участвует',
+ 'Back' => 'Назад',
+ 'Calendars' => 'Календари',
+ 'Close' => 'Закрыть',
+ 'Decline' => 'Отказать',
+ 'Defaults' => 'По-умолчанию',
+ 'Event Types' => 'Типы событий',
+ 'Everybody can participate' => 'Любой может принять участие',
+ 'Export' => 'Экспорт',
+ 'Filter' => 'Фильтр',
+ 'Filter events' => 'Фильтр событий',
+ 'Followed spaces' => 'Пространства, за которыми слежу',
+ 'Followed users' => 'Пользователи, за которыми слежу',
+ 'General' => 'Основная информация',
+ 'I\'m attending' => 'Я собираюсь посетить',
+ 'Invited' => 'Приглашение',
+ 'Maybe' => 'Возможно',
+ 'Menu' => 'Меню',
+ 'My events' => 'Мои события',
+ 'My profile' => 'Мой профиль',
+ 'My spaces' => 'Мои пространства',
+ 'Next' => 'Далее',
+ 'No participants' => 'Нет участников',
+ 'Only by Invite' => 'Только по приглашению',
+ 'Open Calendar' => 'Открыть календарь',
+ 'Participants' => 'Участники',
+ 'Recurrence' => 'Повторение',
+ 'Reminder' => 'Напоминание',
+ 'Select calendars' => 'Выберите календари',
+ 'Select event type...' => 'Выберите тип мероприятия...',
+ 'Settings' => 'Настройки',
+ 'Snippet' => 'Виджет',
+ 'Title' => 'Наименование',
+ 'You are invited, please select your role:' => 'Вы приглашены, пожалуйста, выберите свою роль:',
+ '{count} Participants' => '{count} участников',
+ ':count Attending' => '',
+ ':count Declined' => '',
+ ':count Invited' => '',
+ ':count Undecided' => '',
+ 'Declined' => '',
+ 'Undecided' => '',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/sk/views.php b/messages/sk/views.php
index d1208bc9..c6b8ba15 100644
--- a/messages/sk/views.php
+++ b/messages/sk/views.php
@@ -1,59 +1,57 @@
':count Zúčastní sa',
- ':count Declined' => ':count Odmieta',
- ':count Invited' => ':count Pozvaný',
- ':count Undecided' => ':count Nerozhodnutý',
- 'Create Event' => 'Vytvoriť udalosť',
- 'Create new event type' => 'Vytvoriť nový typ udalosti',
- 'Edit Event' => 'Upraviť udalosť',
- 'Edit calendar' => 'Upraviť kalendár',
- 'Edit event type' => 'Upraviť typ udalosti',
- 'Edit recurring event' => 'Upraviť opakujúcu sa udalosť',
- 'Upcoming events ' => 'Nadchádzajúce udalosti',
- 'Additional information' => 'Ďalšie Informácie',
- 'All' => 'Všetko',
- 'Are you sure want to remove the participant from the event?' => 'Naozaj chcete odstrániť účastníka z udalosti?',
- 'Attend' => 'Zúčastniť sa',
- 'Attending' => 'Zúčastniť sa',
- 'Back' => 'Späť',
- 'Calendars' => 'Kalendáre',
- 'Close' => 'Zavrieť',
- 'Decline' => 'Odmietnuť',
- 'Declined' => 'Odmietnuť',
- 'Defaults' => 'Predvolené',
- 'Event Types' => 'Typy udalostí',
- 'Everybody can participate' => 'Zúčastniť sa môže každý',
- 'Export' => 'Exportovať',
- 'Filter' => 'Filter',
- 'Filter events' => 'Filtrovať udalosti',
- 'Followed spaces' => 'Sledované priestory',
- 'Followed users' => 'Sledovaní používatelia',
- 'General' => 'Všeobecné',
- 'I\'m attending' => 'Som účatníkom',
- 'Invited' => 'Pozvaný',
- 'Maybe' => 'Možno',
- 'Menu' => 'Ponuka',
- 'My events' => 'Moje udalosti',
- 'My profile' => 'Môj profil',
- 'My spaces' => 'Moje priestory',
- 'Next' => 'Ďalej',
- 'No participants' => 'Žiadni účastníci',
- 'Only by Invite' => 'Iba na pozvanie',
- 'Open Calendar' => 'Otvoriť Kalendár',
- 'Participants' => 'Účastníci',
- 'Recurrence' => 'Opakovanie',
- 'Reminder' => 'Pripomienka',
- 'Select calendars' => 'Vybrať kalendáre',
- 'Select event type...' => 'Vyberte typ udalosti...',
- 'Settings' => 'Nastavenia',
- 'Snippet' => 'Úryvok',
- 'Title' => 'Názov',
- 'Undecided' => 'Nerozhodnutý',
- 'You are invited, please select your role:' => 'Ste pozvaný, vyberte si svoju rolu:',
- '{count} Participants' => '{count} Účastníkov',
- '{displayName} cannot attend {contentTitle} on {dateTime}.' => '{displayName} sa nemôže zúčastniť {contentTitle} dňa {dateTime}.',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '{displayName} sa zúčastní {contentTitle} dňa {dateTime}.',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '{displayName} je pozvaný do {contentTitle} dňa {dateTime}.',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '{displayName} sa možno zúčastní {contentTitle} dňa {dateTime}.',
+ ':count Attending' => ':count Zúčastní sa',
+ ':count Declined' => ':count Odmieta',
+ ':count Invited' => ':count Pozvaný',
+ ':count Undecided' => ':count Nerozhodnutý',
+ 'Create Event' => 'Vytvoriť udalosť',
+ 'Create new event type' => 'Vytvoriť nový typ udalosti',
+ 'Edit Event' => 'Upraviť udalosť',
+ 'Edit calendar' => 'Upraviť kalendár',
+ 'Edit event type' => 'Upraviť typ udalosti',
+ 'Edit recurring event' => 'Upraviť opakujúcu sa udalosť',
+ 'Upcoming events ' => 'Nadchádzajúce udalosti',
+ 'Additional information' => 'Ďalšie Informácie',
+ 'All' => 'Všetko',
+ 'Are you sure want to remove the participant from the event?' => 'Naozaj chcete odstrániť účastníka z udalosti?',
+ 'Attend' => 'Zúčastniť sa',
+ 'Attending' => 'Zúčastniť sa',
+ 'Back' => 'Späť',
+ 'Calendars' => 'Kalendáre',
+ 'Close' => 'Zavrieť',
+ 'Decline' => 'Odmietnuť',
+ 'Declined' => 'Odmietnuť',
+ 'Defaults' => 'Predvolené',
+ 'Event Types' => 'Typy udalostí',
+ 'Everybody can participate' => 'Zúčastniť sa môže každý',
+ 'Export' => 'Exportovať',
+ 'Filter' => 'Filter',
+ 'Filter events' => 'Filtrovať udalosti',
+ 'Followed spaces' => 'Sledované priestory',
+ 'Followed users' => 'Sledovaní používatelia',
+ 'General' => 'Všeobecné',
+ 'I\'m attending' => 'Som účatníkom',
+ 'Invited' => 'Pozvaný',
+ 'Maybe' => 'Možno',
+ 'Menu' => 'Ponuka',
+ 'My events' => 'Moje udalosti',
+ 'My profile' => 'Môj profil',
+ 'My spaces' => 'Moje priestory',
+ 'Next' => 'Ďalej',
+ 'No participants' => 'Žiadni účastníci',
+ 'Only by Invite' => 'Iba na pozvanie',
+ 'Open Calendar' => 'Otvoriť Kalendár',
+ 'Participants' => 'Účastníci',
+ 'Recurrence' => 'Opakovanie',
+ 'Reminder' => 'Pripomienka',
+ 'Select calendars' => 'Vybrať kalendáre',
+ 'Select event type...' => 'Vyberte typ udalosti...',
+ 'Settings' => 'Nastavenia',
+ 'Snippet' => 'Úryvok',
+ 'Title' => 'Názov',
+ 'Undecided' => 'Nerozhodnutý',
+ 'You are invited, please select your role:' => 'Ste pozvaný, vyberte si svoju rolu:',
+ '{count} Participants' => '{count} Účastníkov',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/sl/views.php b/messages/sl/views.php
index e3d612d9..d58c126a 100644
--- a/messages/sl/views.php
+++ b/messages/sl/views.php
@@ -1,59 +1,57 @@
'',
- ':count Declined' => '',
- ':count Invited' => '',
- ':count Undecided' => '',
- 'Create Event' => '',
- 'Create new event type' => '',
- 'Edit Event' => '',
- 'Edit calendar' => '',
- 'Edit event type' => '',
- 'Edit recurring event' => '',
- 'Upcoming events ' => '',
- 'Additional information' => '',
- 'All' => 'Vse',
- 'Are you sure want to remove the participant from the event?' => '',
- 'Attend' => '',
- 'Attending' => '',
- 'Back' => 'Nazaj',
- 'Calendars' => '',
- 'Close' => 'Zapri',
- 'Decline' => '',
- 'Declined' => '',
- 'Defaults' => '',
- 'Event Types' => '',
- 'Everybody can participate' => '',
- 'Export' => 'Izvozi',
- 'Filter' => '',
- 'Filter events' => '',
- 'Followed spaces' => '',
- 'Followed users' => '',
- 'General' => 'Splošno',
- 'I\'m attending' => '',
- 'Invited' => '',
- 'Maybe' => '',
- 'Menu' => 'Izbor',
- 'My events' => '',
- 'My profile' => '',
- 'My spaces' => 'Moji prostori',
- 'Next' => 'Naslednji',
- 'No participants' => '',
- 'Only by Invite' => '',
- 'Open Calendar' => '',
- 'Participants' => '',
- 'Recurrence' => '',
- 'Reminder' => '',
- 'Select calendars' => '',
- 'Select event type...' => '',
- 'Settings' => 'Nastavitve',
- 'Snippet' => '',
- 'Title' => 'Naslov',
- 'Undecided' => '',
- 'You are invited, please select your role:' => '',
- '{count} Participants' => '',
- '{displayName} cannot attend {contentTitle} on {dateTime}.' => '',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '',
+ 'All' => 'Vse',
+ 'Back' => 'Nazaj',
+ 'Close' => 'Zapri',
+ 'Export' => 'Izvozi',
+ 'General' => 'Splošno',
+ 'Menu' => 'Izbor',
+ 'My spaces' => 'Moji prostori',
+ 'Next' => 'Naslednji',
+ 'Settings' => 'Nastavitve',
+ 'Title' => 'Naslov',
+ ':count Attending' => '',
+ ':count Declined' => '',
+ ':count Invited' => '',
+ ':count Undecided' => '',
+ 'Create Event' => '',
+ 'Create new event type' => '',
+ 'Edit Event' => '',
+ 'Edit calendar' => '',
+ 'Edit event type' => '',
+ 'Edit recurring event' => '',
+ 'Upcoming events ' => '',
+ 'Additional information' => '',
+ 'Are you sure want to remove the participant from the event?' => '',
+ 'Attend' => '',
+ 'Attending' => '',
+ 'Calendars' => '',
+ 'Decline' => '',
+ 'Declined' => '',
+ 'Defaults' => '',
+ 'Event Types' => '',
+ 'Everybody can participate' => '',
+ 'Filter' => '',
+ 'Filter events' => '',
+ 'Followed spaces' => '',
+ 'Followed users' => '',
+ 'I\'m attending' => '',
+ 'Invited' => '',
+ 'Maybe' => '',
+ 'My events' => '',
+ 'My profile' => '',
+ 'No participants' => '',
+ 'Only by Invite' => '',
+ 'Open Calendar' => '',
+ 'Participants' => '',
+ 'Recurrence' => '',
+ 'Reminder' => '',
+ 'Select calendars' => '',
+ 'Select event type...' => '',
+ 'Snippet' => '',
+ 'Undecided' => '',
+ 'You are invited, please select your role:' => '',
+ '{count} Participants' => '',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/sq/views.php b/messages/sq/views.php
index ddc2ca5e..473cb8da 100644
--- a/messages/sq/views.php
+++ b/messages/sq/views.php
@@ -4,10 +4,6 @@
'General' => 'Gjeneral',
'Settings' => 'Cilësimet',
'Title' => 'Titulli',
- '{displayName} cannot attend {contentTitle} on {dateTime}.' => '',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '',
':count Attending' => '',
':count Declined' => '',
':count Invited' => '',
@@ -57,4 +53,5 @@
'Undecided' => '',
'You are invited, please select your role:' => '',
'{count} Participants' => '',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/sr/views.php b/messages/sr/views.php
index 9ac09438..beefa7e2 100644
--- a/messages/sr/views.php
+++ b/messages/sr/views.php
@@ -1,59 +1,57 @@
'',
- ':count Declined' => '',
- ':count Invited' => '',
- ':count Undecided' => '',
- 'Create Event' => '',
- 'Create new event type' => 'Kreiraj novi tip događaja',
- 'Edit Event' => '',
- 'Edit calendar' => 'Uredi kalendar',
- 'Edit event type' => 'Uredi tip događaja',
- 'Edit recurring event' => 'Uredi ponavljajući događaj',
- 'Upcoming events ' => 'Predstojeći događaji',
- 'Additional information' => 'Dodatne informacije',
- 'All' => 'Све',
- 'Are you sure want to remove the participant from the event?' => '',
- 'Attend' => 'Prisustvuj',
- 'Attending' => 'Prisustvuju',
- 'Back' => 'Nazad',
- 'Calendars' => 'Kalendari',
- 'Close' => 'Zatvori',
- 'Decline' => 'Odbij',
- 'Declined' => '',
- 'Defaults' => 'Zadano',
- 'Event Types' => 'Vrste događaja',
- 'Everybody can participate' => 'Svi mogu da učestvuju',
- 'Export' => 'Izvoz',
- 'Filter' => 'Filter',
- 'Filter events' => '',
- 'Followed spaces' => 'Zapraćeni prostori',
- 'Followed users' => 'Zapraćeni korisnici',
- 'General' => 'Opšte',
- 'I\'m attending' => 'Ja prisustvujem',
- 'Invited' => '',
- 'Maybe' => 'Možda',
- 'Menu' => 'Meni',
- 'My events' => 'Moji događaji',
- 'My profile' => 'Moj profil',
- 'My spaces' => 'Moji prostori',
- 'Next' => 'Dalje',
- 'No participants' => 'Nema učesnika',
- 'Only by Invite' => '',
- 'Open Calendar' => 'Otvori kalendar',
- 'Participants' => 'Učesnici',
- 'Recurrence' => 'Ponavljanje',
- 'Reminder' => 'Podsetnik',
- 'Select calendars' => '',
- 'Select event type...' => 'Odaberite tip događaja...',
- 'Settings' => 'Postavke',
- 'Snippet' => 'Isečak',
- 'Title' => 'Funkcija',
- 'Undecided' => '',
- 'You are invited, please select your role:' => '',
- '{count} Participants' => '',
- '{displayName} cannot attend {contentTitle} on {dateTime}.' => '{displayName} ne može prisustvovati {contentTitle} na {dateTime}.',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '{displayName} prisustvuje {contentTitle} na {dateTime}.',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '{displayName} možda će prisustvovati {contentTitle} na {dateTime}.',
+ 'Create new event type' => 'Kreiraj novi tip događaja',
+ 'Edit calendar' => 'Uredi kalendar',
+ 'Edit event type' => 'Uredi tip događaja',
+ 'Edit recurring event' => 'Uredi ponavljajući događaj',
+ 'Upcoming events ' => 'Predstojeći događaji',
+ 'Additional information' => 'Dodatne informacije',
+ 'All' => 'Све',
+ 'Attend' => 'Prisustvuj',
+ 'Attending' => 'Prisustvuju',
+ 'Back' => 'Nazad',
+ 'Calendars' => 'Kalendari',
+ 'Close' => 'Zatvori',
+ 'Decline' => 'Odbij',
+ 'Defaults' => 'Zadano',
+ 'Event Types' => 'Vrste događaja',
+ 'Everybody can participate' => 'Svi mogu da učestvuju',
+ 'Export' => 'Izvoz',
+ 'Filter' => 'Filter',
+ 'Followed spaces' => 'Zapraćeni prostori',
+ 'Followed users' => 'Zapraćeni korisnici',
+ 'General' => 'Opšte',
+ 'I\'m attending' => 'Ja prisustvujem',
+ 'Maybe' => 'Možda',
+ 'Menu' => 'Meni',
+ 'My events' => 'Moji događaji',
+ 'My profile' => 'Moj profil',
+ 'My spaces' => 'Moji prostori',
+ 'Next' => 'Dalje',
+ 'No participants' => 'Nema učesnika',
+ 'Open Calendar' => 'Otvori kalendar',
+ 'Participants' => 'Učesnici',
+ 'Recurrence' => 'Ponavljanje',
+ 'Reminder' => 'Podsetnik',
+ 'Select event type...' => 'Odaberite tip događaja...',
+ 'Settings' => 'Postavke',
+ 'Snippet' => 'Isečak',
+ 'Title' => 'Funkcija',
+ ':count Attending' => '',
+ ':count Declined' => '',
+ ':count Invited' => '',
+ ':count Undecided' => '',
+ 'Create Event' => '',
+ 'Edit Event' => '',
+ 'Are you sure want to remove the participant from the event?' => '',
+ 'Declined' => '',
+ 'Filter events' => '',
+ 'Invited' => '',
+ 'Only by Invite' => '',
+ 'Select calendars' => '',
+ 'Undecided' => '',
+ 'You are invited, please select your role:' => '',
+ '{count} Participants' => '',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/sv/views.php b/messages/sv/views.php
index c6112b59..d198694a 100644
--- a/messages/sv/views.php
+++ b/messages/sv/views.php
@@ -1,59 +1,57 @@
':count Närvarar',
- ':count Declined' => ':count har avböjt',
- ':count Invited' => ':count Inbjudna',
- ':count Undecided' => ':count Osäkra',
- 'Create Event' => 'Skapa evenemang',
- 'Create new event type' => 'Skapa ny aktivitetstyp',
- 'Edit Event' => 'Redigera evenemang',
- 'Edit calendar' => 'Ändra kalender',
- 'Edit event type' => 'Ändra aktivitetstyp',
- 'Edit recurring event' => 'Ändra återkommande aktivitet',
- 'Upcoming events ' => 'Kommande aktiviteter',
- 'Additional information' => 'Ytterligare information',
- 'All' => 'Alla',
- 'Are you sure want to remove the participant from the event?' => 'Är du säker på att du vill ta bort deltagaren från evenemanget?',
- 'Attend' => 'Deltar',
- 'Attending' => 'Närvarar',
- 'Back' => 'Tillbaka',
- 'Calendars' => 'Kalendrar',
- 'Close' => 'Stäng',
- 'Decline' => 'Avböj',
- 'Declined' => 'Tackade nej',
- 'Defaults' => 'Standardinställning',
- 'Event Types' => 'Aktivitetstyper',
- 'Everybody can participate' => 'Alla kan delta',
- 'Export' => 'Exportera',
- 'Filter' => 'Filtrera',
- 'Filter events' => 'Filtrera event',
- 'Followed spaces' => 'Följda forum',
- 'Followed users' => 'Följda användare',
- 'General' => 'Allmän',
- 'I\'m attending' => 'Jag deltar',
- 'Invited' => 'Inbjudna',
- 'Maybe' => 'Kanske',
- 'Menu' => 'Meny',
- 'My events' => 'Mina aktiviteter',
- 'My profile' => 'Min profil',
- 'My spaces' => 'Mina forum',
- 'Next' => 'Nästa',
- 'No participants' => 'Inga deltagare',
- 'Only by Invite' => 'Endast genom inbjudan',
- 'Open Calendar' => 'Öppna kalender',
- 'Participants' => 'Deltagare',
- 'Recurrence' => 'Återkommande',
- 'Reminder' => 'Påminnelse',
- 'Select calendars' => 'Välj kalendrar',
- 'Select event type...' => 'Välj aktivitetstyp',
- 'Settings' => 'Inställningar',
- 'Snippet' => 'Snippet',
- 'Title' => 'Rubrik',
- 'Undecided' => 'Osäkra',
- 'You are invited, please select your role:' => 'Du är inbjuden, välj din roll:',
- '{count} Participants' => '{count} deltagare',
- '{displayName} cannot attend {contentTitle} on {dateTime}.' => '{displayName} kan inte delta i {contentTitle} den {dateTime}.',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '{displayName} deltar i {contentTitle} den {dateTime}.',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '{displayName} är inbjuden till {contentTitle} den {dateTime}.',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '{displayName} kommer kanske att delta i {contentTitle} den {dateTime}.',
+ ':count Attending' => ':count Närvarar',
+ ':count Declined' => ':count har avböjt',
+ ':count Invited' => ':count Inbjudna',
+ ':count Undecided' => ':count Osäkra',
+ 'Create Event' => 'Skapa evenemang',
+ 'Create new event type' => 'Skapa ny aktivitetstyp',
+ 'Edit Event' => 'Redigera evenemang',
+ 'Edit calendar' => 'Ändra kalender',
+ 'Edit event type' => 'Ändra aktivitetstyp',
+ 'Edit recurring event' => 'Ändra återkommande aktivitet',
+ 'Upcoming events ' => 'Kommande aktiviteter',
+ 'Additional information' => 'Ytterligare information',
+ 'All' => 'Alla',
+ 'Are you sure want to remove the participant from the event?' => 'Är du säker på att du vill ta bort deltagaren från evenemanget?',
+ 'Attend' => 'Deltar',
+ 'Attending' => 'Närvarar',
+ 'Back' => 'Tillbaka',
+ 'Calendars' => 'Kalendrar',
+ 'Close' => 'Stäng',
+ 'Decline' => 'Avböj',
+ 'Declined' => 'Tackade nej',
+ 'Defaults' => 'Standardinställning',
+ 'Event Types' => 'Aktivitetstyper',
+ 'Everybody can participate' => 'Alla kan delta',
+ 'Export' => 'Exportera',
+ 'Filter' => 'Filtrera',
+ 'Filter events' => 'Filtrera event',
+ 'Followed spaces' => 'Följda forum',
+ 'Followed users' => 'Följda användare',
+ 'General' => 'Allmän',
+ 'I\'m attending' => 'Jag deltar',
+ 'Invited' => 'Inbjudna',
+ 'Maybe' => 'Kanske',
+ 'Menu' => 'Meny',
+ 'My events' => 'Mina aktiviteter',
+ 'My profile' => 'Min profil',
+ 'My spaces' => 'Mina forum',
+ 'Next' => 'Nästa',
+ 'No participants' => 'Inga deltagare',
+ 'Only by Invite' => 'Endast genom inbjudan',
+ 'Open Calendar' => 'Öppna kalender',
+ 'Participants' => 'Deltagare',
+ 'Recurrence' => 'Återkommande',
+ 'Reminder' => 'Påminnelse',
+ 'Select calendars' => 'Välj kalendrar',
+ 'Select event type...' => 'Välj aktivitetstyp',
+ 'Settings' => 'Inställningar',
+ 'Snippet' => 'Snippet',
+ 'Title' => 'Rubrik',
+ 'Undecided' => 'Osäkra',
+ 'You are invited, please select your role:' => 'Du är inbjuden, välj din roll:',
+ '{count} Participants' => '{count} deltagare',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/sw/views.php b/messages/sw/views.php
index 08350f0a..4338c5ac 100644
--- a/messages/sw/views.php
+++ b/messages/sw/views.php
@@ -1,10 +1,6 @@
'',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '',
':count Attending' => '',
':count Declined' => '',
':count Invited' => '',
@@ -57,4 +53,5 @@
'Undecided' => '',
'You are invited, please select your role:' => '',
'{count} Participants' => '',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/th/views.php b/messages/th/views.php
index 5f1997a1..b28d45ce 100644
--- a/messages/th/views.php
+++ b/messages/th/views.php
@@ -1,59 +1,57 @@
'',
- ':count Declined' => '',
- ':count Invited' => '',
- ':count Undecided' => '',
- 'Create Event' => '',
- 'Create new event type' => 'สร้าง ประเภทกิจกรรมใหม่',
- 'Edit Event' => '',
- 'Edit calendar' => 'แก้ไข ปฏิทิน',
- 'Edit event type' => 'แก้ไข ประเภทเหตุการณ์',
- 'Edit recurring event' => 'แก้ไข เหตุการณ์ที่เกิดซ้ำ',
- 'Upcoming events ' => 'กำลังจะเกิดขึ้น เหตุการณ์',
- 'Additional information' => 'ข้อมูลเพิ่มเติม',
- 'All' => 'ทั้งหมด',
- 'Are you sure want to remove the participant from the event?' => '',
- 'Attend' => 'เข้าร่วม',
- 'Attending' => 'เข้าร่วม',
- 'Back' => 'กลับ',
- 'Calendars' => 'ปฏิทิน',
- 'Close' => 'ปิด',
- 'Decline' => 'ลดลง',
- 'Declined' => '',
- 'Defaults' => 'ค่าเริ่มต้น',
- 'Event Types' => 'ประเภทงาน',
- 'Everybody can participate' => 'ทุกคนสามารถมีส่วนร่วม',
- 'Export' => 'ส่งออก',
- 'Filter' => 'กรอง',
- 'Filter events' => '',
- 'Followed spaces' => 'ติดตามช่องว่าง Follow',
- 'Followed users' => 'ผู้ใช้ที่ติดตาม',
- 'General' => 'ทั่วไป',
- 'I\'m attending' => 'ฉันกำลังเข้าร่วม',
- 'Invited' => '',
- 'Maybe' => 'อาจจะ',
- 'Menu' => 'เมนู',
- 'My events' => 'กิจกรรมของฉัน',
- 'My profile' => 'ประวัติของฉัน',
- 'My spaces' => 'พื้นที่ของฉัน',
- 'Next' => 'ถัดไป',
- 'No participants' => 'ไม่มีผู้เข้าร่วม',
- 'Only by Invite' => '',
- 'Open Calendar' => 'เปิดปฏิทิน',
- 'Participants' => 'ผู้เข้าร่วม',
- 'Recurrence' => 'การเกิดซ้ำ',
- 'Reminder' => 'เตือนความจำ',
- 'Select calendars' => '',
- 'Select event type...' => 'เลือกประเภทเหตุการณ์...',
- 'Settings' => 'การตั้งค่า',
- 'Snippet' => 'Snippet',
- 'Title' => 'หัวข้อ',
- 'Undecided' => '',
- 'You are invited, please select your role:' => '',
- '{count} Participants' => '',
- '{displayName} cannot attend {contentTitle} on {dateTime}.' => '{displayName} ไม่สามารถเข้าร่วม {contentTitle} ใน {dateTime}',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '{displayName} กำลังเข้าร่วม {contentTitle} ใน {dateTime}',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '{displayName} อาจเข้าร่วม {contentTitle} ใน {dateTime}',
+ 'Create new event type' => 'สร้าง ประเภทกิจกรรมใหม่',
+ 'Edit calendar' => 'แก้ไข ปฏิทิน',
+ 'Edit event type' => 'แก้ไข ประเภทเหตุการณ์',
+ 'Edit recurring event' => 'แก้ไข เหตุการณ์ที่เกิดซ้ำ',
+ 'Upcoming events ' => 'กำลังจะเกิดขึ้น เหตุการณ์',
+ 'Additional information' => 'ข้อมูลเพิ่มเติม',
+ 'All' => 'ทั้งหมด',
+ 'Attend' => 'เข้าร่วม',
+ 'Attending' => 'เข้าร่วม',
+ 'Back' => 'กลับ',
+ 'Calendars' => 'ปฏิทิน',
+ 'Close' => 'ปิด',
+ 'Decline' => 'ลดลง',
+ 'Defaults' => 'ค่าเริ่มต้น',
+ 'Event Types' => 'ประเภทงาน',
+ 'Everybody can participate' => 'ทุกคนสามารถมีส่วนร่วม',
+ 'Export' => 'ส่งออก',
+ 'Filter' => 'กรอง',
+ 'Followed spaces' => 'ติดตามช่องว่าง Follow',
+ 'Followed users' => 'ผู้ใช้ที่ติดตาม',
+ 'General' => 'ทั่วไป',
+ 'I\'m attending' => 'ฉันกำลังเข้าร่วม',
+ 'Maybe' => 'อาจจะ',
+ 'Menu' => 'เมนู',
+ 'My events' => 'กิจกรรมของฉัน',
+ 'My profile' => 'ประวัติของฉัน',
+ 'My spaces' => 'พื้นที่ของฉัน',
+ 'Next' => 'ถัดไป',
+ 'No participants' => 'ไม่มีผู้เข้าร่วม',
+ 'Open Calendar' => 'เปิดปฏิทิน',
+ 'Participants' => 'ผู้เข้าร่วม',
+ 'Recurrence' => 'การเกิดซ้ำ',
+ 'Reminder' => 'เตือนความจำ',
+ 'Select event type...' => 'เลือกประเภทเหตุการณ์...',
+ 'Settings' => 'การตั้งค่า',
+ 'Snippet' => 'Snippet',
+ 'Title' => 'หัวข้อ',
+ ':count Attending' => '',
+ ':count Declined' => '',
+ ':count Invited' => '',
+ ':count Undecided' => '',
+ 'Create Event' => '',
+ 'Edit Event' => '',
+ 'Are you sure want to remove the participant from the event?' => '',
+ 'Declined' => '',
+ 'Filter events' => '',
+ 'Invited' => '',
+ 'Only by Invite' => '',
+ 'Select calendars' => '',
+ 'Undecided' => '',
+ 'You are invited, please select your role:' => '',
+ '{count} Participants' => '',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/tr/views.php b/messages/tr/views.php
index 24aaaba4..306faaae 100644
--- a/messages/tr/views.php
+++ b/messages/tr/views.php
@@ -1,59 +1,57 @@
'',
- ':count Declined' => '',
- ':count Invited' => '',
- ':count Undecided' => '',
- 'Create Event' => '',
- 'Create new event type' => '',
- 'Edit Event' => '',
- 'Edit calendar' => '',
- 'Edit event type' => '',
- 'Edit recurring event' => '',
- 'Upcoming events ' => 'Yakındaki etkinlikler',
- 'Additional information' => 'Ek bilgi',
- 'All' => 'Hepsi',
- 'Are you sure want to remove the participant from the event?' => '',
- 'Attend' => 'Katılıyorum',
- 'Attending' => 'Katılan',
- 'Back' => 'Geri',
- 'Calendars' => '',
- 'Close' => 'Kapat',
- 'Decline' => 'Katılmıyorum',
- 'Declined' => '',
- 'Defaults' => 'Varsayılan',
- 'Event Types' => 'Etkinlik Türleri',
- 'Everybody can participate' => 'Herkes katılabilir',
- 'Export' => 'Çıkart',
- 'Filter' => 'Filtre',
- 'Filter events' => '',
- 'Followed spaces' => 'Mekan',
- 'Followed users' => 'Kullanıcı',
- 'General' => 'Genel',
- 'I\'m attending' => 'Katılıyorum',
- 'Invited' => '',
- 'Maybe' => 'Belki',
- 'Menu' => 'Menü',
- 'My events' => 'Etkinliklerim',
- 'My profile' => 'Profilim',
- 'My spaces' => 'Mekanım',
- 'Next' => 'Devam',
- 'No participants' => 'Katılımsız',
- 'Only by Invite' => '',
- 'Open Calendar' => 'Takvimi Aç',
- 'Participants' => 'Katılımcılar',
- 'Recurrence' => '',
- 'Reminder' => 'Hatırlatıcı',
- 'Select calendars' => '',
- 'Select event type...' => '',
- 'Settings' => 'Ayarlar',
- 'Snippet' => '',
- 'Title' => 'Başlık',
- 'Undecided' => '',
- 'You are invited, please select your role:' => '',
- '{count} Participants' => '',
- '{displayName} cannot attend {contentTitle} on {dateTime}.' => '',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '',
+ 'Upcoming events ' => 'Yakındaki etkinlikler',
+ 'Additional information' => 'Ek bilgi',
+ 'All' => 'Hepsi',
+ 'Attend' => 'Katılıyorum',
+ 'Attending' => 'Katılan',
+ 'Back' => 'Geri',
+ 'Close' => 'Kapat',
+ 'Decline' => 'Katılmıyorum',
+ 'Defaults' => 'Varsayılan',
+ 'Event Types' => 'Etkinlik Türleri',
+ 'Everybody can participate' => 'Herkes katılabilir',
+ 'Export' => 'Çıkart',
+ 'Filter' => 'Filtre',
+ 'Followed spaces' => 'Mekan',
+ 'Followed users' => 'Kullanıcı',
+ 'General' => 'Genel',
+ 'I\'m attending' => 'Katılıyorum',
+ 'Maybe' => 'Belki',
+ 'Menu' => 'Menü',
+ 'My events' => 'Etkinliklerim',
+ 'My profile' => 'Profilim',
+ 'My spaces' => 'Mekanım',
+ 'Next' => 'Devam',
+ 'No participants' => 'Katılımsız',
+ 'Open Calendar' => 'Takvimi Aç',
+ 'Participants' => 'Katılımcılar',
+ 'Reminder' => 'Hatırlatıcı',
+ 'Settings' => 'Ayarlar',
+ 'Title' => 'Başlık',
+ ':count Attending' => '',
+ ':count Declined' => '',
+ ':count Invited' => '',
+ ':count Undecided' => '',
+ 'Create Event' => '',
+ 'Create new event type' => '',
+ 'Edit Event' => '',
+ 'Edit calendar' => '',
+ 'Edit event type' => '',
+ 'Edit recurring event' => '',
+ 'Are you sure want to remove the participant from the event?' => '',
+ 'Calendars' => '',
+ 'Declined' => '',
+ 'Filter events' => '',
+ 'Invited' => '',
+ 'Only by Invite' => '',
+ 'Recurrence' => '',
+ 'Select calendars' => '',
+ 'Select event type...' => '',
+ 'Snippet' => '',
+ 'Undecided' => '',
+ 'You are invited, please select your role:' => '',
+ '{count} Participants' => '',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/uk/views.php b/messages/uk/views.php
index 252d4cf3..4e5fe8e4 100644
--- a/messages/uk/views.php
+++ b/messages/uk/views.php
@@ -1,59 +1,57 @@
'',
- ':count Declined' => '',
- ':count Invited' => '',
- ':count Undecided' => '',
- 'Create Event' => '',
- 'Create new event type' => '',
- 'Edit Event' => '',
- 'Edit calendar' => '',
- 'Edit event type' => '',
- 'Edit recurring event' => '',
- 'Upcoming events ' => '',
- 'Additional information' => '',
- 'All' => 'Всі',
- 'Are you sure want to remove the participant from the event?' => '',
- 'Attend' => '',
- 'Attending' => '',
- 'Back' => 'Назад',
- 'Calendars' => '',
- 'Close' => 'Закрити',
- 'Decline' => '',
- 'Declined' => '',
- 'Defaults' => '',
- 'Event Types' => '',
- 'Everybody can participate' => '',
- 'Export' => 'Експортувати',
- 'Filter' => '',
- 'Filter events' => '',
- 'Followed spaces' => '',
- 'Followed users' => '',
- 'General' => 'Загальне',
- 'I\'m attending' => '',
- 'Invited' => '',
- 'Maybe' => '',
- 'Menu' => 'Меню',
- 'My events' => '',
- 'My profile' => 'Мій профіль',
- 'My spaces' => 'Мої спільноти',
- 'Next' => 'Далі',
- 'No participants' => '',
- 'Only by Invite' => '',
- 'Open Calendar' => '',
- 'Participants' => '',
- 'Recurrence' => '',
- 'Reminder' => '',
- 'Select calendars' => '',
- 'Select event type...' => '',
- 'Settings' => 'Налаштування',
- 'Snippet' => '',
- 'Title' => 'Заголовок',
- 'Undecided' => '',
- 'You are invited, please select your role:' => '',
- '{count} Participants' => '',
- '{displayName} cannot attend {contentTitle} on {dateTime}.' => '',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '',
+ 'All' => 'Всі',
+ 'Back' => 'Назад',
+ 'Close' => 'Закрити',
+ 'Export' => 'Експортувати',
+ 'General' => 'Загальне',
+ 'Menu' => 'Меню',
+ 'My profile' => 'Мій профіль',
+ 'My spaces' => 'Мої спільноти',
+ 'Next' => 'Далі',
+ 'Settings' => 'Налаштування',
+ 'Title' => 'Заголовок',
+ ':count Attending' => '',
+ ':count Declined' => '',
+ ':count Invited' => '',
+ ':count Undecided' => '',
+ 'Create Event' => '',
+ 'Create new event type' => '',
+ 'Edit Event' => '',
+ 'Edit calendar' => '',
+ 'Edit event type' => '',
+ 'Edit recurring event' => '',
+ 'Upcoming events ' => '',
+ 'Additional information' => '',
+ 'Are you sure want to remove the participant from the event?' => '',
+ 'Attend' => '',
+ 'Attending' => '',
+ 'Calendars' => '',
+ 'Decline' => '',
+ 'Declined' => '',
+ 'Defaults' => '',
+ 'Event Types' => '',
+ 'Everybody can participate' => '',
+ 'Filter' => '',
+ 'Filter events' => '',
+ 'Followed spaces' => '',
+ 'Followed users' => '',
+ 'I\'m attending' => '',
+ 'Invited' => '',
+ 'Maybe' => '',
+ 'My events' => '',
+ 'No participants' => '',
+ 'Only by Invite' => '',
+ 'Open Calendar' => '',
+ 'Participants' => '',
+ 'Recurrence' => '',
+ 'Reminder' => '',
+ 'Select calendars' => '',
+ 'Select event type...' => '',
+ 'Snippet' => '',
+ 'Undecided' => '',
+ 'You are invited, please select your role:' => '',
+ '{count} Participants' => '',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/uz/views.php b/messages/uz/views.php
index fb6a534d..6e6aec84 100644
--- a/messages/uz/views.php
+++ b/messages/uz/views.php
@@ -3,10 +3,6 @@
return [
'Settings' => 'Sozlamalar',
'Title' => 'Sarlavha',
- '{displayName} cannot attend {contentTitle} on {dateTime}.' => '',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '',
':count Attending' => '',
':count Declined' => '',
':count Invited' => '',
@@ -57,4 +53,5 @@
'Undecided' => '',
'You are invited, please select your role:' => '',
'{count} Participants' => '',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/vi/views.php b/messages/vi/views.php
index c3fc21e9..1dfe3dd7 100644
--- a/messages/vi/views.php
+++ b/messages/vi/views.php
@@ -1,59 +1,57 @@
'',
- ':count Declined' => '',
- ':count Invited' => '',
- ':count Undecided' => '',
- 'Create Event' => '',
- 'Create new event type' => 'Tạo loại sự kiện mới',
- 'Edit Event' => '',
- 'Edit calendar' => 'Sửa lịch',
- 'Edit event type' => 'Sửa loại sự kiện',
- 'Edit recurring event' => 'Sửa sự kiện lặp lại',
- 'Upcoming events ' => 'Các sự kiện sắp diễn ra',
- 'Additional information' => '',
- 'All' => 'Tất cả',
- 'Are you sure want to remove the participant from the event?' => '',
- 'Attend' => 'Tham dự',
- 'Attending' => 'Sẽ tham gia',
- 'Back' => 'Trở lại',
- 'Calendars' => 'Lịch',
- 'Close' => 'Đóng',
- 'Decline' => 'Từ chối',
- 'Declined' => '',
- 'Defaults' => 'Mặc định',
- 'Event Types' => 'Loại sự kiện',
- 'Everybody can participate' => 'Ai cũng có thể tham gia',
- 'Export' => 'Xuất',
- 'Filter' => 'Lọc',
- 'Filter events' => '',
- 'Followed spaces' => 'Các phòng đã theo dõi',
- 'Followed users' => 'Các user đã theo dõi',
- 'General' => 'Chung',
- 'I\'m attending' => 'Tôi đang tham gia',
- 'Invited' => 'Đã mời',
- 'Maybe' => 'Có thể',
- 'Menu' => 'Danh mục',
- 'My events' => 'Sự kiện của tôi',
- 'My profile' => 'Hồ sơ của tôi',
- 'My spaces' => 'Diễn đàn của tôi',
- 'Next' => 'Tiếp theo',
- 'No participants' => 'Không có người tham gia',
- 'Only by Invite' => '',
- 'Open Calendar' => 'Mở lịch',
- 'Participants' => 'Người tham gia',
- 'Recurrence' => 'Lặp lại',
- 'Reminder' => 'Nhắc nhở',
- 'Select calendars' => '',
- 'Select event type...' => 'Chọn loại sự kiện...',
- 'Settings' => 'Cấu hình',
- 'Snippet' => 'Khối thông tin',
- 'Title' => 'Tiêu đề',
- 'Undecided' => '',
- 'You are invited, please select your role:' => '',
- '{count} Participants' => '',
- '{displayName} cannot attend {contentTitle} on {dateTime}.' => '{displayName} không thể tham dự {contentTitle} vào {dateTime}.',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '{displayName} sẽ tham dự {contentTitle} vào {dateTime}.',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '{displayName} có thể tham dự {contentTitle} vào {dateTime}.',
+ 'Create new event type' => 'Tạo loại sự kiện mới',
+ 'Edit calendar' => 'Sửa lịch',
+ 'Edit event type' => 'Sửa loại sự kiện',
+ 'Edit recurring event' => 'Sửa sự kiện lặp lại',
+ 'Upcoming events ' => 'Các sự kiện sắp diễn ra',
+ 'All' => 'Tất cả',
+ 'Attend' => 'Tham dự',
+ 'Attending' => 'Sẽ tham gia',
+ 'Back' => 'Trở lại',
+ 'Calendars' => 'Lịch',
+ 'Close' => 'Đóng',
+ 'Decline' => 'Từ chối',
+ 'Defaults' => 'Mặc định',
+ 'Event Types' => 'Loại sự kiện',
+ 'Everybody can participate' => 'Ai cũng có thể tham gia',
+ 'Export' => 'Xuất',
+ 'Filter' => 'Lọc',
+ 'Followed spaces' => 'Các phòng đã theo dõi',
+ 'Followed users' => 'Các user đã theo dõi',
+ 'General' => 'Chung',
+ 'I\'m attending' => 'Tôi đang tham gia',
+ 'Invited' => 'Đã mời',
+ 'Maybe' => 'Có thể',
+ 'Menu' => 'Danh mục',
+ 'My events' => 'Sự kiện của tôi',
+ 'My profile' => 'Hồ sơ của tôi',
+ 'My spaces' => 'Diễn đàn của tôi',
+ 'Next' => 'Tiếp theo',
+ 'No participants' => 'Không có người tham gia',
+ 'Open Calendar' => 'Mở lịch',
+ 'Participants' => 'Người tham gia',
+ 'Recurrence' => 'Lặp lại',
+ 'Reminder' => 'Nhắc nhở',
+ 'Select event type...' => 'Chọn loại sự kiện...',
+ 'Settings' => 'Cấu hình',
+ 'Snippet' => 'Khối thông tin',
+ 'Title' => 'Tiêu đề',
+ ':count Attending' => '',
+ ':count Declined' => '',
+ ':count Invited' => '',
+ ':count Undecided' => '',
+ 'Create Event' => '',
+ 'Edit Event' => '',
+ 'Additional information' => '',
+ 'Are you sure want to remove the participant from the event?' => '',
+ 'Declined' => '',
+ 'Filter events' => '',
+ 'Only by Invite' => '',
+ 'Select calendars' => '',
+ 'Undecided' => '',
+ 'You are invited, please select your role:' => '',
+ '{count} Participants' => '',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/zh-CN/views.php b/messages/zh-CN/views.php
index 01005469..81851aab 100644
--- a/messages/zh-CN/views.php
+++ b/messages/zh-CN/views.php
@@ -23,10 +23,6 @@
'No participants' => '没有参与者',
'Settings' => '设置',
'Title' => '标题',
- '{displayName} cannot attend {contentTitle} on {dateTime}.' => '',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '',
':count Attending' => '',
':count Declined' => '',
':count Invited' => '',
@@ -57,4 +53,5 @@
'Undecided' => '',
'You are invited, please select your role:' => '',
'{count} Participants' => '',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/messages/zh-TW/views.php b/messages/zh-TW/views.php
index 0e2783ab..ab7e509a 100644
--- a/messages/zh-TW/views.php
+++ b/messages/zh-TW/views.php
@@ -1,59 +1,57 @@
'',
- ':count Declined' => '',
- ':count Invited' => '',
- ':count Undecided' => '',
- 'Create Event' => '',
- 'Create new event type' => '',
- 'Edit Event' => '',
- 'Edit calendar' => '',
- 'Edit event type' => '',
- 'Edit recurring event' => '',
- 'Upcoming events ' => '',
- 'Additional information' => '',
- 'All' => '所有結果',
- 'Are you sure want to remove the participant from the event?' => '',
- 'Attend' => '',
- 'Attending' => '',
- 'Back' => '返回',
- 'Calendars' => '',
- 'Close' => '關閉',
- 'Decline' => '拒絕',
- 'Declined' => '',
- 'Defaults' => '',
- 'Event Types' => '',
- 'Everybody can participate' => '',
- 'Export' => '匯出',
- 'Filter' => '篩選條件',
- 'Filter events' => '',
- 'Followed spaces' => '',
- 'Followed users' => '',
- 'General' => '一般資訊',
- 'I\'m attending' => '',
- 'Invited' => '',
- 'Maybe' => '',
- 'Menu' => '選單',
- 'My events' => '',
- 'My profile' => '我的個人資料',
- 'My spaces' => '我的Space',
- 'Next' => '下一個',
- 'No participants' => '',
- 'Only by Invite' => '',
- 'Open Calendar' => '',
- 'Participants' => '參與者',
- 'Recurrence' => '',
- 'Reminder' => '',
- 'Select calendars' => '',
- 'Select event type...' => '',
- 'Settings' => '设置',
- 'Snippet' => '',
- 'Title' => '標題',
- 'Undecided' => '',
- 'You are invited, please select your role:' => '',
- '{count} Participants' => '',
- '{displayName} cannot attend {contentTitle} on {dateTime}.' => '',
- '{displayName} is attending {contentTitle} on {dateTime}.' => '',
- '{displayName} is invited to {contentTitle} on {dateTime}.' => '',
- '{displayName} might be attending {contentTitle} on {dateTime}.' => '',
+ 'All' => '所有結果',
+ 'Back' => '返回',
+ 'Close' => '關閉',
+ 'Decline' => '拒絕',
+ 'Export' => '匯出',
+ 'Filter' => '篩選條件',
+ 'General' => '一般資訊',
+ 'Menu' => '選單',
+ 'My profile' => '我的個人資料',
+ 'My spaces' => '我的Space',
+ 'Next' => '下一個',
+ 'Participants' => '參與者',
+ 'Settings' => '设置',
+ 'Title' => '標題',
+ ':count Attending' => '',
+ ':count Declined' => '',
+ ':count Invited' => '',
+ ':count Undecided' => '',
+ 'Create Event' => '',
+ 'Create new event type' => '',
+ 'Edit Event' => '',
+ 'Edit calendar' => '',
+ 'Edit event type' => '',
+ 'Edit recurring event' => '',
+ 'Upcoming events ' => '',
+ 'Additional information' => '',
+ 'Are you sure want to remove the participant from the event?' => '',
+ 'Attend' => '',
+ 'Attending' => '',
+ 'Calendars' => '',
+ 'Declined' => '',
+ 'Defaults' => '',
+ 'Event Types' => '',
+ 'Everybody can participate' => '',
+ 'Filter events' => '',
+ 'Followed spaces' => '',
+ 'Followed users' => '',
+ 'I\'m attending' => '',
+ 'Invited' => '',
+ 'Maybe' => '',
+ 'My events' => '',
+ 'No participants' => '',
+ 'Only by Invite' => '',
+ 'Open Calendar' => '',
+ 'Recurrence' => '',
+ 'Reminder' => '',
+ 'Select calendars' => '',
+ 'Select event type...' => '',
+ 'Snippet' => '',
+ 'Undecided' => '',
+ 'You are invited, please select your role:' => '',
+ '{count} Participants' => '',
+ '{displayName} is attending Event "{contentTitle}" on {dateTime}.' => '',
];
diff --git a/models/CalendarEntry.php b/models/CalendarEntry.php
index e98f3779..5ca10795 100644
--- a/models/CalendarEntry.php
+++ b/models/CalendarEntry.php
@@ -9,7 +9,6 @@
namespace humhub\modules\calendar\models;
use DateTime;
-use DateTimeZone;
use humhub\modules\calendar\helpers\CalendarUtils;
use humhub\modules\calendar\helpers\RecurrenceHelper;
use humhub\modules\calendar\helpers\Url;
@@ -33,13 +32,12 @@
use humhub\modules\content\components\ContentContainerActiveRecord;
use humhub\modules\content\models\Content;
use humhub\modules\content\models\ContentTag;
-use humhub\modules\search\interfaces\Searchable;
use humhub\modules\space\models\Membership;
use humhub\modules\space\models\Space;
use humhub\modules\user\components\ActiveQueryUser;
use humhub\modules\user\models\User;
use humhub\widgets\bootstrap\Badge;
-use humhub\widgets\bootstrap\Button;
+use humhub\widgets\bootstrap\Link;
use Yii;
use yii\helpers\Html;
@@ -74,7 +72,6 @@
* @property-read CalendarEntry|null $recurrenceRoot
*/
class CalendarEntry extends ContentActiveRecord implements
- Searchable,
RecurrentEventIF,
FullCalendarEventIF,
CalendarEventStatusIF,
@@ -685,7 +682,7 @@ public function getLocation(bool $asHtml = false)
filter_var($this->location, FILTER_VALIDATE_URL) !== false
&& str_starts_with($this->location, 'https://') // restrict to secure URLs (and not HTTP, SSF, FTP, etc.)
) {
- return Button::asLink($this->location)->link($this->location)->options(['target' => '_blank']);
+ return Link::to($this->location, $this->location)->blank();
}
return Html::encode($this->location);
}
diff --git a/models/CalendarEntryParticipant.php b/models/CalendarEntryParticipant.php
index e852110b..608cc76c 100644
--- a/models/CalendarEntryParticipant.php
+++ b/models/CalendarEntryParticipant.php
@@ -2,6 +2,7 @@
namespace humhub\modules\calendar\models;
+use humhub\modules\activity\services\ActivityManager;
use humhub\modules\user\models\User;
use humhub\components\ActiveRecord;
use humhub\modules\calendar\models\CalendarEntry;
@@ -77,22 +78,18 @@ public function afterSave($insert, $changedAttributes)
{
$activity = null;
if ($this->participation_state == self::PARTICIPATION_STATE_ACCEPTED) {
- $activity = new \humhub\modules\calendar\activities\ResponseAttend();
+ $activityClass = \humhub\modules\calendar\activities\ResponseAttend::class;
} elseif ($this->participation_state == self::PARTICIPATION_STATE_MAYBE) {
- $activity = new \humhub\modules\calendar\activities\ResponseMaybe();
+ $activityClass = \humhub\modules\calendar\activities\ResponseMaybe::class;
} elseif ($this->participation_state == self::PARTICIPATION_STATE_DECLINED) {
- $activity = new \humhub\modules\calendar\activities\ResponseDeclined();
+ $activityClass = \humhub\modules\calendar\activities\ResponseDeclined::class;
} elseif ($this->participation_state == self::PARTICIPATION_STATE_INVITED) {
- $activity = new \humhub\modules\calendar\activities\ResponseInvited();
+ $activityClass = \humhub\modules\calendar\activities\ResponseInvited::class;
} else {
throw new \yii\base\Exception("Invalid participation state: " . $this->participation_state);
}
- if ($activity) {
- $activity->source = $this->calendarEntry;
- $activity->originator = $this->user;
- $activity->create();
- }
+ ActivityManager::dispatch($activityClass, $this->calendarEntry, $this->user);
return parent::afterSave($insert, $changedAttributes);
}
diff --git a/module.json b/module.json
index 00d7b473..d031b970 100644
--- a/module.json
+++ b/module.json
@@ -5,10 +5,9 @@
"keywords": [
"calendar"
],
- "version": "1.8.15",
+ "version": "1.9.0",
"humhub": {
- "minVersion": "1.18.0-beta.6",
- "maxVersion": "1.18"
+ "minVersion": "1.19"
},
"homepage": "https://github.com/humhub/calendar",
"authors": [
diff --git a/widgets/ReminderLink.php b/widgets/ReminderLink.php
index f176817a..f7e6ee8b 100644
--- a/widgets/ReminderLink.php
+++ b/widgets/ReminderLink.php
@@ -13,7 +13,7 @@
use humhub\modules\calendar\helpers\Url;
use humhub\modules\calendar\interfaces\event\CalendarEventIF;
use humhub\modules\content\components\ContentActiveRecord;
-use humhub\widgets\modal\ModalButton;
+use humhub\widgets\bootstrap\Link;
use Yii;
/**
@@ -35,7 +35,7 @@ public function run()
return Html::tag(
'span',
- ModalButton::asLink(Yii::t('CalendarModule.base', 'Set reminder'))
+ Link::modal(Yii::t('CalendarModule.base', 'Set reminder'))
->load(Url::toUserLevelReminderConfig($this->entry))
->loader(true),
['class' => 'calendar-entry-reminder'],
diff --git a/widgets/views/participants.php b/widgets/views/participants.php
index 6ad05623..73b2f652 100644
--- a/widgets/views/participants.php
+++ b/widgets/views/participants.php
@@ -3,7 +3,7 @@
use humhub\modules\calendar\helpers\Url;
use humhub\modules\calendar\models\CalendarEntry;
use humhub\modules\calendar\models\CalendarEntryParticipant;
-use humhub\widgets\modal\ModalButton;
+use humhub\widgets\bootstrap\Link;
/* @var $calendarEntry CalendarEntry */
/* @var $countAttending integer */
@@ -17,7 +17,7 @@
$countAttending]); ?>
0) : ?>
- = ModalButton::asLink($title)
+ = Link::modal($title)
->load(Url::toParticipationUserList($calendarEntry, CalendarEntryParticipant::PARTICIPATION_STATE_ACCEPTED))
->action('calendar.editModal') ?>
@@ -28,7 +28,7 @@
·
$countMaybe]); ?>
0) : ?>
- = ModalButton::asLink($title)
+ = Link::modal($title)
->load(Url::toParticipationUserList($calendarEntry, CalendarEntryParticipant::PARTICIPATION_STATE_MAYBE))
->action('calendar.editModal') ?>
@@ -40,7 +40,7 @@
·
$countDeclined]); ?>
0) : ?>
- = ModalButton::asLink($title)
+ = Link::modal($title)
->load(Url::toParticipationUserList($calendarEntry, CalendarEntryParticipant::PARTICIPATION_STATE_DECLINED))
->action('calendar.editModal') ?>
@@ -50,7 +50,7 @@
· $countInvited]); ?>
0) : ?>
- = ModalButton::asLink($title)
+ = Link::modal($title)
->load(Url::toParticipationUserList($calendarEntry, CalendarEntryParticipant::PARTICIPATION_STATE_INVITED))
->action('calendar.editModal') ?>