From be430e4e62ffbee1e3b0ca1ddf8196df837ed7f4 Mon Sep 17 00:00:00 2001 From: Lucas Bartholemy Date: Thu, 29 Jan 2026 10:41:50 +0100 Subject: [PATCH 01/10] Refactored Activity Handling --- activities/ResponseAttend.php | 40 ++++++++++++-------------- activities/ResponseDeclined.php | 37 +++++++++++------------- activities/ResponseInvited.php | 37 +++++++++++------------- activities/ResponseMaybe.php | 39 +++++++++++-------------- activities/views/response_attend.php | 17 ----------- activities/views/response_declined.php | 17 ----------- activities/views/response_invited.php | 17 ----------- activities/views/response_maybe.php | 17 ----------- docs/CHANGELOG.md | 4 +++ models/CalendarEntryParticipant.php | 15 ++++------ module.json | 2 +- 11 files changed, 78 insertions(+), 164 deletions(-) delete mode 100644 activities/views/response_attend.php delete mode 100644 activities/views/response_declined.php delete mode 100644 activities/views/response_invited.php delete mode 100644 activities/views/response_maybe.php diff --git a/activities/ResponseAttend.php b/activities/ResponseAttend.php index e919fb27..81f889b5 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(); + + return Yii::t('CalendarModule.views', '{displayName} is attending {contentTitle} on {dateTime}.', $params); + } +} \ No newline at end of file diff --git a/activities/ResponseDeclined.php b/activities/ResponseDeclined.php index 448e5b81..76cd0136 100644 --- a/activities/ResponseDeclined.php +++ b/activities/ResponseDeclined.php @@ -1,40 +1,35 @@ */ -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(); + return Yii::t('CalendarModule.views', '{displayName} is attending {contentTitle} on {dateTime}.', $params); + } } diff --git a/activities/ResponseInvited.php b/activities/ResponseInvited.php index 4f525017..b2b641cb 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 {contentTitle} on {dateTime}.', $params); + } } diff --git a/activities/ResponseMaybe.php b/activities/ResponseMaybe.php index 792b9dae..e70d374b 100644 --- a/activities/ResponseMaybe.php +++ b/activities/ResponseMaybe.php @@ -1,40 +1,35 @@ */ -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 {contentTitle} on {dateTime}.', $params); + } +} \ No newline at end of file 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]); -?> - - '' . 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]); -?> - - '' . 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]); -?> - - '' . 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]); -?> - - '' . Html::encode($originator->displayName) . '', - 'contentTitle' => $this->context->getContentInfo($source), - 'dateTime' => $formatter->getFormattedTime(), -]) ?> diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index f8582494..3de560cb 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,6 +1,10 @@ Changelog ========= +1.9.0 (TBD) +------------------------ +- Fix: HumHub v.19 Activity Handling + 1.8.10 (January 8, 2026) ------------------------ - Fix #654: Fix tests 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 2f007c94..797c43de 100644 --- a/module.json +++ b/module.json @@ -5,7 +5,7 @@ "keywords": ["calendar"], "version": "1.8.10", "humhub": { - "minVersion": "1.18.0-beta.6" + "minVersion": "1.19" }, "homepage": "https://github.com/humhub/calendar", "authors": [ From c87ddf6ff5e7ff7bffb4ed5c37e0053e59997012 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 29 Jan 2026 09:42:22 +0000 Subject: [PATCH 02/10] Autocommit PHP CS Fixer --- activities/ResponseAttend.php | 2 +- activities/ResponseMaybe.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/activities/ResponseAttend.php b/activities/ResponseAttend.php index 81f889b5..8fec8fb3 100644 --- a/activities/ResponseAttend.php +++ b/activities/ResponseAttend.php @@ -33,4 +33,4 @@ protected function getMessage(array $params): string return Yii::t('CalendarModule.views', '{displayName} is attending {contentTitle} on {dateTime}.', $params); } -} \ No newline at end of file +} diff --git a/activities/ResponseMaybe.php b/activities/ResponseMaybe.php index e70d374b..c91d0296 100644 --- a/activities/ResponseMaybe.php +++ b/activities/ResponseMaybe.php @@ -32,4 +32,4 @@ protected function getMessage(array $params): string ))->getFormattedTime(); return Yii::t('CalendarModule.views', '{displayName} is attending {contentTitle} on {dateTime}.', $params); } -} \ No newline at end of file +} From 357e03faddf6fd98c74c9a88d9f6ad0da044669c Mon Sep 17 00:00:00 2001 From: Lucas Bartholemy Date: Sun, 1 Feb 2026 18:24:44 +0100 Subject: [PATCH 03/10] Activity Wording improvements --- activities/ResponseAttend.php | 4 ++-- activities/ResponseDeclined.php | 5 +++-- activities/ResponseInvited.php | 2 +- activities/ResponseMaybe.php | 3 ++- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/activities/ResponseAttend.php b/activities/ResponseAttend.php index 8fec8fb3..bc79cfee 100644 --- a/activities/ResponseAttend.php +++ b/activities/ResponseAttend.php @@ -29,8 +29,8 @@ protected function getMessage(array $params): string { $params['dateTime'] = (new CalendarDateFormatter(['calendarItem' => $this->contentActiveRecord])) - ->getFormattedTime(); + ->getFormattedTime('short'); - return Yii::t('CalendarModule.views', '{displayName} is attending {contentTitle} on {dateTime}.', $params); + return Yii::t('CalendarModule.views', '{displayName} is attending Event "{contentTitle}" on {dateTime}.', $params); } } diff --git a/activities/ResponseDeclined.php b/activities/ResponseDeclined.php index 76cd0136..2708c798 100644 --- a/activities/ResponseDeclined.php +++ b/activities/ResponseDeclined.php @@ -29,7 +29,8 @@ protected function getMessage(array $params): string { $params['dateTime'] = (new CalendarDateFormatter( ['calendarItem' => $this->contentActiveRecord], - ))->getFormattedTime(); - return Yii::t('CalendarModule.views', '{displayName} is attending {contentTitle} on {dateTime}.', $params); + ))->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 b2b641cb..f117a204 100644 --- a/activities/ResponseInvited.php +++ b/activities/ResponseInvited.php @@ -30,6 +30,6 @@ protected function getMessage(array $params): string $params['dateTime'] = (new CalendarDateFormatter( ['calendarItem' => $this->contentActiveRecord], ))->getFormattedTime(); - return Yii::t('CalendarModule.views', '{displayName} is attending {contentTitle} on {dateTime}.', $params); + return Yii::t('CalendarModule.views', '{displayName} is attending Event "{contentTitle}" on {dateTime}.', $params); } } diff --git a/activities/ResponseMaybe.php b/activities/ResponseMaybe.php index c91d0296..db52b6f8 100644 --- a/activities/ResponseMaybe.php +++ b/activities/ResponseMaybe.php @@ -30,6 +30,7 @@ protected function getMessage(array $params): string $params['dateTime'] = (new CalendarDateFormatter( ['calendarItem' => $this->contentActiveRecord], ))->getFormattedTime(); - return Yii::t('CalendarModule.views', '{displayName} is attending {contentTitle} on {dateTime}.', $params); + + return Yii::t('CalendarModule.views', '{displayName} is attending Event "{contentTitle}" on {dateTime}.', $params); } } From f9c1a21a005e83f249d7e33619219a729dc718e2 Mon Sep 17 00:00:00 2001 From: Yuriy Bakhtin Date: Fri, 20 Feb 2026 10:44:00 +0300 Subject: [PATCH 04/10] Remove deprecations --- Events.php | 99 ++++++++++++++++++++-------------- docs/CHANGELOG.md | 1 + models/CalendarEntry.php | 7 +-- widgets/ReminderLink.php | 4 +- widgets/views/participants.php | 10 ++-- 5 files changed, 68 insertions(+), 53 deletions(-) diff --git a/Events.php b/Events.php index 7499939c..bd74e8f4 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/docs/CHANGELOG.md b/docs/CHANGELOG.md index 3de560cb..1423691b 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -4,6 +4,7 @@ Changelog 1.9.0 (TBD) ------------------------ - Fix: HumHub v.19 Activity Handling +- Enh #673: Remove deprecations 1.8.10 (January 8, 2026) ------------------------ diff --git a/models/CalendarEntry.php b/models/CalendarEntry.php index 30565a39..2481d44c 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, @@ -682,7 +679,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/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) : ?> - load(Url::toParticipationUserList($calendarEntry, CalendarEntryParticipant::PARTICIPATION_STATE_ACCEPTED)) ->action('calendar.editModal') ?> @@ -28,7 +28,7 @@ · $countMaybe]); ?> 0) : ?> - load(Url::toParticipationUserList($calendarEntry, CalendarEntryParticipant::PARTICIPATION_STATE_MAYBE)) ->action('calendar.editModal') ?> @@ -40,7 +40,7 @@ · $countDeclined]); ?> 0) : ?> - load(Url::toParticipationUserList($calendarEntry, CalendarEntryParticipant::PARTICIPATION_STATE_DECLINED)) ->action('calendar.editModal') ?> @@ -50,7 +50,7 @@ · $countInvited]); ?> 0) : ?> - load(Url::toParticipationUserList($calendarEntry, CalendarEntryParticipant::PARTICIPATION_STATE_INVITED)) ->action('calendar.editModal') ?> From aeb2ce2b4cfcec6f3634008668595cb28de1c43f Mon Sep 17 00:00:00 2001 From: Yuriy Bakhtin Date: Fri, 20 Feb 2026 11:18:18 +0300 Subject: [PATCH 05/10] Fix branch for REST module testing --- .github/workflows/codeception-min-version.yml | 1 + 1 file changed, 1 insertion(+) 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 From dd6f04d2ce2301ad8f59f153f98ef637c3fbbedb Mon Sep 17 00:00:00 2001 From: Yuriy Bakhtin Date: Mon, 25 May 2026 10:24:38 +0300 Subject: [PATCH 06/10] Cleaning up REST error handling module as it is handled by core --- Module.php | 14 -------------- 1 file changed, 14 deletions(-) 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 */ From 8b18f9f41967e47d77771d695b098de31a37ab56 Mon Sep 17 00:00:00 2001 From: HumHub Translations Date: Sat, 30 May 2026 18:25:05 +0000 Subject: [PATCH 07/10] Enh: Updated Translations (translate.humhub.org) --- messages/am/views.php | 110 +++++++++++++++++++------------------- messages/an/views.php | 110 +++++++++++++++++++------------------- messages/ar/views.php | 110 +++++++++++++++++++------------------- messages/bg/views.php | 110 +++++++++++++++++++------------------- messages/br/views.php | 5 +- messages/ca/views.php | 110 +++++++++++++++++++------------------- messages/cs/views.php | 110 +++++++++++++++++++------------------- messages/cy/views.php | 5 +- messages/da/views.php | 110 +++++++++++++++++++------------------- messages/de/views.php | 110 +++++++++++++++++++------------------- messages/el/views.php | 110 +++++++++++++++++++------------------- messages/es-419/views.php | 5 +- messages/es/views.php | 110 +++++++++++++++++++------------------- messages/et/views.php | 5 +- messages/eu/views.php | 110 +++++++++++++++++++------------------- messages/fa-IR/views.php | 110 +++++++++++++++++++------------------- messages/fi/views.php | 110 +++++++++++++++++++------------------- messages/fr/views.php | 110 +++++++++++++++++++------------------- messages/he/views.php | 110 +++++++++++++++++++------------------- messages/hr/views.php | 110 +++++++++++++++++++------------------- messages/ht/views.php | 5 +- messages/hu/views.php | 110 +++++++++++++++++++------------------- messages/id/views.php | 110 +++++++++++++++++++------------------- messages/it/views.php | 110 +++++++++++++++++++------------------- messages/ja/views.php | 110 +++++++++++++++++++------------------- messages/ko/views.php | 110 +++++++++++++++++++------------------- messages/lt/views.php | 110 +++++++++++++++++++------------------- messages/lv/views.php | 5 +- messages/nb-NO/views.php | 110 +++++++++++++++++++------------------- messages/nl/views.php | 110 +++++++++++++++++++------------------- messages/nn-NO/views.php | 5 +- messages/pl/views.php | 110 +++++++++++++++++++------------------- messages/pt-BR/views.php | 110 +++++++++++++++++++------------------- messages/pt/views.php | 110 +++++++++++++++++++------------------- messages/ro/views.php | 110 +++++++++++++++++++------------------- messages/ru/views.php | 110 +++++++++++++++++++------------------- messages/sk/views.php | 110 +++++++++++++++++++------------------- messages/sl/views.php | 110 +++++++++++++++++++------------------- messages/sq/views.php | 5 +- messages/sr/views.php | 110 +++++++++++++++++++------------------- messages/sv/views.php | 110 +++++++++++++++++++------------------- messages/sw/views.php | 5 +- messages/th/views.php | 110 +++++++++++++++++++------------------- messages/tr/views.php | 110 +++++++++++++++++++------------------- messages/uk/views.php | 110 +++++++++++++++++++------------------- messages/uz/views.php | 5 +- messages/vi/views.php | 110 +++++++++++++++++++------------------- messages/zh-CN/views.php | 5 +- messages/zh-TW/views.php | 110 +++++++++++++++++++------------------- 49 files changed, 2063 insertions(+), 2172 deletions(-) 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..b06c7882 100644 --- a/messages/nl/views.php +++ b/messages/nl/views.php @@ -1,59 +1,57 @@ '{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', - ':count Undecided' => ':count onbepaald', - 'Create Event' => 'Maak gebeurtenis', - 'Create new event type' => 'Maak nieuw gebeurtenistype', - 'Edit Event' => 'Bewerk gebeurtenis', - 'Edit calendar' => 'Agenda bewerken', - 'Edit event type' => 'Bewerk gebeurtenistype', - 'Edit recurring event' => 'Bewerk herhalende gebeurtenis', - 'Upcoming events ' => 'Aankomende gebeurtenissen', - 'Additional information' => 'Extra informatie', - 'All' => 'Alle', - 'Are you sure want to remove the participant from the event?' => 'Weet u zeker dat u de deelnemer uit het gebeurtenis wilt verwijderen?', - 'Attend' => 'Deelnemen', - 'Attending' => 'Bijwonen', - 'Back' => 'Terug', - 'Calendars' => 'Agenda\'s', - 'Close' => 'Sluiten', - 'Decline' => 'Afwijzen', - 'Declined' => 'Afgewezen', - 'Defaults' => 'Standaard instellingen', - 'Event Types' => 'Gebeurtenis-types', - 'Everybody can participate' => 'Iedereen kan deelnemen', - 'Export' => 'Exporteren', - 'Filter' => 'Filter', - 'Filter events' => 'Gebeurtenissen filteren', - 'Followed spaces' => 'Gevolgde ruimtes', - 'Followed users' => 'Gevolgde gebruikers', - 'General' => 'Algemeen', - 'I\'m attending' => 'Ik ben aanwezig', - 'Invited' => 'Uitgenodigd', - 'Maybe' => 'Misschien', - 'Menu' => 'Menu', - 'My events' => 'Mijn gebeurtenissen', - 'My profile' => 'Mijn profiel', - 'My spaces' => 'Mijn ruimtes', - 'Next' => 'Volgende', - 'No participants' => 'Geen deelnemers', - 'Only by Invite' => 'Alleen op uitnodiging', - 'Open Calendar' => 'Open agenda', - 'Participants' => 'Deelnemers', - 'Recurrence' => 'Herhaling', - 'Reminder' => 'Herinnering', - 'Select calendars' => 'Kies kalenders', - 'Select event type...' => 'Kies een gebeurtenis-type...', - 'Settings' => 'Instellingen', - 'Snippet' => 'Codefragment', - 'Title' => 'Titel', - 'Undecided' => 'Onbepaald', - 'You are invited, please select your role:' => 'U bent uitgenodigd, selecteer uw rol:', - '{count} Participants' => '{count} deelnemers', + ':count Attending' => ':count aanwezig', + ':count Declined' => ':count afgewezen', + ':count Invited' => ':count uitgenodigd', + ':count Undecided' => ':count onbepaald', + 'Create Event' => 'Maak gebeurtenis', + 'Create new event type' => 'Maak nieuw gebeurtenistype', + 'Edit Event' => 'Bewerk gebeurtenis', + 'Edit calendar' => 'Agenda bewerken', + 'Edit event type' => 'Bewerk gebeurtenistype', + 'Edit recurring event' => 'Bewerk herhalende gebeurtenis', + 'Upcoming events ' => 'Aankomende gebeurtenissen', + 'Additional information' => 'Extra informatie', + 'All' => 'Alle', + 'Are you sure want to remove the participant from the event?' => 'Weet u zeker dat u de deelnemer uit het gebeurtenis wilt verwijderen?', + 'Attend' => 'Deelnemen', + 'Attending' => 'Bijwonen', + 'Back' => 'Terug', + 'Calendars' => 'Agenda\'s', + 'Close' => 'Sluiten', + 'Decline' => 'Afwijzen', + 'Declined' => 'Afgewezen', + 'Defaults' => 'Standaard instellingen', + 'Event Types' => 'Gebeurtenis-types', + 'Everybody can participate' => 'Iedereen kan deelnemen', + 'Export' => 'Exporteren', + 'Filter' => 'Filter', + 'Filter events' => 'Gebeurtenissen filteren', + 'Followed spaces' => 'Gevolgde ruimtes', + 'Followed users' => 'Gevolgde gebruikers', + 'General' => 'Algemeen', + 'I\'m attending' => 'Ik ben aanwezig', + 'Invited' => 'Uitgenodigd', + 'Maybe' => 'Misschien', + 'Menu' => 'Menu', + 'My events' => 'Mijn gebeurtenissen', + 'My profile' => 'Mijn profiel', + 'My spaces' => 'Mijn ruimtes', + 'Next' => 'Volgende', + 'No participants' => 'Geen deelnemers', + 'Only by Invite' => 'Alleen op uitnodiging', + 'Open Calendar' => 'Open agenda', + 'Participants' => 'Deelnemers', + 'Recurrence' => 'Herhaling', + 'Reminder' => 'Herinnering', + 'Select calendars' => 'Kies kalenders', + 'Select event type...' => 'Kies een gebeurtenis-type...', + 'Settings' => 'Instellingen', + 'Snippet' => 'Codefragment', + 'Title' => 'Titel', + '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}.' => '', ]; 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}.' => '', ]; From 5572691ffa13f4adb05f764e6836e1307cb3d228 Mon Sep 17 00:00:00 2001 From: HumHub Translations Date: Sat, 30 May 2026 20:27:07 +0000 Subject: [PATCH 08/10] Enh: Updated Translations (translate.humhub.org) --- messages/am/base.php | 327 ++++++++++++++++++++-------------------- messages/an/base.php | 327 ++++++++++++++++++++-------------------- messages/ar/base.php | 327 ++++++++++++++++++++-------------------- messages/bg/base.php | 327 ++++++++++++++++++++-------------------- messages/ca/base.php | 327 ++++++++++++++++++++-------------------- messages/cs/base.php | 327 ++++++++++++++++++++-------------------- messages/da/base.php | 327 ++++++++++++++++++++-------------------- messages/el/base.php | 327 ++++++++++++++++++++-------------------- messages/es/base.php | 327 ++++++++++++++++++++-------------------- messages/eu/base.php | 327 ++++++++++++++++++++-------------------- messages/fa-IR/base.php | 327 ++++++++++++++++++++-------------------- messages/fi/base.php | 327 ++++++++++++++++++++-------------------- messages/fr/base.php | 327 ++++++++++++++++++++-------------------- messages/hr/base.php | 327 ++++++++++++++++++++-------------------- messages/hu/base.php | 327 ++++++++++++++++++++-------------------- messages/id/base.php | 327 ++++++++++++++++++++-------------------- messages/it/base.php | 327 ++++++++++++++++++++-------------------- messages/ja/base.php | 327 ++++++++++++++++++++-------------------- messages/ko/base.php | 327 ++++++++++++++++++++-------------------- messages/lt/base.php | 327 ++++++++++++++++++++-------------------- messages/nb-NO/base.php | 327 ++++++++++++++++++++-------------------- messages/pl/base.php | 327 ++++++++++++++++++++-------------------- messages/pt/base.php | 327 ++++++++++++++++++++-------------------- messages/ro/base.php | 327 ++++++++++++++++++++-------------------- messages/ru/base.php | 327 ++++++++++++++++++++-------------------- messages/sk/base.php | 327 ++++++++++++++++++++-------------------- messages/sr/base.php | 327 ++++++++++++++++++++-------------------- messages/sv/base.php | 327 ++++++++++++++++++++-------------------- messages/th/base.php | 327 ++++++++++++++++++++-------------------- messages/tr/base.php | 327 ++++++++++++++++++++-------------------- messages/vi/base.php | 327 ++++++++++++++++++++-------------------- messages/zh-CN/base.php | 327 ++++++++++++++++++++-------------------- messages/zh-TW/base.php | 327 ++++++++++++++++++++-------------------- 33 files changed, 5379 insertions(+), 5412 deletions(-) diff --git a/messages/am/base.php b/messages/am/base.php index 656807f5..fda9cf64 100644 --- a/messages/am/base.php +++ b/messages/am/base.php @@ -1,167 +1,166 @@ 'ማስተካከያ', - 'Enable' => 'እንዲጠቀሙ አድርግ', - 'Files' => 'ፋይሎች', - 'ID' => 'መታወቂያ', - 'Invite' => 'ይጋብዙ', - 'List' => 'ዝርዝር', - 'Location' => 'አቅጣጫ', - 'Never' => 'ፈፅሞ', - 'Next' => 'ቀጥሎ', - 'Public' => 'የህዝብ', - 'Time Zone' => 'የጊዜ ቀጠና', - 'Title' => 'ርዕስ', - 'disabled' => 'አካል ጉዳተኛ', - 'Add profile calendar' => '', - 'Choose target calendar' => '', - 'Reminder settings' => '', - 'Add all Space members with status {status}' => '', - 'Add participants...' => '', - 'Added: {users}' => '', - 'Additional Information for participants' => '', - 'Adds a calendar for private or public events to your profile and main menu.' => '', - 'Adds an event calendar to this space.' => '', - 'After (occurrences)' => '', - 'All Day' => '', - 'Allow option \'Decline\'' => '', - 'Allow option \'Undecided\'' => '', - 'Allows the user to create new calendar entries' => '', - 'Allows the user to edit/delete existing calendar entries' => '', - 'Also include participant email addresses' => '', - 'Attending' => '', - 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', - 'Birthday' => '', - 'By upcoming events first' => '', - 'CalDAV' => '', - 'Calendar' => '', - 'Calendar event' => '', - 'Calendar event content ID' => '', - 'Calendar events' => '', - 'Cancel Event' => '', - 'Cannot remove the participant!' => '', - 'Create entry' => '', - 'Custom reminder' => '', - 'Day' => '', - 'Days' => '', - 'Default reminder settings' => '', - 'Delete all events' => '', - 'Deleted' => '', - 'Description' => '', - 'Display events within the next X days' => '', - 'Do you want to install this module on your profile?' => '', - 'Download ICS' => '', - 'Edit Event' => '', - 'Edit all events' => '', - 'Edit this and following events' => '', - 'Edit this event' => '', - 'Email' => '', - 'Enable Reminder' => '', - 'End' => '', - 'End Date' => '', - 'End Time' => '', - 'End time must be after start time!' => '', - 'Event' => '', - 'Event Type' => '', - 'Event Types' => '', - 'Event could not be deleted!' => '', - 'Event has been be deleted!' => '', - 'Event not found!' => '', - 'Export as {type}' => '', - 'Filter' => '', - 'Filter by types' => '', - 'Friday' => '', - 'Here you can configure default settings for all calendar events.' => '', - 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => '', - 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', - 'Hour' => '', - 'I\'m attending' => '', - 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', - 'In order to add events to your profile, you have to enable the calendar module first.' => '', - 'Include participant information in exports' => '', - 'Interested' => '', - 'Invalid date or time format!' => '', - 'Invalid day of month given' => '', - 'Invalid event type id selected.' => '', - 'Invalid frequency given' => '', - 'Invalid interval given' => '', - 'Invalid week day selection' => '', - 'Invited: {users}' => '', - 'JWT Key' => '', - 'JWT Token Expiration' => '', - 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', - 'Manage entries' => '', - 'Maximum number of participants' => '', - 'Minute' => '', - 'Mode' => '', - 'Monday' => '', - 'Month' => '', - 'Monthly on day {dayOfMonth}' => '', - 'Monthly on the {position} {dayOfWeek}' => '', - 'Months' => '', - 'No new participants were added.' => '', - 'No new participants were invited.' => '', - 'No reminder' => '', - 'Notify participants about changes' => '', - 'On date' => '', - 'Participant removed.' => '', - 'Participants' => '', - 'Participation Status' => '', - 'Please select new participants.' => '', - 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => '', - 'Profile Calendar' => '', - 'Recurring' => '', - 'Reopen Event' => '', - 'Repeat every' => '', - 'Saturday' => '', - 'Select calendar...' => '', - 'Select space...' => '', - 'Set reminder' => '', - 'Show past events' => '', - 'Start Date' => '', - 'Start Time' => '', - 'Status cannot be updated.' => '', - 'Status updated.' => '', - 'Sunday' => '', - 'The event has already ended.' => '', - 'This event does not support recurrent events' => '', - 'Thursday' => '', - 'Today' => '', - 'Tuesday' => '', - 'Upcoming {type}' => '', - 'Upcoming {type}: {title}' => '', - 'Use default reminder' => '', - 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', - 'User birthdays' => '', - 'Wednesday' => '', - 'Week' => '', - 'Weeks' => '', - 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', - 'Year' => '', - 'Years' => '', - 'You cannot invite participants!' => '', - 'You don\'t have permission to delete this event!' => '', - 'You have an {type} coming up' => '', - 'You have an {type} coming up: {title}' => '', - 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', - 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', - 'You have been registered for the event "{contentTitle}".' => '', - 'Your reminder settings for event: \'{title}\'' => '', - 'canceled' => '', - 'first' => '', - 'forth' => '', - 'global' => '', - 'iCal' => '', - 'in seconds. 0 for no JWT token expiration.' => '', - 'last' => '', - 'on weekdays' => '', - 'second' => '', - 'third' => '', - '{displayName} Birthday' => '', - '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', - '{displayName} added you to the event "{contentTitle}".' => '', - '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', - '{displayName} invited you to the event "{contentTitle}".' => '', - '{name} Calendar' => '', + 'Add profile calendar' => '', + 'Choose target calendar' => '', + 'Reminder settings' => '', + 'Add all Space members with status {status}' => '', + 'Add participants...' => '', + 'Added: {users}' => '', + 'Additional Information for participants' => '', + 'Adds a calendar for private or public events to your profile and main menu.' => '', + 'Adds an event calendar to this space.' => '', + 'After (occurrences)' => '', + 'All Day' => '', + 'Allow option \'Decline\'' => '', + 'Allow option \'Undecided\'' => '', + 'Allows the user to create new calendar entries' => '', + 'Allows the user to edit/delete existing calendar entries' => '', + 'Also include participant email addresses' => '', + 'Attending' => '', + 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', + 'Birthday' => '', + 'By upcoming events first' => '', + 'CalDAV' => '', + 'Calendar' => '', + 'Calendar event' => '', + 'Calendar event content ID' => '', + 'Calendar events' => '', + 'Cancel Event' => '', + 'Cannot remove the participant!' => '', + 'Create entry' => '', + 'Custom reminder' => '', + 'Day' => '', + 'Days' => '', + 'Default reminder settings' => '', + 'Delete all events' => '', + 'Deleted' => '', + 'Description' => '', + 'Display events within the next X days' => '', + 'Do you want to install this module on your profile?' => '', + 'Download ICS' => '', + 'Edit' => 'ማስተካከያ', + 'Edit Event' => '', + 'Edit all events' => '', + 'Edit this and following events' => '', + 'Edit this event' => '', + 'Email' => '', + 'Enable' => 'እንዲጠቀሙ አድርግ', + 'Enable Reminder' => '', + 'End' => '', + 'End Date' => '', + 'End Time' => '', + 'End time must be after start time!' => '', + 'Event' => '', + 'Event Type' => '', + 'Event Types' => '', + 'Event could not be deleted!' => '', + 'Event has been be deleted!' => '', + 'Event not found!' => '', + 'Export as {type}' => '', + 'Files' => 'ፋይሎች', + 'Filter' => 'አጣራ', + 'Filter by types' => '', + 'Friday' => '', + 'Here you can configure default settings for all calendar events.' => '', + 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => '', + 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', + 'Hour' => '', + 'I\'m attending' => '', + 'ID' => 'መታወቂያ', + 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', + 'In order to add events to your profile, you have to enable the calendar module first.' => '', + 'Include participant information in exports' => '', + 'Interested' => '', + 'Invalid date or time format!' => '', + 'Invalid day of month given' => '', + 'Invalid event type id selected.' => '', + 'Invalid frequency given' => '', + 'Invalid interval given' => '', + 'Invalid week day selection' => '', + 'Invite' => 'ይጋብዙ', + 'Invited: {users}' => '', + 'JWT Key' => '', + 'JWT Token Expiration' => '', + 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', + 'List' => 'ዝርዝር', + 'Location' => 'አቅጣጫ', + 'Manage entries' => '', + 'Maximum number of participants' => '', + 'Minute' => '', + 'Mode' => '', + 'Monday' => '', + 'Month' => '', + 'Monthly on day {dayOfMonth}' => '', + 'Monthly on the {position} {dayOfWeek}' => '', + 'Months' => '', + 'Never' => 'ፈፅሞ', + 'Next' => 'ቀጥሎ', + 'No new participants were added.' => '', + 'No new participants were invited.' => '', + 'No reminder' => '', + 'Notify participants about changes' => '', + 'On date' => '', + 'Participant removed.' => '', + 'Participants' => '', + 'Participation Status' => '', + 'Please select new participants.' => '', + 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => '', + 'Profile Calendar' => '', + 'Public' => 'የህዝብ', + 'Recurring' => '', + 'Reopen Event' => '', + 'Repeat every' => '', + 'Saturday' => '', + 'Select calendar...' => '', + 'Select space...' => '', + 'Set reminder' => '', + 'Show past events' => '', + 'Start Date' => '', + 'Start Time' => '', + 'Status cannot be updated.' => '', + 'Status updated.' => '', + 'Sunday' => '', + 'The event has already ended.' => '', + 'This event does not support recurrent events' => '', + 'Thursday' => '', + 'Time Zone' => 'የጊዜ ቀጠና', + 'Title' => 'ርዕስ', + 'Today' => '', + 'Tuesday' => '', + 'Upcoming {type}' => '', + 'Upcoming {type}: {title}' => '', + 'Use default reminder' => '', + 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', + 'User birthdays' => '', + 'Wednesday' => '', + 'Week' => '', + 'Weeks' => '', + 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', + 'Year' => '', + 'Years' => '', + 'You cannot invite participants!' => '', + 'You don\'t have permission to delete this event!' => '', + 'You have an {type} coming up' => '', + 'You have an {type} coming up: {title}' => '', + 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', + 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', + 'You have been registered for the event "{contentTitle}".' => '', + 'Your reminder settings for event: \'{title}\'' => '', + 'canceled' => '', + 'disabled' => 'አካል ጉዳተኛ', + 'first' => '', + 'forth' => '', + 'global' => '', + 'iCal' => '', + 'in seconds. 0 for no JWT token expiration.' => '', + 'last' => '', + 'on weekdays' => '', + 'second' => '', + 'third' => '', + '{displayName} Birthday' => '', + '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', + '{displayName} added you to the event "{contentTitle}".' => '', + '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', + '{displayName} invited you to the event "{contentTitle}".' => '', + '{name} Calendar' => '', ]; diff --git a/messages/an/base.php b/messages/an/base.php index bcdd7beb..ef0fae01 100644 --- a/messages/an/base.php +++ b/messages/an/base.php @@ -1,167 +1,166 @@ 'Cumpleanyos', - 'Calendar' => 'Calandario', - 'Description' => 'Descripción', - 'Edit' => 'Editar', - 'Email' => 'Correu-e', - 'List' => 'Lista', - 'Never' => 'Nunca', - 'Next' => 'Siguient', - 'Public' => 'Publico', - 'Time Zone' => 'Huso horario.', - 'Title' => 'Títol', - 'Add profile calendar' => '', - 'Choose target calendar' => '', - 'Reminder settings' => '', - 'Add all Space members with status {status}' => '', - 'Add participants...' => '', - 'Added: {users}' => '', - 'Additional Information for participants' => '', - 'Adds a calendar for private or public events to your profile and main menu.' => '', - 'Adds an event calendar to this space.' => '', - 'After (occurrences)' => '', - 'All Day' => '', - 'Allow option \'Decline\'' => '', - 'Allow option \'Undecided\'' => '', - 'Allows the user to create new calendar entries' => '', - 'Allows the user to edit/delete existing calendar entries' => '', - 'Also include participant email addresses' => '', - 'Attending' => '', - 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', - 'By upcoming events first' => '', - 'CalDAV' => '', - 'Calendar event' => '', - 'Calendar event content ID' => '', - 'Calendar events' => '', - 'Cancel Event' => '', - 'Cannot remove the participant!' => '', - 'Create entry' => '', - 'Custom reminder' => '', - 'Day' => '', - 'Days' => '', - 'Default reminder settings' => '', - 'Delete all events' => '', - 'Deleted' => '', - 'Display events within the next X days' => '', - 'Do you want to install this module on your profile?' => '', - 'Download ICS' => '', - 'Edit Event' => '', - 'Edit all events' => '', - 'Edit this and following events' => '', - 'Edit this event' => '', - 'Enable' => '', - 'Enable Reminder' => '', - 'End' => '', - 'End Date' => '', - 'End Time' => '', - 'End time must be after start time!' => '', - 'Event' => '', - 'Event Type' => '', - 'Event Types' => '', - 'Event could not be deleted!' => '', - 'Event has been be deleted!' => '', - 'Event not found!' => '', - 'Export as {type}' => '', - 'Files' => '', - 'Filter' => '', - 'Filter by types' => '', - 'Friday' => '', - 'Here you can configure default settings for all calendar events.' => '', - 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => '', - 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', - 'Hour' => '', - 'I\'m attending' => '', - 'ID' => '', - 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', - 'In order to add events to your profile, you have to enable the calendar module first.' => '', - 'Include participant information in exports' => '', - 'Interested' => '', - 'Invalid date or time format!' => '', - 'Invalid day of month given' => '', - 'Invalid event type id selected.' => '', - 'Invalid frequency given' => '', - 'Invalid interval given' => '', - 'Invalid week day selection' => '', - 'Invite' => '', - 'Invited: {users}' => '', - 'JWT Key' => '', - 'JWT Token Expiration' => '', - 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', - 'Location' => '', - 'Manage entries' => '', - 'Maximum number of participants' => '', - 'Minute' => '', - 'Mode' => '', - 'Monday' => '', - 'Month' => '', - 'Monthly on day {dayOfMonth}' => '', - 'Monthly on the {position} {dayOfWeek}' => '', - 'Months' => '', - 'No new participants were added.' => '', - 'No new participants were invited.' => '', - 'No reminder' => '', - 'Notify participants about changes' => '', - 'On date' => '', - 'Participant removed.' => '', - 'Participants' => '', - 'Participation Status' => '', - 'Please select new participants.' => '', - 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => '', - 'Profile Calendar' => '', - 'Recurring' => '', - 'Reopen Event' => '', - 'Repeat every' => '', - 'Saturday' => '', - 'Select calendar...' => '', - 'Select space...' => '', - 'Set reminder' => '', - 'Show past events' => '', - 'Start Date' => '', - 'Start Time' => '', - 'Status cannot be updated.' => '', - 'Status updated.' => '', - 'Sunday' => '', - 'The event has already ended.' => '', - 'This event does not support recurrent events' => '', - 'Thursday' => '', - 'Today' => '', - 'Tuesday' => '', - 'Upcoming {type}' => '', - 'Upcoming {type}: {title}' => '', - 'Use default reminder' => '', - 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', - 'User birthdays' => '', - 'Wednesday' => '', - 'Week' => '', - 'Weeks' => '', - 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', - 'Year' => '', - 'Years' => '', - 'You cannot invite participants!' => '', - 'You don\'t have permission to delete this event!' => '', - 'You have an {type} coming up' => '', - 'You have an {type} coming up: {title}' => '', - 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', - 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', - 'You have been registered for the event "{contentTitle}".' => '', - 'Your reminder settings for event: \'{title}\'' => '', - 'canceled' => '', - 'disabled' => '', - 'first' => '', - 'forth' => '', - 'global' => '', - 'iCal' => '', - 'in seconds. 0 for no JWT token expiration.' => '', - 'last' => '', - 'on weekdays' => '', - 'second' => '', - 'third' => '', - '{displayName} Birthday' => '', - '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', - '{displayName} added you to the event "{contentTitle}".' => '', - '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', - '{displayName} invited you to the event "{contentTitle}".' => '', - '{name} Calendar' => '', + 'Add profile calendar' => '', + 'Choose target calendar' => '', + 'Reminder settings' => '', + 'Add all Space members with status {status}' => '', + 'Add participants...' => '', + 'Added: {users}' => '', + 'Additional Information for participants' => '', + 'Adds a calendar for private or public events to your profile and main menu.' => '', + 'Adds an event calendar to this space.' => '', + 'After (occurrences)' => '', + 'All Day' => '', + 'Allow option \'Decline\'' => '', + 'Allow option \'Undecided\'' => '', + 'Allows the user to create new calendar entries' => '', + 'Allows the user to edit/delete existing calendar entries' => '', + 'Also include participant email addresses' => '', + 'Attending' => '', + 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', + 'Birthday' => 'Cumpleanyos', + 'By upcoming events first' => '', + 'CalDAV' => '', + 'Calendar' => 'Calandario', + 'Calendar event' => '', + 'Calendar event content ID' => '', + 'Calendar events' => '', + 'Cancel Event' => '', + 'Cannot remove the participant!' => '', + 'Create entry' => '', + 'Custom reminder' => '', + 'Day' => '', + 'Days' => '', + 'Default reminder settings' => '', + 'Delete all events' => '', + 'Deleted' => '', + 'Description' => 'Descripción', + 'Display events within the next X days' => '', + 'Do you want to install this module on your profile?' => '', + 'Download ICS' => '', + 'Edit' => 'Editar', + 'Edit Event' => '', + 'Edit all events' => '', + 'Edit this and following events' => '', + 'Edit this event' => '', + 'Email' => 'Correu-e', + 'Enable' => '', + 'Enable Reminder' => '', + 'End' => '', + 'End Date' => '', + 'End Time' => '', + 'End time must be after start time!' => '', + 'Event' => '', + 'Event Type' => '', + 'Event Types' => '', + 'Event could not be deleted!' => '', + 'Event has been be deleted!' => '', + 'Event not found!' => '', + 'Export as {type}' => '', + 'Files' => '', + 'Filter' => 'Filtrar', + 'Filter by types' => '', + 'Friday' => '', + 'Here you can configure default settings for all calendar events.' => '', + 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => '', + 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', + 'Hour' => '', + 'I\'m attending' => '', + 'ID' => '', + 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', + 'In order to add events to your profile, you have to enable the calendar module first.' => '', + 'Include participant information in exports' => '', + 'Interested' => '', + 'Invalid date or time format!' => '', + 'Invalid day of month given' => '', + 'Invalid event type id selected.' => '', + 'Invalid frequency given' => '', + 'Invalid interval given' => '', + 'Invalid week day selection' => '', + 'Invite' => '', + 'Invited: {users}' => '', + 'JWT Key' => '', + 'JWT Token Expiration' => '', + 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', + 'List' => 'Lista', + 'Location' => '', + 'Manage entries' => '', + 'Maximum number of participants' => '', + 'Minute' => '', + 'Mode' => '', + 'Monday' => '', + 'Month' => '', + 'Monthly on day {dayOfMonth}' => '', + 'Monthly on the {position} {dayOfWeek}' => '', + 'Months' => '', + 'Never' => 'Nunca', + 'Next' => 'Siguient', + 'No new participants were added.' => '', + 'No new participants were invited.' => '', + 'No reminder' => '', + 'Notify participants about changes' => '', + 'On date' => '', + 'Participant removed.' => '', + 'Participants' => '', + 'Participation Status' => '', + 'Please select new participants.' => '', + 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => '', + 'Profile Calendar' => '', + 'Public' => 'Publico', + 'Recurring' => '', + 'Reopen Event' => '', + 'Repeat every' => '', + 'Saturday' => '', + 'Select calendar...' => '', + 'Select space...' => '', + 'Set reminder' => '', + 'Show past events' => '', + 'Start Date' => '', + 'Start Time' => '', + 'Status cannot be updated.' => '', + 'Status updated.' => '', + 'Sunday' => '', + 'The event has already ended.' => '', + 'This event does not support recurrent events' => '', + 'Thursday' => '', + 'Time Zone' => 'Huso horario.', + 'Title' => 'Títol', + 'Today' => '', + 'Tuesday' => '', + 'Upcoming {type}' => '', + 'Upcoming {type}: {title}' => '', + 'Use default reminder' => '', + 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', + 'User birthdays' => '', + 'Wednesday' => '', + 'Week' => '', + 'Weeks' => '', + 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', + 'Year' => '', + 'Years' => '', + 'You cannot invite participants!' => '', + 'You don\'t have permission to delete this event!' => '', + 'You have an {type} coming up' => '', + 'You have an {type} coming up: {title}' => '', + 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', + 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', + 'You have been registered for the event "{contentTitle}".' => '', + 'Your reminder settings for event: \'{title}\'' => '', + 'canceled' => '', + 'disabled' => '', + 'first' => '', + 'forth' => '', + 'global' => '', + 'iCal' => '', + 'in seconds. 0 for no JWT token expiration.' => '', + 'last' => '', + 'on weekdays' => '', + 'second' => '', + 'third' => '', + '{displayName} Birthday' => '', + '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', + '{displayName} added you to the event "{contentTitle}".' => '', + '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', + '{displayName} invited you to the event "{contentTitle}".' => '', + '{name} Calendar' => '', ]; diff --git a/messages/ar/base.php b/messages/ar/base.php index abf8613a..5929fa93 100644 --- a/messages/ar/base.php +++ b/messages/ar/base.php @@ -1,167 +1,166 @@ Add
profile calendar' => 'إضافة تقويم الملف الشخصي', - 'Choose target calendar' => 'اختر التقويم المستهدف', - 'Reminder settings' => 'إعدادات التذكير', - 'Add all Space members with status {status}' => 'إضافة جميع أعضاء الباحة بالحالة {status}', - 'Add participants...' => 'إضافة مشاركين...', - 'Added: {users}' => 'تمت إضافة: {users}', - 'Additional Information for participants' => 'معلومات إضافية للمشاركين', - 'Adds a calendar for private or public events to your profile and main menu.' => 'يضيف تقويمًا للأحداث الخاصة أو العامة إلى ملفك الشخصي والقائمة الرئيسية.', - 'Adds an event calendar to this space.' => 'يضيف تقويم حدث إلى هذه الباحة.', - 'After (occurrences)' => 'بعد (الأحداث)', - 'All Day' => 'طوال اليوم', - 'Allow option \'Decline\'' => 'السماح بخيار "الرفض"', - 'Allow option \'Undecided\'' => 'السماح بالخيار "لم أقرر".', - 'Allows the user to create new calendar entries' => 'يسمح للمستخدم بإنشاء إدخالات التقويم', - 'Allows the user to edit/delete existing calendar entries' => 'يسمح للمستخدم بتحرير/حذف إدخالات التقويم الموجودة', - 'Attending' => 'الحضور', - 'Before a target calendar can be selected, the module must be activated in at least one Space.' => 'قبل أن يتم تحديد التقويم المستهدف، يجب تنشيط الوحدة في باحة واحدة على الأقل.', - 'Birthday' => 'تاريخ الميلاد', - 'Calendar' => 'التقويم', - 'Cancel Event' => 'إلغاء الحدث', - 'Cannot remove the participant!' => 'لا يمكن إزالة المشارك!', - 'Create entry' => 'إنشاء إدخال', - 'Custom reminder' => 'تذكير مخصص', - 'Day' => 'يوم', - 'Days' => 'أيام', - 'Default reminder settings' => 'إعدادات التذكير الافتراضية', - 'Delete all events' => 'حذف كل الأحداث', - 'Deleted' => 'تم الحذف', - 'Description' => 'الوصف', - 'Do you want to install this module on your profile?' => 'هل تريد تثبيت هذه الموديول على ملفك الشخصي ؟', - 'Download ICS' => 'تنزيل ICS', - 'Edit' => 'تحرير', - 'Edit Event' => 'تحرير الحدث', - 'Edit all events' => 'تحرير كل الأحداث', - 'Edit this and following events' => 'تحرير هذا و الأحداث التالية', - 'Edit this event' => 'تحرير هذا الحدث', - 'Email' => 'البريد الإلكتروني', - 'Enable' => 'تفعيل', - 'Enable Reminder' => 'تفعيل التذكير', - 'End' => 'الانتهاء', - 'End Date' => 'تاريخ الانتهاء', - 'End Time' => 'وقت الانتهاء', - 'End time must be after start time!' => 'وقت الانتهاء يجب أن يكون بعد وقت البدء', - 'Event' => 'الحدث', - 'Event Type' => 'نوع الحدث', - 'Event Types' => 'أنواع الأحداث', - 'Event could not be deleted!' => 'الحدث لم يتم حذفه!', - 'Event has been be deleted!' => 'الحدث قد تم حذفه', - 'Event not found!' => 'لم يتم العثور على الحدث', - 'Export as {type}' => 'تصدير كـ {type}', - 'Files' => 'الملفات', - 'Filter by types' => 'فرز حسب النوع', - 'Friday' => 'الجمعة', - 'Here you can configure default settings for all calendar events.' => 'هنا يمكنك ضبط الإعدادات الافتراضية لكل أحداث التقويم.', - 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => 'هنا يمكنك ضبط الإعدادات العمومية الافتراضية للتذكيرات. هذه الإعدادات يمكن أن تعدل على مستوى الباحة/الملف الشخصي.', - 'Hour' => 'ساعة', - 'I\'m attending' => 'أنا سأحضرها', - 'ID' => 'المعرف', - 'In order to add events to your profile, you have to enable the calendar module first.' => 'لإضافة أحداث إلى ملفك الشخصي، يجب عليك تفعيل موديول التقويم أولاً.', - 'Interested' => 'مهتم', - 'Invalid date or time format!' => 'صيغة تاريخ غير صالحة!', - 'Invalid day of month given' => 'تم تقديم يوم غير صالح من الشهر', - 'Invalid event type id selected.' => 'تم تحديد معرف نوع الحدث غير صالح.', - 'Invalid frequency given' => 'تم تقديم تكرار غير صالح', - 'Invalid interval given' => 'تم تقديم فاصل زمني غير صالح', - 'Invalid week day selection' => 'تحديد يوم الأسبوع غير صالح', - 'Invite' => 'دعوة', - 'Invited: {users}' => 'تم دعوة: {users}', - 'JWT Key' => 'مفتاح JWT', - 'JWT Token Expiration' => 'انتهاء صلاحية رمز JWT', - 'List' => 'قائمة', - 'Location' => 'الموقع', - 'Manage entries' => 'إدارة الإدخالات', - 'Maximum number of participants' => 'الحد الأقصى للمشاركين', - 'Minute' => 'دقيقة', - 'Mode' => 'الوضع', - 'Monday' => 'الاثنين', - 'Month' => 'شهر', - 'Monthly on day {dayOfMonth}' => 'شهريًا في يوم {dayOfMonth}', - 'Monthly on the {position} {dayOfWeek}' => 'شهريًا في {position} {dayOfWeek}', - 'Months' => 'أشهر', - 'Never' => 'أبداً', - 'Next' => 'التالي', - 'No new participants were added.' => 'لم تتم إضافة أي مشاركين جدد.', - 'No new participants were invited.' => 'لم تتم دعوة أي مشاركين جدد.', - 'No reminder' => 'لا تذكير', - 'Notify participants about changes' => 'أخبر المشاركين بالتغييرات', - 'On date' => 'بتاريخ', - 'Participant removed.' => 'تمت إزالة المشارك.', - 'Participants' => 'المشاركون', - 'Participation Status' => 'حالة المشاركين', - 'Please select new participants.' => 'من فضلك اختر مشاركين جدد.', - 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => 'الأحداث الخاصة تكون مرئية لك فقط، ولأصدقائك إذا تم تنشيط نظام الصداقة.', - 'Profile Calendar' => 'تقويم الملف الشخصي', - 'Public' => 'عام', - 'Recurring' => 'التكرار', - 'Reopen Event' => 'إعادة فتح الحدث', - 'Repeat every' => 'تكرار كل', - 'Saturday' => 'السبت', - 'Set reminder' => 'إعداد تذكير', - 'Start Date' => 'تاريخ البدء', - 'Start Time' => 'وقت البدء', - 'Status cannot be updated.' => 'لا يمكن تحديث الحالة.', - 'Status updated.' => 'تم تحديث الحالة.', - 'Sunday' => 'الأحد', - 'The event has already ended.' => 'الحدث قد انتهى مسبقاً.', - 'This event does not support recurrent events' => 'لا يدعم هذا الحدث الأحداث المتكررة', - 'Thursday' => 'الخميس', - 'Time Zone' => 'المنطقة الزمنية', - 'Title' => 'العنوان', - 'Today' => 'اليوم', - 'Tuesday' => 'الثلاثاء', - 'Upcoming {type}' => 'القادمة {type}', - 'Upcoming {type}: {title}' => '{type} القادم: {title}', - 'Use default reminder' => 'استخدم التذكير الافتراضي', - 'User birthdays' => 'أيام ميلاد المستخدمين', - 'Wednesday' => 'الأربعاء', - 'Week' => 'أسبوع', - 'Weeks' => 'أسابيع', - 'Year' => 'سنة', - 'Years' => 'سنوات', - 'You cannot invite participants!' => 'لا يمكنك دعوة مشاركين!', - 'You don\'t have permission to delete this event!' => 'أنا لا تملك الإذن لحذف هذا الحدث!', - 'You have an {type} coming up' => 'لديك {type} قادم', - 'You have an {type} coming up: {title}' => 'لديك {type} قادم: {title}', - 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => 'لقد تم تسجيلك في الحدث "{contentTitle}" في {spaceName}، بدءًا من {time}', - 'You have been registered for the event "{contentTitle}", starting at {time}.' => 'لقد تم تسجيلك في الحدث "{contentTitle}"، بدءًا من {time}.', - 'You have been registered for the event "{contentTitle}".' => 'لقد تم تسجيلك في الحدث "{contentTitle}".', - 'Your reminder settings for event: \'{title}\'' => 'إعدادات التذكير للحدث: \'{title}\'', - 'canceled' => 'تم إلغاؤه', - 'disabled' => 'معطل', - 'first' => 'أول', - 'forth' => 'رابع', - 'global' => 'عام', - 'last' => 'آخر', - 'on weekdays' => 'في أيام الأسبوع', - 'second' => 'ثاني', - 'third' => 'ثالث', - '{displayName} Birthday' => '{displayName} يوم ميلاد', - '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => 'أضافك {displayName} للتو إلى الحدث "{contentTitle}" في المساحة {spaceName} بدءًا من {time}', - '{displayName} added you to the event "{contentTitle}".' => 'لقد أضافك {displayName} للتو إلى الحدث "{contentTitle}".', - '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => 'دعاك {displayName} للتو إلى الحدث "{contentTitle}" في الباحة {spaceName} بدءًا من {time}.', - '{displayName} invited you to the event "{contentTitle}".' => 'لقد دعاك {displayName} للتو إلى الحدث "{contentTitle}".', - 'Also include participant email addresses' => '', - 'By upcoming events first' => '', - 'CalDAV' => '', - 'Calendar event' => '', - 'Calendar event content ID' => '', - 'Calendar events' => '', - 'Display events within the next X days' => '', - 'Filter' => '', - 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', - 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', - 'Include participant information in exports' => '', - 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', - 'Select calendar...' => '', - 'Select space...' => '', - 'Show past events' => '', - 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', - 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', - 'iCal' => '', - 'in seconds. 0 for no JWT token expiration.' => '', - '{name} Calendar' => '', + 'Add profile calendar' => 'إضافة تقويم الملف الشخصي', + 'Choose target calendar' => 'اختر التقويم المستهدف', + 'Reminder settings' => 'إعدادات التذكير', + 'Add all Space members with status {status}' => 'إضافة جميع أعضاء الباحة بالحالة {status}', + 'Add participants...' => 'إضافة مشاركين...', + 'Added: {users}' => 'تمت إضافة: {users}', + 'Additional Information for participants' => 'معلومات إضافية للمشاركين', + 'Adds a calendar for private or public events to your profile and main menu.' => 'يضيف تقويمًا للأحداث الخاصة أو العامة إلى ملفك الشخصي والقائمة الرئيسية.', + 'Adds an event calendar to this space.' => 'يضيف تقويم حدث إلى هذه الباحة.', + 'After (occurrences)' => 'بعد (الأحداث)', + 'All Day' => 'طوال اليوم', + 'Allow option \'Decline\'' => 'السماح بخيار "الرفض"', + 'Allow option \'Undecided\'' => 'السماح بالخيار "لم أقرر".', + 'Allows the user to create new calendar entries' => 'يسمح للمستخدم بإنشاء إدخالات التقويم', + 'Allows the user to edit/delete existing calendar entries' => 'يسمح للمستخدم بتحرير/حذف إدخالات التقويم الموجودة', + 'Also include participant email addresses' => '', + 'Attending' => 'الحضور', + 'Before a target calendar can be selected, the module must be activated in at least one Space.' => 'قبل أن يتم تحديد التقويم المستهدف، يجب تنشيط الوحدة في باحة واحدة على الأقل.', + 'Birthday' => 'تاريخ الميلاد', + 'By upcoming events first' => '', + 'CalDAV' => '', + 'Calendar' => 'التقويم', + 'Calendar event' => '', + 'Calendar event content ID' => '', + 'Calendar events' => '', + 'Cancel Event' => 'إلغاء الحدث', + 'Cannot remove the participant!' => 'لا يمكن إزالة المشارك!', + 'Create entry' => 'إنشاء إدخال', + 'Custom reminder' => 'تذكير مخصص', + 'Day' => 'يوم', + 'Days' => 'أيام', + 'Default reminder settings' => 'إعدادات التذكير الافتراضية', + 'Delete all events' => 'حذف كل الأحداث', + 'Deleted' => 'تم الحذف', + 'Description' => 'الوصف', + 'Display events within the next X days' => '', + 'Do you want to install this module on your profile?' => 'هل تريد تثبيت هذه الموديول على ملفك الشخصي ؟', + 'Download ICS' => 'تنزيل ICS', + 'Edit' => 'تحرير', + 'Edit Event' => 'تحرير الحدث', + 'Edit all events' => 'تحرير كل الأحداث', + 'Edit this and following events' => 'تحرير هذا و الأحداث التالية', + 'Edit this event' => 'تحرير هذا الحدث', + 'Email' => 'البريد الإلكتروني', + 'Enable' => 'تفعيل', + 'Enable Reminder' => 'تفعيل التذكير', + 'End' => 'الانتهاء', + 'End Date' => 'تاريخ الانتهاء', + 'End Time' => 'وقت الانتهاء', + 'End time must be after start time!' => 'وقت الانتهاء يجب أن يكون بعد وقت البدء', + 'Event' => 'الحدث', + 'Event Type' => 'نوع الحدث', + 'Event Types' => 'أنواع الأحداث', + 'Event could not be deleted!' => 'الحدث لم يتم حذفه!', + 'Event has been be deleted!' => 'الحدث قد تم حذفه', + 'Event not found!' => 'لم يتم العثور على الحدث', + 'Export as {type}' => 'تصدير كـ {type}', + 'Files' => 'الملفات', + 'Filter' => 'تصفية', + 'Filter by types' => 'فرز حسب النوع', + 'Friday' => 'الجمعة', + 'Here you can configure default settings for all calendar events.' => 'هنا يمكنك ضبط الإعدادات الافتراضية لكل أحداث التقويم.', + 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => 'هنا يمكنك ضبط الإعدادات العمومية الافتراضية للتذكيرات. هذه الإعدادات يمكن أن تعدل على مستوى الباحة/الملف الشخصي.', + 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', + 'Hour' => 'ساعة', + 'I\'m attending' => 'أنا سأحضرها', + 'ID' => 'المعرف', + 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', + 'In order to add events to your profile, you have to enable the calendar module first.' => 'لإضافة أحداث إلى ملفك الشخصي، يجب عليك تفعيل موديول التقويم أولاً.', + 'Include participant information in exports' => '', + 'Interested' => 'مهتم', + 'Invalid date or time format!' => 'صيغة تاريخ غير صالحة!', + 'Invalid day of month given' => 'تم تقديم يوم غير صالح من الشهر', + 'Invalid event type id selected.' => 'تم تحديد معرف نوع الحدث غير صالح.', + 'Invalid frequency given' => 'تم تقديم تكرار غير صالح', + 'Invalid interval given' => 'تم تقديم فاصل زمني غير صالح', + 'Invalid week day selection' => 'تحديد يوم الأسبوع غير صالح', + 'Invite' => 'دعوة', + 'Invited: {users}' => 'تم دعوة: {users}', + 'JWT Key' => 'مفتاح JWT', + 'JWT Token Expiration' => 'انتهاء صلاحية رمز JWT', + 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', + 'List' => 'قائمة', + 'Location' => 'الموقع', + 'Manage entries' => 'إدارة الإدخالات', + 'Maximum number of participants' => 'الحد الأقصى للمشاركين', + 'Minute' => 'دقيقة', + 'Mode' => 'الوضع', + 'Monday' => 'الاثنين', + 'Month' => 'شهر', + 'Monthly on day {dayOfMonth}' => 'شهريًا في يوم {dayOfMonth}', + 'Monthly on the {position} {dayOfWeek}' => 'شهريًا في {position} {dayOfWeek}', + 'Months' => 'أشهر', + 'Never' => 'أبداً', + 'Next' => 'التالي', + 'No new participants were added.' => 'لم تتم إضافة أي مشاركين جدد.', + 'No new participants were invited.' => 'لم تتم دعوة أي مشاركين جدد.', + 'No reminder' => 'لا تذكير', + 'Notify participants about changes' => 'أخبر المشاركين بالتغييرات', + 'On date' => 'بتاريخ', + 'Participant removed.' => 'تمت إزالة المشارك.', + 'Participants' => 'المشاركون', + 'Participation Status' => 'حالة المشاركين', + 'Please select new participants.' => 'من فضلك اختر مشاركين جدد.', + 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => 'الأحداث الخاصة تكون مرئية لك فقط، ولأصدقائك إذا تم تنشيط نظام الصداقة.', + 'Profile Calendar' => 'تقويم الملف الشخصي', + 'Public' => 'عام', + 'Recurring' => 'التكرار', + 'Reopen Event' => 'إعادة فتح الحدث', + 'Repeat every' => 'تكرار كل', + 'Saturday' => 'السبت', + 'Select calendar...' => '', + 'Select space...' => '', + 'Set reminder' => 'إعداد تذكير', + 'Show past events' => '', + 'Start Date' => 'تاريخ البدء', + 'Start Time' => 'وقت البدء', + 'Status cannot be updated.' => 'لا يمكن تحديث الحالة.', + 'Status updated.' => 'تم تحديث الحالة.', + 'Sunday' => 'الأحد', + 'The event has already ended.' => 'الحدث قد انتهى مسبقاً.', + 'This event does not support recurrent events' => 'لا يدعم هذا الحدث الأحداث المتكررة', + 'Thursday' => 'الخميس', + 'Time Zone' => 'المنطقة الزمنية', + 'Title' => 'العنوان', + 'Today' => 'اليوم', + 'Tuesday' => 'الثلاثاء', + 'Upcoming {type}' => 'القادمة {type}', + 'Upcoming {type}: {title}' => '{type} القادم: {title}', + 'Use default reminder' => 'استخدم التذكير الافتراضي', + 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', + 'User birthdays' => 'أيام ميلاد المستخدمين', + 'Wednesday' => 'الأربعاء', + 'Week' => 'أسبوع', + 'Weeks' => 'أسابيع', + 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', + 'Year' => 'سنة', + 'Years' => 'سنوات', + 'You cannot invite participants!' => 'لا يمكنك دعوة مشاركين!', + 'You don\'t have permission to delete this event!' => 'أنا لا تملك الإذن لحذف هذا الحدث!', + 'You have an {type} coming up' => 'لديك {type} قادم', + 'You have an {type} coming up: {title}' => 'لديك {type} قادم: {title}', + 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => 'لقد تم تسجيلك في الحدث "{contentTitle}" في {spaceName}، بدءًا من {time}', + 'You have been registered for the event "{contentTitle}", starting at {time}.' => 'لقد تم تسجيلك في الحدث "{contentTitle}"، بدءًا من {time}.', + 'You have been registered for the event "{contentTitle}".' => 'لقد تم تسجيلك في الحدث "{contentTitle}".', + 'Your reminder settings for event: \'{title}\'' => 'إعدادات التذكير للحدث: \'{title}\'', + 'canceled' => 'تم إلغاؤه', + 'disabled' => 'معطل', + 'first' => 'أول', + 'forth' => 'رابع', + 'global' => 'عام', + 'iCal' => '', + 'in seconds. 0 for no JWT token expiration.' => '', + 'last' => 'آخر', + 'on weekdays' => 'في أيام الأسبوع', + 'second' => 'ثاني', + 'third' => 'ثالث', + '{displayName} Birthday' => '{displayName} يوم ميلاد', + '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => 'أضافك {displayName} للتو إلى الحدث "{contentTitle}" في المساحة {spaceName} بدءًا من {time}', + '{displayName} added you to the event "{contentTitle}".' => 'لقد أضافك {displayName} للتو إلى الحدث "{contentTitle}".', + '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => 'دعاك {displayName} للتو إلى الحدث "{contentTitle}" في الباحة {spaceName} بدءًا من {time}.', + '{displayName} invited you to the event "{contentTitle}".' => 'لقد دعاك {displayName} للتو إلى الحدث "{contentTitle}".', + '{name} Calendar' => '', ]; diff --git a/messages/bg/base.php b/messages/bg/base.php index 050bf526..c34222fc 100644 --- a/messages/bg/base.php +++ b/messages/bg/base.php @@ -1,167 +1,166 @@ Add
profile calendar' => 'Добавяне на профилен календар', - 'Choose target calendar' => 'Изберете целеви календар', - 'Reminder settings' => 'Настройки за напомняне', - 'Adds a calendar for private or public events to your profile and main menu.' => 'Добавя календар за частни или публични събития към вашия профил и главното меню.', - 'Adds an event calendar to this space.' => 'Добавя календар за събития към този раздел.', - 'After (occurrences)' => 'След (прояви)', - 'All Day' => 'Цял ден', - 'Allows the user to create new calendar entries' => 'Позволява на потребителя да създава нови записи в календара', - 'Allows the user to edit/delete existing calendar entries' => 'Позволява на потребителя да редактира / изтрива съществуващи записи в календара', - 'Attending' => 'Присъствие', - 'Birthday' => 'Рожден ден', - 'Calendar' => 'Календар', - 'Cancel Event' => 'Отмяна на събитие', - 'Create entry' => 'Създаване на запис', - 'Custom reminder' => 'Персонализирано напомняне', - 'Day' => 'Ден', - 'Days' => 'Дни', - 'Default reminder settings' => 'Настройки по подразбиране за напомняне', - 'Delete all events' => 'Изтрийте всички събития', - 'Deleted' => 'Изтрита', - 'Description' => 'Описание', - 'Do you want to install this module on your profile?' => 'Искате ли да инсталирате този модул във вашия профил?', - 'Edit' => 'Редактиране', - 'Edit all events' => 'Редактирайте всички събития', - 'Edit this and following events' => 'Редактирайте това и следващите събития', - 'Edit this event' => 'Редактирайте това събитие', - 'Email' => 'Имейл', - 'Enable' => 'Активиране', - 'End' => 'Край', - 'End Date' => 'Крайна дата', - 'End Time' => 'Крайно време', - 'End time must be after start time!' => 'Крайният час трябва да е след началния час!', - 'Event' => 'Събитие', - 'Event Type' => 'Тип събитие', - 'Event Types' => 'Типове събития', - 'Event not found!' => 'Събитието не е намерено!', - 'Files' => 'Файлове', - 'Friday' => 'Петък', - 'Here you can configure default settings for all calendar events.' => 'Тук можете да конфигурирате настройките по подразбиране за всички събития в календара.', - 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => 'Тук можете да конфигурирате глобални напомняния по подразбиране. Тези настройки могат да бъдат заменени на ниво раздел/профил.', - 'Hour' => 'Час', - 'I\'m attending' => 'Посещавам', - 'ID' => 'Идентификационен номер', - 'In order to add events to your profile, you have to enable the calendar module first.' => 'За да добавите събития към вашия профил, първо трябва да активирате модула календар.', - 'Interested' => 'Заинтересован', - 'Invalid date or time format!' => 'Невалиден формат на дата или час!', - 'Invalid day of month given' => 'Даден е невалиден ден от месеца', - 'Invalid event type id selected.' => 'Избран е невалиден идентификатор на типа събитие.', - 'Invalid frequency given' => 'Дадена е невалидна честота', - 'Invalid interval given' => 'Даден е невалиден интервал', - 'Invalid week day selection' => 'Невалиден избор на ден от седмицата', - 'Invite' => 'Покани', - 'JWT Key' => 'Ключ JWT', - 'List' => 'Списък', - 'Location' => 'Местоположение', - 'Manage entries' => 'Управление на записи', - 'Maximum number of participants' => 'Максимален брой участници', - 'Monday' => 'Понеделник', - 'Month' => 'Месец', - 'Monthly on day {dayOfMonth}' => 'Месечно на ден {dayOfMonth}', - 'Monthly on the {position} {dayOfWeek}' => 'Месечно на {position} {dayOfWeek}', - 'Months' => 'Месеци', - 'Never' => 'Никога', - 'Next' => 'Следващ', - 'No reminder' => 'Няма напомняне', - 'On date' => 'На дата', - 'Participants' => 'Участници', - 'Profile Calendar' => 'Календар на Профила', - 'Public' => 'Публично', - 'Recurring' => 'Повтарящо се', - 'Reopen Event' => 'Отвори отново събитието', - 'Repeat every' => 'Повторете всеки', - 'Saturday' => 'Събота', - 'Set reminder' => 'Задайте напомняне', - 'Start Date' => 'Начална дата', - 'Start Time' => 'Начално време', - 'Sunday' => 'Неделя', - 'This event does not support recurrent events' => 'Това събитие не поддържа повтарящи се събития', - 'Thursday' => 'Четвъртък', - 'Time Zone' => 'Часова зона', - 'Title' => 'Заглавие', - 'Today' => 'Днес', - 'Tuesday' => 'Вторник', - 'Upcoming {type}' => 'Предстои {type}', - 'Upcoming {type}: {title}' => 'Предстои {type}: {title}', - 'Use default reminder' => 'Използвайте напомняне по подразбиране', - 'User birthdays' => 'Рожденни дни на потребителите', - 'Wednesday' => 'Сряда', - 'Week' => 'Седмица', - 'Weeks' => 'Седмици', - 'Year' => 'Година', - 'Years' => 'Години', - 'You don\'t have permission to delete this event!' => 'Нямате разрешение да изтриете това събитие!', - 'You have an {type} coming up' => 'Предстои ви {type}', - 'You have an {type} coming up: {title}' => 'Предстои ви {type}: {title}', - 'Your reminder settings for event: \'{title}\'' => 'Настройките ви за напомняне за събитие: "{title}"', - 'canceled' => 'отменено', - 'disabled' => 'хора с увреждания', - 'first' => 'първи', - 'forth' => 'четвърти', - 'last' => 'последен', - 'on weekdays' => 'през седмицата', - 'second' => 'втори', - 'third' => 'трети', - '{displayName} Birthday' => 'Рожден ден на {displayName}', - '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} току-що ви добави към събитие "{contentTitle}" в раздел {spaceName}, започващо в {time}.', - '{displayName} added you to the event "{contentTitle}".' => '{displayName} току-що ви добави към събитие "{contentTitle}".', - 'Add all Space members with status {status}' => '', - 'Add participants...' => '', - 'Added: {users}' => '', - 'Additional Information for participants' => '', - 'Allow option \'Decline\'' => '', - 'Allow option \'Undecided\'' => '', - 'Also include participant email addresses' => '', - 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', - 'By upcoming events first' => '', - 'CalDAV' => '', - 'Calendar event' => '', - 'Calendar event content ID' => '', - 'Calendar events' => '', - 'Cannot remove the participant!' => '', - 'Display events within the next X days' => '', - 'Download ICS' => '', - 'Edit Event' => '', - 'Enable Reminder' => '', - 'Event could not be deleted!' => '', - 'Event has been be deleted!' => '', - 'Export as {type}' => '', - 'Filter' => '', - 'Filter by types' => '', - 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', - 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', - 'Include participant information in exports' => '', - 'Invited: {users}' => '', - 'JWT Token Expiration' => '', - 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', - 'Minute' => '', - 'Mode' => '', - 'No new participants were added.' => '', - 'No new participants were invited.' => '', - 'Notify participants about changes' => '', - 'Participant removed.' => '', - 'Participation Status' => '', - 'Please select new participants.' => '', - 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => '', - 'Select calendar...' => '', - 'Select space...' => '', - 'Show past events' => '', - 'Status cannot be updated.' => '', - 'Status updated.' => '', - 'The event has already ended.' => '', - 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', - 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', - 'You cannot invite participants!' => '', - 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', - 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', - 'You have been registered for the event "{contentTitle}".' => '', - 'global' => '', - 'iCal' => '', - 'in seconds. 0 for no JWT token expiration.' => '', - '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', - '{displayName} invited you to the event "{contentTitle}".' => '', - '{name} Calendar' => '', + 'Add profile calendar' => 'Добавяне на профилен календар', + 'Choose target calendar' => 'Изберете целеви календар', + 'Reminder settings' => 'Настройки за напомняне', + 'Add all Space members with status {status}' => '', + 'Add participants...' => '', + 'Added: {users}' => '', + 'Additional Information for participants' => '', + 'Adds a calendar for private or public events to your profile and main menu.' => 'Добавя календар за частни или публични събития към вашия профил и главното меню.', + 'Adds an event calendar to this space.' => 'Добавя календар за събития към този раздел.', + 'After (occurrences)' => 'След (прояви)', + 'All Day' => 'Цял ден', + 'Allow option \'Decline\'' => '', + 'Allow option \'Undecided\'' => '', + 'Allows the user to create new calendar entries' => 'Позволява на потребителя да създава нови записи в календара', + 'Allows the user to edit/delete existing calendar entries' => 'Позволява на потребителя да редактира / изтрива съществуващи записи в календара', + 'Also include participant email addresses' => '', + 'Attending' => 'Присъствие', + 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', + 'Birthday' => 'Рожден ден', + 'By upcoming events first' => '', + 'CalDAV' => '', + 'Calendar' => 'Календар', + 'Calendar event' => '', + 'Calendar event content ID' => '', + 'Calendar events' => '', + 'Cancel Event' => 'Отмяна на събитие', + 'Cannot remove the participant!' => '', + 'Create entry' => 'Създаване на запис', + 'Custom reminder' => 'Персонализирано напомняне', + 'Day' => 'Ден', + 'Days' => 'Дни', + 'Default reminder settings' => 'Настройки по подразбиране за напомняне', + 'Delete all events' => 'Изтрийте всички събития', + 'Deleted' => 'Изтрита', + 'Description' => 'Описание', + 'Display events within the next X days' => '', + 'Do you want to install this module on your profile?' => 'Искате ли да инсталирате този модул във вашия профил?', + 'Download ICS' => '', + 'Edit' => 'Редактиране', + 'Edit Event' => '', + 'Edit all events' => 'Редактирайте всички събития', + 'Edit this and following events' => 'Редактирайте това и следващите събития', + 'Edit this event' => 'Редактирайте това събитие', + 'Email' => 'Имейл', + 'Enable' => 'Активиране', + 'Enable Reminder' => '', + 'End' => 'Край', + 'End Date' => 'Крайна дата', + 'End Time' => 'Крайно време', + 'End time must be after start time!' => 'Крайният час трябва да е след началния час!', + 'Event' => 'Събитие', + 'Event Type' => 'Тип събитие', + 'Event Types' => 'Типове събития', + 'Event could not be deleted!' => '', + 'Event has been be deleted!' => '', + 'Event not found!' => 'Събитието не е намерено!', + 'Export as {type}' => '', + 'Files' => 'Файлове', + 'Filter' => 'Филтър', + 'Filter by types' => '', + 'Friday' => 'Петък', + 'Here you can configure default settings for all calendar events.' => 'Тук можете да конфигурирате настройките по подразбиране за всички събития в календара.', + 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => 'Тук можете да конфигурирате глобални напомняния по подразбиране. Тези настройки могат да бъдат заменени на ниво раздел/профил.', + 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', + 'Hour' => 'Час', + 'I\'m attending' => 'Посещавам', + 'ID' => 'Идентификационен номер', + 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', + 'In order to add events to your profile, you have to enable the calendar module first.' => 'За да добавите събития към вашия профил, първо трябва да активирате модула календар.', + 'Include participant information in exports' => '', + 'Interested' => 'Заинтересован', + 'Invalid date or time format!' => 'Невалиден формат на дата или час!', + 'Invalid day of month given' => 'Даден е невалиден ден от месеца', + 'Invalid event type id selected.' => 'Избран е невалиден идентификатор на типа събитие.', + 'Invalid frequency given' => 'Дадена е невалидна честота', + 'Invalid interval given' => 'Даден е невалиден интервал', + 'Invalid week day selection' => 'Невалиден избор на ден от седмицата', + 'Invite' => 'Покани', + 'Invited: {users}' => '', + 'JWT Key' => 'Ключ JWT', + 'JWT Token Expiration' => '', + 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', + 'List' => 'Списък', + 'Location' => 'Местоположение', + 'Manage entries' => 'Управление на записи', + 'Maximum number of participants' => 'Максимален брой участници', + 'Minute' => '', + 'Mode' => '', + 'Monday' => 'Понеделник', + 'Month' => 'Месец', + 'Monthly on day {dayOfMonth}' => 'Месечно на ден {dayOfMonth}', + 'Monthly on the {position} {dayOfWeek}' => 'Месечно на {position} {dayOfWeek}', + 'Months' => 'Месеци', + 'Never' => 'Никога', + 'Next' => 'Следващ', + 'No new participants were added.' => '', + 'No new participants were invited.' => '', + 'No reminder' => 'Няма напомняне', + 'Notify participants about changes' => '', + 'On date' => 'На дата', + 'Participant removed.' => '', + 'Participants' => 'Участници', + 'Participation Status' => '', + 'Please select new participants.' => '', + 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => '', + 'Profile Calendar' => 'Календар на Профила', + 'Public' => 'Публично', + 'Recurring' => 'Повтарящо се', + 'Reopen Event' => 'Отвори отново събитието', + 'Repeat every' => 'Повторете всеки', + 'Saturday' => 'Събота', + 'Select calendar...' => '', + 'Select space...' => '', + 'Set reminder' => 'Задайте напомняне', + 'Show past events' => '', + 'Start Date' => 'Начална дата', + 'Start Time' => 'Начално време', + 'Status cannot be updated.' => '', + 'Status updated.' => '', + 'Sunday' => 'Неделя', + 'The event has already ended.' => '', + 'This event does not support recurrent events' => 'Това събитие не поддържа повтарящи се събития', + 'Thursday' => 'Четвъртък', + 'Time Zone' => 'Часова зона', + 'Title' => 'Заглавие', + 'Today' => 'Днес', + 'Tuesday' => 'Вторник', + 'Upcoming {type}' => 'Предстои {type}', + 'Upcoming {type}: {title}' => 'Предстои {type}: {title}', + 'Use default reminder' => 'Използвайте напомняне по подразбиране', + 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', + 'User birthdays' => 'Рожденни дни на потребителите', + 'Wednesday' => 'Сряда', + 'Week' => 'Седмица', + 'Weeks' => 'Седмици', + 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', + 'Year' => 'Година', + 'Years' => 'Години', + 'You cannot invite participants!' => '', + 'You don\'t have permission to delete this event!' => 'Нямате разрешение да изтриете това събитие!', + 'You have an {type} coming up' => 'Предстои ви {type}', + 'You have an {type} coming up: {title}' => 'Предстои ви {type}: {title}', + 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', + 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', + 'You have been registered for the event "{contentTitle}".' => '', + 'Your reminder settings for event: \'{title}\'' => 'Настройките ви за напомняне за събитие: "{title}"', + 'canceled' => 'отменено', + 'disabled' => 'хора с увреждания', + 'first' => 'първи', + 'forth' => 'четвърти', + 'global' => '', + 'iCal' => '', + 'in seconds. 0 for no JWT token expiration.' => '', + 'last' => 'последен', + 'on weekdays' => 'през седмицата', + 'second' => 'втори', + 'third' => 'трети', + '{displayName} Birthday' => 'Рожден ден на {displayName}', + '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} току-що ви добави към събитие "{contentTitle}" в раздел {spaceName}, започващо в {time}.', + '{displayName} added you to the event "{contentTitle}".' => '{displayName} току-що ви добави към събитие "{contentTitle}".', + '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', + '{displayName} invited you to the event "{contentTitle}".' => '', + '{name} Calendar' => '', ]; diff --git a/messages/ca/base.php b/messages/ca/base.php index 1f9a9677..3fcf6724 100644 --- a/messages/ca/base.php +++ b/messages/ca/base.php @@ -1,167 +1,166 @@ Add profile calendar' => 'Afegir calendari de perfil', - 'Choose target calendar' => 'Seleccionar calendari de destí', - 'Reminder settings' => 'Configuració de recordatoris', - 'Add participants...' => 'Afegir participant...', - 'Added: {users}' => 'Afegir: {users}', - 'Additional Information for participants' => 'Informació adicional per participants', - 'Adds a calendar for private or public events to your profile and main menu.' => 'Afegeix un calendari per esdeveniments públics o privats al teu perfil i al menú principal', - 'Adds an event calendar to this space.' => 'Afegeix un calendari a aquest espai.', - 'All Day' => 'Tot el dia', - 'Allow option \'Decline\'' => 'Habilitar opció \'Declinar\'', - 'Allow option \'Undecided\'' => 'Habilitar opció \'Potser\'', - 'Attending' => 'Assistint', - 'Birthday' => 'Aniversari', - 'Calendar' => 'Calendari', - 'Cancel Event' => 'Cancel·lar esdeveniment', - 'Cannot remove the participant!' => 'No pots eliminar el participant!', - 'Day' => 'Dia', - 'Deleted' => 'Eliminat', - 'Description' => 'Descripció', - 'Do you want to install this module on your profile?' => 'Vols instal·lar aquest mòdul al teu perfil?', - 'Download ICS' => 'Descarregar ICS', - 'Edit' => 'Editar', - 'Edit Event' => 'Editar esdeveniment', - 'Edit this event' => 'Edita aquest esdeveniment', - 'Email' => 'Correu electrònic', - 'Enable' => 'Habilita', - 'Enable Reminder' => 'Habilitar recordatori', - 'End Date' => 'Data final', - 'End Time' => 'Hora de finalització', - 'End time must be after start time!' => 'L\'hora final ha de ser després de l\'hora d\'inici!', - 'Event' => 'Esdeveniment', - 'Event Type' => 'Tipus d\'esdeveniment', - 'Event not found!' => 'No s\'ha trobat l\'esdeveniment!', - 'Files' => 'Arxius', - 'Filter by types' => 'Filtrar per tipus', - 'Friday' => 'Divendres', - 'I\'m attending' => 'Hi aniré', - 'ID' => 'ID', - 'In order to add events to your profile, you have to enable the calendar module first.' => 'Per afegir esdeveniments al vostre perfil, primer heu d\'activar el mòdul de calendari.', - 'Interested' => 'Interessat', - 'Invalid date or time format!' => 'Data o format incorrecte!', - 'Invalid event type id selected.' => 'Tipus d\'esdeveniment seleccionat incorrecte.', - 'Invite' => 'Convida', - 'Invited: {users}' => 'Convidar: {users}', - 'List' => 'Llista', - 'Location' => 'Ubicació', - 'Maximum number of participants' => 'Número màxim de participants', - 'Mode' => 'Mode', - 'Monday' => 'Dilluns', - 'Month' => 'Mes', - 'Never' => 'Mai', - 'Next' => 'Següent', - 'No new participants were added.' => 'No s\'han afegit nous participant.', - 'No new participants were invited.' => 'No s\'han convidat nous participant.', - 'Notify participants about changes' => 'Notificar als participants dels canvis.', - 'Participant removed.' => 'Participant eliminat.', - 'Participants' => 'Participants', - 'Please select new participants.' => 'Si us plau, selecciona nous participants.', - 'Profile Calendar' => 'Calendari de perfil', - 'Public' => 'Públic', - 'Recurring' => 'Recurrent', - 'Reopen Event' => 'Reobrir esdeveniment', - 'Saturday' => 'Dissabte', - 'Set reminder' => 'Establir recordatori', - 'Start Date' => 'Data d\'inici', - 'Start Time' => 'Hora d\'inici', - 'Status updated.' => 'Estat actualitzat.', - 'Sunday' => 'Diumenge', - 'The event has already ended.' => 'Aquest esdeveniment ha finalitzat.', - 'Thursday' => 'Dijous', - 'Time Zone' => 'Fus horari', - 'Title' => 'Títol', - 'Today' => 'Avui', - 'Tuesday' => 'Dimarts', - 'User birthdays' => 'Aniversaris dels usuaris', - 'Wednesday' => 'Dimecres', - 'Week' => 'Setmana', - 'Year' => 'Any', - 'You cannot invite participants!' => 'No pots convidar participants!', - 'You don\'t have permission to delete this event!' => 'No tens permisos per eliminar aquest esdeveniment!', - 'canceled' => 'cancel·lat', - 'disabled' => 'discapacitat', - '{displayName} Birthday' => 'Aniversari de {displayName}', - '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} t\'ha afegit a un esdeveniment "{contentTitle}" a l\'espai {spaceName} que comença a {time}.', - '{displayName} added you to the event "{contentTitle}".' => '{displayName} t\'ha afegit a l\'esdeveniment "{contentTitle}".', - '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} t\'ha convidat a un esdeveniment "{contentTitle}" a l\'espai {spaceName} que comença a {time}.', - '{displayName} invited you to the event "{contentTitle}".' => '{displayName} t\'ha convidat a l\'esdeveniment "{contentTitle}".', - 'Add all Space members with status {status}' => '', - 'After (occurrences)' => '', - 'Allows the user to create new calendar entries' => '', - 'Allows the user to edit/delete existing calendar entries' => '', - 'Also include participant email addresses' => '', - 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', - 'By upcoming events first' => '', - 'CalDAV' => '', - 'Calendar event' => '', - 'Calendar event content ID' => '', - 'Calendar events' => '', - 'Create entry' => '', - 'Custom reminder' => '', - 'Days' => '', - 'Default reminder settings' => '', - 'Delete all events' => '', - 'Display events within the next X days' => '', - 'Edit all events' => '', - 'Edit this and following events' => '', - 'End' => '', - 'Event Types' => '', - 'Event could not be deleted!' => '', - 'Event has been be deleted!' => '', - 'Export as {type}' => '', - 'Filter' => '', - 'Here you can configure default settings for all calendar events.' => '', - 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => '', - 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', - 'Hour' => '', - 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', - 'Include participant information in exports' => '', - 'Invalid day of month given' => '', - 'Invalid frequency given' => '', - 'Invalid interval given' => '', - 'Invalid week day selection' => '', - 'JWT Key' => '', - 'JWT Token Expiration' => '', - 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', - 'Manage entries' => '', - 'Minute' => '', - 'Monthly on day {dayOfMonth}' => '', - 'Monthly on the {position} {dayOfWeek}' => '', - 'Months' => '', - 'No reminder' => '', - 'On date' => '', - 'Participation Status' => '', - 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => '', - 'Repeat every' => '', - 'Select calendar...' => '', - 'Select space...' => '', - 'Show past events' => '', - 'Status cannot be updated.' => '', - 'This event does not support recurrent events' => '', - 'Upcoming {type}' => '', - 'Upcoming {type}: {title}' => '', - 'Use default reminder' => '', - 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', - 'Weeks' => '', - 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', - 'Years' => '', - 'You have an {type} coming up' => '', - 'You have an {type} coming up: {title}' => '', - 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', - 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', - 'You have been registered for the event "{contentTitle}".' => '', - 'Your reminder settings for event: \'{title}\'' => '', - 'first' => '', - 'forth' => '', - 'global' => '', - 'iCal' => '', - 'in seconds. 0 for no JWT token expiration.' => '', - 'last' => '', - 'on weekdays' => '', - 'second' => '', - 'third' => '', - '{name} Calendar' => '', + 'Add profile calendar' => 'Afegir calendari de perfil', + 'Choose target calendar' => 'Seleccionar calendari de destí', + 'Reminder settings' => 'Configuració de recordatoris', + 'Add all Space members with status {status}' => '', + 'Add participants...' => 'Afegir participant...', + 'Added: {users}' => 'Afegir: {users}', + 'Additional Information for participants' => 'Informació adicional per participants', + 'Adds a calendar for private or public events to your profile and main menu.' => 'Afegeix un calendari per esdeveniments públics o privats al teu perfil i al menú principal', + 'Adds an event calendar to this space.' => 'Afegeix un calendari a aquest espai.', + 'After (occurrences)' => '', + 'All Day' => 'Tot el dia', + 'Allow option \'Decline\'' => 'Habilitar opció \'Declinar\'', + 'Allow option \'Undecided\'' => 'Habilitar opció \'Potser\'', + 'Allows the user to create new calendar entries' => '', + 'Allows the user to edit/delete existing calendar entries' => '', + 'Also include participant email addresses' => '', + 'Attending' => 'Assistint', + 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', + 'Birthday' => 'Aniversari', + 'By upcoming events first' => '', + 'CalDAV' => '', + 'Calendar' => 'Calendari', + 'Calendar event' => '', + 'Calendar event content ID' => '', + 'Calendar events' => '', + 'Cancel Event' => 'Cancel·lar esdeveniment', + 'Cannot remove the participant!' => 'No pots eliminar el participant!', + 'Create entry' => '', + 'Custom reminder' => '', + 'Day' => 'Dia', + 'Days' => '', + 'Default reminder settings' => '', + 'Delete all events' => '', + 'Deleted' => 'Eliminat', + 'Description' => 'Descripció', + 'Display events within the next X days' => '', + 'Do you want to install this module on your profile?' => 'Vols instal·lar aquest mòdul al teu perfil?', + 'Download ICS' => 'Descarregar ICS', + 'Edit' => 'Editar', + 'Edit Event' => 'Editar esdeveniment', + 'Edit all events' => '', + 'Edit this and following events' => '', + 'Edit this event' => 'Edita aquest esdeveniment', + 'Email' => 'Correu electrònic', + 'Enable' => 'Habilita', + 'Enable Reminder' => 'Habilitar recordatori', + 'End' => '', + 'End Date' => 'Data final', + 'End Time' => 'Hora de finalització', + 'End time must be after start time!' => 'L\'hora final ha de ser després de l\'hora d\'inici!', + 'Event' => 'Esdeveniment', + 'Event Type' => 'Tipus d\'esdeveniment', + 'Event Types' => '', + 'Event could not be deleted!' => '', + 'Event has been be deleted!' => '', + 'Event not found!' => 'No s\'ha trobat l\'esdeveniment!', + 'Export as {type}' => '', + 'Files' => 'Arxius', + 'Filter' => 'Filtre', + 'Filter by types' => 'Filtrar per tipus', + 'Friday' => 'Divendres', + 'Here you can configure default settings for all calendar events.' => '', + 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => '', + 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', + 'Hour' => '', + 'I\'m attending' => 'Hi aniré', + 'ID' => 'ID', + 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', + 'In order to add events to your profile, you have to enable the calendar module first.' => 'Per afegir esdeveniments al vostre perfil, primer heu d\'activar el mòdul de calendari.', + 'Include participant information in exports' => '', + 'Interested' => 'Interessat', + 'Invalid date or time format!' => 'Data o format incorrecte!', + 'Invalid day of month given' => '', + 'Invalid event type id selected.' => 'Tipus d\'esdeveniment seleccionat incorrecte.', + 'Invalid frequency given' => '', + 'Invalid interval given' => '', + 'Invalid week day selection' => '', + 'Invite' => 'Convida', + 'Invited: {users}' => 'Convidar: {users}', + 'JWT Key' => '', + 'JWT Token Expiration' => '', + 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', + 'List' => 'Llista', + 'Location' => 'Ubicació', + 'Manage entries' => '', + 'Maximum number of participants' => 'Número màxim de participants', + 'Minute' => '', + 'Mode' => 'Mode', + 'Monday' => 'Dilluns', + 'Month' => 'Mes', + 'Monthly on day {dayOfMonth}' => '', + 'Monthly on the {position} {dayOfWeek}' => '', + 'Months' => '', + 'Never' => 'Mai', + 'Next' => 'Següent', + 'No new participants were added.' => 'No s\'han afegit nous participant.', + 'No new participants were invited.' => 'No s\'han convidat nous participant.', + 'No reminder' => '', + 'Notify participants about changes' => 'Notificar als participants dels canvis.', + 'On date' => '', + 'Participant removed.' => 'Participant eliminat.', + 'Participants' => 'Participants', + 'Participation Status' => '', + 'Please select new participants.' => 'Si us plau, selecciona nous participants.', + 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => '', + 'Profile Calendar' => 'Calendari de perfil', + 'Public' => 'Públic', + 'Recurring' => 'Recurrent', + 'Reopen Event' => 'Reobrir esdeveniment', + 'Repeat every' => '', + 'Saturday' => 'Dissabte', + 'Select calendar...' => '', + 'Select space...' => '', + 'Set reminder' => 'Establir recordatori', + 'Show past events' => '', + 'Start Date' => 'Data d\'inici', + 'Start Time' => 'Hora d\'inici', + 'Status cannot be updated.' => '', + 'Status updated.' => 'Estat actualitzat.', + 'Sunday' => 'Diumenge', + 'The event has already ended.' => 'Aquest esdeveniment ha finalitzat.', + 'This event does not support recurrent events' => '', + 'Thursday' => 'Dijous', + 'Time Zone' => 'Fus horari', + 'Title' => 'Títol', + 'Today' => 'Avui', + 'Tuesday' => 'Dimarts', + 'Upcoming {type}' => '', + 'Upcoming {type}: {title}' => '', + 'Use default reminder' => '', + 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', + 'User birthdays' => 'Aniversaris dels usuaris', + 'Wednesday' => 'Dimecres', + 'Week' => 'Setmana', + 'Weeks' => '', + 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', + 'Year' => 'Any', + 'Years' => '', + 'You cannot invite participants!' => 'No pots convidar participants!', + 'You don\'t have permission to delete this event!' => 'No tens permisos per eliminar aquest esdeveniment!', + 'You have an {type} coming up' => '', + 'You have an {type} coming up: {title}' => '', + 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', + 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', + 'You have been registered for the event "{contentTitle}".' => '', + 'Your reminder settings for event: \'{title}\'' => '', + 'canceled' => 'cancel·lat', + 'disabled' => 'discapacitat', + 'first' => '', + 'forth' => '', + 'global' => '', + 'iCal' => '', + 'in seconds. 0 for no JWT token expiration.' => '', + 'last' => '', + 'on weekdays' => '', + 'second' => '', + 'third' => '', + '{displayName} Birthday' => 'Aniversari de {displayName}', + '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} t\'ha afegit a un esdeveniment "{contentTitle}" a l\'espai {spaceName} que comença a {time}.', + '{displayName} added you to the event "{contentTitle}".' => '{displayName} t\'ha afegit a l\'esdeveniment "{contentTitle}".', + '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} t\'ha convidat a un esdeveniment "{contentTitle}" a l\'espai {spaceName} que comença a {time}.', + '{displayName} invited you to the event "{contentTitle}".' => '{displayName} t\'ha convidat a l\'esdeveniment "{contentTitle}".', + '{name} Calendar' => '', ]; diff --git a/messages/cs/base.php b/messages/cs/base.php index 02f20f39..824ee817 100644 --- a/messages/cs/base.php +++ b/messages/cs/base.php @@ -1,167 +1,166 @@ Add profile calendar' => 'Přidat profilový kalendář', - 'Adds a calendar for private or public events to your profile and main menu.' => 'Přidá kalendář s vašimi soukromými nebo veřejnými událostmi na váš profil a do hlavního menu.', - 'Adds an event calendar to this space.' => 'Přidá kalendář do tohoto prostoru.', - 'All Day' => 'Celý den', - 'Allows the user to create new calendar entries' => 'Umožňuje uživateli vytvářet nové záznamy v kalendáři.', - 'Allows the user to edit/delete existing calendar entries' => 'Umožňuje uživateli upravovat/mazat existující záznamy v kalendáři.', - 'Attending' => 'Zúčastnit se ', - 'Birthday' => 'Datum narození', - 'Calendar' => 'Kalendář', - 'Create entry' => 'Vytvořit položku', - 'Day' => 'Den', - 'Days' => 'Dny', - 'Delete all events' => 'Smazat všechny události', - 'Deleted' => 'Smazáno', - 'Description' => 'Popis', - 'Edit' => 'Upravit', - 'Edit all events' => 'Upravit všechny události', - 'Edit this event' => 'Upravit tuto událost', - 'Email' => 'E-mail', - 'Enable' => 'Dostupné', - 'End' => 'Konec', - 'End Date' => 'Datum konce', - 'End Time' => 'Čas konce', - 'End time must be after start time!' => 'Datum konce události musí následovat po začátku!', - 'Event' => 'Událost', - 'Event Types' => 'Typy událostí', - 'Event not found!' => 'Událost nebyla nenalezena!', - 'Files' => 'Soubory', - 'I\'m attending' => 'Zúčastním se', - 'ID' => 'ID', - 'In order to add events to your profile, you have to enable the calendar module first.' => 'Musíte mít nejprve aktivní modul kalendáře, aby jej bylo možné přidat na profil.', - 'Interested' => 'Zajímá mě ', - 'Invite' => 'Pozvat', - 'List' => 'Seznam', - 'Location' => 'Místo', - 'Manage entries' => 'Správa záznamů', - 'Month' => 'Měsíc', - 'Months' => 'Měsíce', - 'Never' => 'Nikdy', - 'Next' => 'Další', - 'Participants' => 'Účastníci', - 'Public' => 'Veřejné', - 'Start Date' => 'Datum začátku', - 'Start Time' => 'Čas začátku', - 'Time Zone' => 'Časové pásmo', - 'Title' => 'Název', - 'Today' => 'Dnes', - 'Week' => 'Týden', - 'Weeks' => 'Týdny', - 'Year' => 'Rok', - 'Years' => 'Let', - 'You don\'t have permission to delete this event!' => 'Nemáte oprávnění smazat tuto událost!', - 'disabled' => 'zakázáno', - 'first' => 'první', - 'forth' => 'dále', - 'last' => 'poslední', - 'on weekdays' => 've všední dny', - 'second' => 'druhý', - 'third' => 'třetí', - 'Choose target calendar' => '', - 'Reminder settings' => '', - 'Add all Space members with status {status}' => '', - 'Add participants...' => '', - 'Added: {users}' => '', - 'Additional Information for participants' => '', - 'After (occurrences)' => '', - 'Allow option \'Decline\'' => '', - 'Allow option \'Undecided\'' => '', - 'Also include participant email addresses' => '', - 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', - 'By upcoming events first' => '', - 'CalDAV' => '', - 'Calendar event' => '', - 'Calendar event content ID' => '', - 'Calendar events' => '', - 'Cancel Event' => '', - 'Cannot remove the participant!' => '', - 'Custom reminder' => '', - 'Default reminder settings' => '', - 'Display events within the next X days' => '', - 'Do you want to install this module on your profile?' => '', - 'Download ICS' => '', - 'Edit Event' => '', - 'Edit this and following events' => '', - 'Enable Reminder' => '', - 'Event Type' => '', - 'Event could not be deleted!' => '', - 'Event has been be deleted!' => '', - 'Export as {type}' => '', - 'Filter' => '', - 'Filter by types' => '', - 'Friday' => '', - 'Here you can configure default settings for all calendar events.' => '', - 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => '', - 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', - 'Hour' => '', - 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', - 'Include participant information in exports' => '', - 'Invalid date or time format!' => '', - 'Invalid day of month given' => '', - 'Invalid event type id selected.' => '', - 'Invalid frequency given' => '', - 'Invalid interval given' => '', - 'Invalid week day selection' => '', - 'Invited: {users}' => '', - 'JWT Key' => '', - 'JWT Token Expiration' => '', - 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', - 'Maximum number of participants' => '', - 'Minute' => '', - 'Mode' => '', - 'Monday' => '', - 'Monthly on day {dayOfMonth}' => '', - 'Monthly on the {position} {dayOfWeek}' => '', - 'No new participants were added.' => '', - 'No new participants were invited.' => '', - 'No reminder' => '', - 'Notify participants about changes' => '', - 'On date' => '', - 'Participant removed.' => '', - 'Participation Status' => '', - 'Please select new participants.' => '', - 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => '', - 'Profile Calendar' => '', - 'Recurring' => '', - 'Reopen Event' => '', - 'Repeat every' => '', - 'Saturday' => '', - 'Select calendar...' => '', - 'Select space...' => '', - 'Set reminder' => '', - 'Show past events' => '', - 'Status cannot be updated.' => '', - 'Status updated.' => '', - 'Sunday' => '', - 'The event has already ended.' => '', - 'This event does not support recurrent events' => '', - 'Thursday' => '', - 'Tuesday' => '', - 'Upcoming {type}' => '', - 'Upcoming {type}: {title}' => '', - 'Use default reminder' => '', - 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', - 'User birthdays' => '', - 'Wednesday' => '', - 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', - 'You cannot invite participants!' => '', - 'You have an {type} coming up' => '', - 'You have an {type} coming up: {title}' => '', - 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', - 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', - 'You have been registered for the event "{contentTitle}".' => '', - 'Your reminder settings for event: \'{title}\'' => '', - 'canceled' => '', - 'global' => '', - 'iCal' => '', - 'in seconds. 0 for no JWT token expiration.' => '', - '{displayName} Birthday' => '', - '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', - '{displayName} added you to the event "{contentTitle}".' => '', - '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', - '{displayName} invited you to the event "{contentTitle}".' => '', - '{name} Calendar' => '', + 'Add profile calendar' => 'Přidat profilový kalendář', + 'Choose target calendar' => '', + 'Reminder settings' => '', + 'Add all Space members with status {status}' => '', + 'Add participants...' => '', + 'Added: {users}' => '', + 'Additional Information for participants' => '', + 'Adds a calendar for private or public events to your profile and main menu.' => 'Přidá kalendář s vašimi soukromými nebo veřejnými událostmi na váš profil a do hlavního menu.', + 'Adds an event calendar to this space.' => 'Přidá kalendář do tohoto prostoru.', + 'After (occurrences)' => '', + 'All Day' => 'Celý den', + 'Allow option \'Decline\'' => '', + 'Allow option \'Undecided\'' => '', + 'Allows the user to create new calendar entries' => 'Umožňuje uživateli vytvářet nové záznamy v kalendáři.', + 'Allows the user to edit/delete existing calendar entries' => 'Umožňuje uživateli upravovat/mazat existující záznamy v kalendáři.', + 'Also include participant email addresses' => '', + 'Attending' => 'Zúčastnit se ', + 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', + 'Birthday' => 'Datum narození', + 'By upcoming events first' => '', + 'CalDAV' => '', + 'Calendar' => 'Kalendář', + 'Calendar event' => '', + 'Calendar event content ID' => '', + 'Calendar events' => '', + 'Cancel Event' => '', + 'Cannot remove the participant!' => '', + 'Create entry' => 'Vytvořit položku', + 'Custom reminder' => '', + 'Day' => 'Den', + 'Days' => 'Dny', + 'Default reminder settings' => '', + 'Delete all events' => 'Smazat všechny události', + 'Deleted' => 'Smazáno', + 'Description' => 'Popis', + 'Display events within the next X days' => '', + 'Do you want to install this module on your profile?' => '', + 'Download ICS' => '', + 'Edit' => 'Upravit', + 'Edit Event' => '', + 'Edit all events' => 'Upravit všechny události', + 'Edit this and following events' => '', + 'Edit this event' => 'Upravit tuto událost', + 'Email' => 'E-mail', + 'Enable' => 'Dostupné', + 'Enable Reminder' => '', + 'End' => 'Konec', + 'End Date' => 'Datum konce', + 'End Time' => 'Čas konce', + 'End time must be after start time!' => 'Datum konce události musí následovat po začátku!', + 'Event' => 'Událost', + 'Event Type' => '', + 'Event Types' => 'Typy událostí', + 'Event could not be deleted!' => '', + 'Event has been be deleted!' => '', + 'Event not found!' => 'Událost nebyla nenalezena!', + 'Export as {type}' => '', + 'Files' => 'Soubory', + 'Filter' => 'Filtr', + 'Filter by types' => '', + 'Friday' => '', + 'Here you can configure default settings for all calendar events.' => '', + 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => '', + 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', + 'Hour' => '', + 'I\'m attending' => 'Zúčastním se', + 'ID' => 'ID', + 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', + 'In order to add events to your profile, you have to enable the calendar module first.' => 'Musíte mít nejprve aktivní modul kalendáře, aby jej bylo možné přidat na profil.', + 'Include participant information in exports' => '', + 'Interested' => 'Zajímá mě ', + 'Invalid date or time format!' => '', + 'Invalid day of month given' => '', + 'Invalid event type id selected.' => '', + 'Invalid frequency given' => '', + 'Invalid interval given' => '', + 'Invalid week day selection' => '', + 'Invite' => 'Pozvat', + 'Invited: {users}' => '', + 'JWT Key' => '', + 'JWT Token Expiration' => '', + 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', + 'List' => 'Seznam', + 'Location' => 'Místo', + 'Manage entries' => 'Správa záznamů', + 'Maximum number of participants' => '', + 'Minute' => '', + 'Mode' => '', + 'Monday' => '', + 'Month' => 'Měsíc', + 'Monthly on day {dayOfMonth}' => '', + 'Monthly on the {position} {dayOfWeek}' => '', + 'Months' => 'Měsíce', + 'Never' => 'Nikdy', + 'Next' => 'Další', + 'No new participants were added.' => '', + 'No new participants were invited.' => '', + 'No reminder' => '', + 'Notify participants about changes' => '', + 'On date' => '', + 'Participant removed.' => '', + 'Participants' => 'Účastníci', + 'Participation Status' => '', + 'Please select new participants.' => '', + 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => '', + 'Profile Calendar' => '', + 'Public' => 'Veřejné', + 'Recurring' => '', + 'Reopen Event' => '', + 'Repeat every' => '', + 'Saturday' => '', + 'Select calendar...' => '', + 'Select space...' => '', + 'Set reminder' => '', + 'Show past events' => '', + 'Start Date' => 'Datum začátku', + 'Start Time' => 'Čas začátku', + 'Status cannot be updated.' => '', + 'Status updated.' => '', + 'Sunday' => '', + 'The event has already ended.' => '', + 'This event does not support recurrent events' => '', + 'Thursday' => '', + 'Time Zone' => 'Časové pásmo', + 'Title' => 'Název', + 'Today' => 'Dnes', + 'Tuesday' => '', + 'Upcoming {type}' => '', + 'Upcoming {type}: {title}' => '', + 'Use default reminder' => '', + 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', + 'User birthdays' => '', + 'Wednesday' => '', + 'Week' => 'Týden', + 'Weeks' => 'Týdny', + 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', + 'Year' => 'Rok', + 'Years' => 'Let', + 'You cannot invite participants!' => '', + 'You don\'t have permission to delete this event!' => 'Nemáte oprávnění smazat tuto událost!', + 'You have an {type} coming up' => '', + 'You have an {type} coming up: {title}' => '', + 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', + 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', + 'You have been registered for the event "{contentTitle}".' => '', + 'Your reminder settings for event: \'{title}\'' => '', + 'canceled' => '', + 'disabled' => 'zakázáno', + 'first' => 'první', + 'forth' => 'dále', + 'global' => '', + 'iCal' => '', + 'in seconds. 0 for no JWT token expiration.' => '', + 'last' => 'poslední', + 'on weekdays' => 've všední dny', + 'second' => 'druhý', + 'third' => 'třetí', + '{displayName} Birthday' => '', + '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', + '{displayName} added you to the event "{contentTitle}".' => '', + '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', + '{displayName} invited you to the event "{contentTitle}".' => '', + '{name} Calendar' => '', ]; diff --git a/messages/da/base.php b/messages/da/base.php index 7d854fbc..01c26277 100644 --- a/messages/da/base.php +++ b/messages/da/base.php @@ -1,167 +1,166 @@ Add profile calendar' => 'Tilføj profilkalender', - 'Choose target calendar' => 'Vælg målkalender', - 'Reminder settings' => 'Indstillinger for påmindelse.', - 'Add all Space members with status {status}' => 'Tilføj alle medlemmer af rum med status {status}', - 'Add participants...' => 'Tilføj deltagere...', - 'Added: {users}' => 'Tilføjet: {users}', - 'Additional Information for participants' => 'Yderligere information til deltagerne', - 'Adds a calendar for private or public events to your profile and main menu.' => 'Tilføjer en kalender for private eller offentlige begivenheder til din profil og hovedmenu.', - 'Adds an event calendar to this space.' => 'Tilføjer en begivenhedskalender til dette rum.', - 'After (occurrences)' => 'Efter (occurrences)', - 'All Day' => 'Hele dagen', - 'Allow option \'Decline\'' => 'Tillad indstillingen \'Afvis\'', - 'Allow option \'Undecided\'' => 'Tillad valgmuligheden \'Ubeslutsom\'', - 'Allows the user to create new calendar entries' => 'Giver brugeren mulighed for at oprette nye kalenderposter', - 'Allows the user to edit/delete existing calendar entries' => 'Giver brugeren mulighed for at redigere/slette eksisterende kalenderposter', - 'Attending' => 'Deltager', - 'Before a target calendar can be selected, the module must be activated in at least one Space.' => 'Før der kan vælges en målkalender, skal modulet være aktiveret i mindst ét rum.', - 'Birthday' => 'Fødselsdag', - 'CalDAV' => 'CalDAV', - 'Calendar' => 'Kalender', - 'Calendar event' => 'Kalenderbegivenhed', - 'Calendar event content ID' => 'ID for indhold i kalenderbegivenhed', - 'Calendar events' => 'Kalenderbegivenheder', - 'Cancel Event' => 'Annullér begivenhed', - 'Cannot remove the participant!' => 'Kan ikke fjerne deltageren!', - 'Create entry' => 'Opret post', - 'Custom reminder' => 'Tilpasset påmindelse', - 'Day' => 'Dag', - 'Days' => 'Dage', - 'Default reminder settings' => 'Standardindstillinger for påmindelser', - 'Delete all events' => 'Slet alle begivenheder', - 'Deleted' => 'Slettet', - 'Description' => 'Beskrivelse', - 'Display events within the next X days' => 'Vis begivenheder inden for de næste X dage', - 'Do you want to install this module on your profile?' => 'Vil du installere dette modul på din profil?', - 'Download ICS' => 'Download ICS', - 'Edit' => 'Rediger', - 'Edit Event' => 'Rediger begivenhed', - 'Edit all events' => 'Rediger alle begivenheder', - 'Edit this and following events' => 'Rediger denne og følgende begivenheder', - 'Edit this event' => 'Rediger denne begivenhed', - 'Email' => 'E-mail', - 'Enable' => 'Aktivér', - 'Enable Reminder' => 'Aktivér påmindelse', - 'End' => 'Slut', - 'End Date' => 'Slutdato', - 'End Time' => 'Sluttidspunkt', - 'End time must be after start time!' => 'Sluttidspunktet skal være efter starttidspunktet!', - 'Event' => 'Begivenhed', - 'Event Type' => 'Begivenhedstype', - 'Event Types' => 'Begivenhedstyper', - 'Event could not be deleted!' => 'Begivenheden kunne ikke slettes!', - 'Event has been be deleted!' => 'Event has been be deleted!', - 'Event not found!' => 'Begivenhed ikke fundet!', - 'Export as {type}' => 'Eksporter som {type}', - 'Files' => 'Filer', - 'Filter by types' => 'Filtrer efter typer', - 'Friday' => 'Fredag', - 'Here you can configure default settings for all calendar events.' => 'Her kan du konfigurere standardindstillinger for alle kalenderbegivenheder.', - 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => 'Her kan du konfigurere globale standardpåmindelser. Disse indstillinger kan overskrives på rum-/profilniveau.', - 'Hour' => 'Time', - 'I\'m attending' => 'Jeg deltager', - 'ID' => 'ID', - 'In order to add events to your profile, you have to enable the calendar module first.' => 'For at kunne tilføje begivenheder til din profil skal du først aktivere kalendermodulet.', - 'Interested' => 'Interesseret', - 'Invalid date or time format!' => 'Ugyldigt dato- eller tidsformat!', - 'Invalid day of month given' => 'Ugyldig dag i måneden angivet', - 'Invalid event type id selected.' => 'Ugyldigt id for valgt begivenhedstype.', - 'Invalid frequency given' => 'Ugyldig frekvens angivet', - 'Invalid interval given' => 'Ugyldigt interval angivet', - 'Invalid week day selection' => 'Ugyldig valg af ugedag', - 'Invite' => 'Invitér', - 'Invited: {users}' => 'Inviteret: {users}', - 'JWT Key' => 'JWT-nøgle', - 'JWT Token Expiration' => 'Udløb af JWT-token', - 'Leave empty to list all events. Enter 0 to display only today\'s events.' => 'Lad det være tomt for at vise alle begivenheder. Indtast 0 for kun at vise dagens begivenheder.', - 'List' => 'Liste', - 'Location' => 'Sted', - 'Manage entries' => 'Administrer poster', - 'Maximum number of participants' => 'Maksimalt antal deltagere', - 'Minute' => 'Minut', - 'Mode' => 'Tilstand', - 'Monday' => 'Mandag', - 'Month' => 'Måned', - 'Monthly on day {dayOfMonth}' => 'Månedligt på dagen {dayOfMonth}', - 'Monthly on the {position} {dayOfWeek}' => 'Månedligt på den {position} {dayOfWeek}', - 'Months' => 'Måneder', - 'Never' => 'Aldrig', - 'Next' => 'Næste', - 'No new participants were added.' => 'Ingen nye deltagere blev tilføjet.', - 'No new participants were invited.' => 'Ingen nye deltagere var inviteret.', - 'No reminder' => 'Ingen påmindelse', - 'Notify participants about changes' => 'Underret deltagere om ændringer', - 'On date' => 'På dato', - 'Participant removed.' => 'Deltager fjernet.', - 'Participants' => 'Deltagere', - 'Participation Status' => 'Deltagelsesstatus', - 'Please select new participants.' => 'Vælg venligst nye deltagere.', - 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => 'Private begivenheder er kun synlige for dig og, hvis venskabssystemet er aktiveret, for dine venner.', - 'Profile Calendar' => 'Profilkalender', - 'Public' => 'Offentlig', - 'Recurring' => 'Tilbagevendende', - 'Reopen Event' => 'Åbn begivenhed igen', - 'Repeat every' => 'Gentag hver', - 'Saturday' => 'Lørdag', - 'Select calendar...' => 'Vælg kalender...', - 'Select space...' => 'Vælg rum...', - 'Set reminder' => 'Indstil påmindelse', - 'Show past events' => 'Vis tidligere begivenheder', - 'Start Date' => 'Startdato', - 'Start Time' => 'Starttidspunkt', - 'Status cannot be updated.' => 'Status kan ikke opdateres.', - 'Status updated.' => 'Status opdateret.', - 'Sunday' => 'Søndag', - 'The event has already ended.' => 'Begivenheden er allerede slut.', - 'This event does not support recurrent events' => 'Denne begivenhed understøtter ikke tilbagevendende begivenheder', - 'Thursday' => 'Torsdag', - 'Time Zone' => 'Tidszone', - 'Title' => 'Titel', - 'Today' => 'I dag', - 'Tuesday' => 'Tirsdag', - 'Upcoming {type}' => 'Kommende {type}', - 'Upcoming {type}: {title}' => 'Kommende {type}: {title}', - 'Use default reminder' => 'Brug standardpåmindelse', - 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => 'Bruges til sikker generering af iCal-feed-URL\'er og CalDAV-godkendelse. Hvis du ændrer denne nøgle, tilbagekaldes alle eksisterende iCal-URL\'er og CalDAV-logins. Hvis den er tom, genereres der automatisk en tilfældig nøgle.', - 'User birthdays' => 'Brugeres fødselsdage', - 'Wednesday' => 'Onsdag', - 'Week' => 'Uge', - 'Weeks' => 'Uger', - 'Year' => 'År', - 'Years' => 'År', - 'You cannot invite participants!' => 'Du kan ikke invitere deltagere!', - 'You don\'t have permission to delete this event!' => 'Du har ikke tilladelse til at slette denne begivenhed!', - 'You have an {type} coming up' => 'Du har en {type} på vej', - 'You have an {type} coming up: {title}' => 'Du har en {type} på vej: {title}', - 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => 'Du er blevet tilmeldt begivenheden "{contentTitle}" i {spaceName}, med start kl. {time}', - 'You have been registered for the event "{contentTitle}", starting at {time}.' => 'Du er blevet tilmeldt begivenheden"{contentTitle}", med start kl. {time}.', - 'You have been registered for the event "{contentTitle}".' => 'Du er blevet tilmeldt begivenheden" {contentTitle}".', - 'Your reminder settings for event: \'{title}\'' => 'Dine påmindelsesindstillinger for begivenhed: \'{title}\'', - 'canceled' => 'aflyst', - 'disabled' => 'handicappede', - 'first' => 'første', - 'forth' => 'frem', - 'global' => 'globalt', - 'iCal' => 'iCal', - 'in seconds. 0 for no JWT token expiration.' => 'i sekunder. 0 for ingen udløb af JWT-token.', - 'last' => 'sidste', - 'on weekdays' => 'på hverdage', - 'second' => 'anden', - 'third' => 'tredje', - '{displayName} Birthday' => '{displayName} fødselsdag', - '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} føjede dig til begivenheden "{contentTitle}" i rummet {spaceName}, med start kl. {time}.', - '{displayName} added you to the event "{contentTitle}".' => '{displayName} tilføjede dig til begivenheden "{contentTitle}".', - '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} inviterede dig til begivenheden"{contentTitle}" i rummet {spaceName}, med start kl. {time}.', - '{displayName} invited you to the event "{contentTitle}".' => '{displayName} invited you to the event "{contentTitle}".', - '{name} Calendar' => '{name} Kalender', - 'Also include participant email addresses' => '', - 'By upcoming events first' => '', - 'Filter' => '', - 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', - 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', - 'Include participant information in exports' => '', - 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', + 'Add profile calendar' => 'Tilføj profilkalender', + 'Choose target calendar' => 'Vælg målkalender', + 'Reminder settings' => 'Indstillinger for påmindelse.', + 'Add all Space members with status {status}' => 'Tilføj alle medlemmer af rum med status {status}', + 'Add participants...' => 'Tilføj deltagere...', + 'Added: {users}' => 'Tilføjet: {users}', + 'Additional Information for participants' => 'Yderligere information til deltagerne', + 'Adds a calendar for private or public events to your profile and main menu.' => 'Tilføjer en kalender for private eller offentlige begivenheder til din profil og hovedmenu.', + 'Adds an event calendar to this space.' => 'Tilføjer en begivenhedskalender til dette rum.', + 'After (occurrences)' => 'Efter (occurrences)', + 'All Day' => 'Hele dagen', + 'Allow option \'Decline\'' => 'Tillad indstillingen \'Afvis\'', + 'Allow option \'Undecided\'' => 'Tillad valgmuligheden \'Ubeslutsom\'', + 'Allows the user to create new calendar entries' => 'Giver brugeren mulighed for at oprette nye kalenderposter', + 'Allows the user to edit/delete existing calendar entries' => 'Giver brugeren mulighed for at redigere/slette eksisterende kalenderposter', + 'Also include participant email addresses' => '', + 'Attending' => 'Deltager', + 'Before a target calendar can be selected, the module must be activated in at least one Space.' => 'Før der kan vælges en målkalender, skal modulet være aktiveret i mindst ét rum.', + 'Birthday' => 'Fødselsdag', + 'By upcoming events first' => '', + 'CalDAV' => 'CalDAV', + 'Calendar' => 'Kalender', + 'Calendar event' => 'Kalenderbegivenhed', + 'Calendar event content ID' => 'ID for indhold i kalenderbegivenhed', + 'Calendar events' => 'Kalenderbegivenheder', + 'Cancel Event' => 'Annullér begivenhed', + 'Cannot remove the participant!' => 'Kan ikke fjerne deltageren!', + 'Create entry' => 'Opret post', + 'Custom reminder' => 'Tilpasset påmindelse', + 'Day' => 'Dag', + 'Days' => 'Dage', + 'Default reminder settings' => 'Standardindstillinger for påmindelser', + 'Delete all events' => 'Slet alle begivenheder', + 'Deleted' => 'Slettet', + 'Description' => 'Beskrivelse', + 'Display events within the next X days' => 'Vis begivenheder inden for de næste X dage', + 'Do you want to install this module on your profile?' => 'Vil du installere dette modul på din profil?', + 'Download ICS' => 'Download ICS', + 'Edit' => 'Rediger', + 'Edit Event' => 'Rediger begivenhed', + 'Edit all events' => 'Rediger alle begivenheder', + 'Edit this and following events' => 'Rediger denne og følgende begivenheder', + 'Edit this event' => 'Rediger denne begivenhed', + 'Email' => 'E-mail', + 'Enable' => 'Aktivér', + 'Enable Reminder' => 'Aktivér påmindelse', + 'End' => 'Slut', + 'End Date' => 'Slutdato', + 'End Time' => 'Sluttidspunkt', + 'End time must be after start time!' => 'Sluttidspunktet skal være efter starttidspunktet!', + 'Event' => 'Begivenhed', + 'Event Type' => 'Begivenhedstype', + 'Event Types' => 'Begivenhedstyper', + 'Event could not be deleted!' => 'Begivenheden kunne ikke slettes!', + 'Event has been be deleted!' => 'Event has been be deleted!', + 'Event not found!' => 'Begivenhed ikke fundet!', + 'Export as {type}' => 'Eksporter som {type}', + 'Files' => 'Filer', + 'Filter' => 'Filter', + 'Filter by types' => 'Filtrer efter typer', + 'Friday' => 'Fredag', + 'Here you can configure default settings for all calendar events.' => 'Her kan du konfigurere standardindstillinger for alle kalenderbegivenheder.', + 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => 'Her kan du konfigurere globale standardpåmindelser. Disse indstillinger kan overskrives på rum-/profilniveau.', + 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', + 'Hour' => 'Time', + 'I\'m attending' => 'Jeg deltager', + 'ID' => 'ID', + 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', + 'In order to add events to your profile, you have to enable the calendar module first.' => 'For at kunne tilføje begivenheder til din profil skal du først aktivere kalendermodulet.', + 'Include participant information in exports' => '', + 'Interested' => 'Interesseret', + 'Invalid date or time format!' => 'Ugyldigt dato- eller tidsformat!', + 'Invalid day of month given' => 'Ugyldig dag i måneden angivet', + 'Invalid event type id selected.' => 'Ugyldigt id for valgt begivenhedstype.', + 'Invalid frequency given' => 'Ugyldig frekvens angivet', + 'Invalid interval given' => 'Ugyldigt interval angivet', + 'Invalid week day selection' => 'Ugyldig valg af ugedag', + 'Invite' => 'Invitér', + 'Invited: {users}' => 'Inviteret: {users}', + 'JWT Key' => 'JWT-nøgle', + 'JWT Token Expiration' => 'Udløb af JWT-token', + 'Leave empty to list all events. Enter 0 to display only today\'s events.' => 'Lad det være tomt for at vise alle begivenheder. Indtast 0 for kun at vise dagens begivenheder.', + 'List' => 'Liste', + 'Location' => 'Sted', + 'Manage entries' => 'Administrer poster', + 'Maximum number of participants' => 'Maksimalt antal deltagere', + 'Minute' => 'Minut', + 'Mode' => 'Tilstand', + 'Monday' => 'Mandag', + 'Month' => 'Måned', + 'Monthly on day {dayOfMonth}' => 'Månedligt på dagen {dayOfMonth}', + 'Monthly on the {position} {dayOfWeek}' => 'Månedligt på den {position} {dayOfWeek}', + 'Months' => 'Måneder', + 'Never' => 'Aldrig', + 'Next' => 'Næste', + 'No new participants were added.' => 'Ingen nye deltagere blev tilføjet.', + 'No new participants were invited.' => 'Ingen nye deltagere var inviteret.', + 'No reminder' => 'Ingen påmindelse', + 'Notify participants about changes' => 'Underret deltagere om ændringer', + 'On date' => 'På dato', + 'Participant removed.' => 'Deltager fjernet.', + 'Participants' => 'Deltagere', + 'Participation Status' => 'Deltagelsesstatus', + 'Please select new participants.' => 'Vælg venligst nye deltagere.', + 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => 'Private begivenheder er kun synlige for dig og, hvis venskabssystemet er aktiveret, for dine venner.', + 'Profile Calendar' => 'Profilkalender', + 'Public' => 'Offentlig', + 'Recurring' => 'Tilbagevendende', + 'Reopen Event' => 'Åbn begivenhed igen', + 'Repeat every' => 'Gentag hver', + 'Saturday' => 'Lørdag', + 'Select calendar...' => 'Vælg kalender...', + 'Select space...' => 'Vælg rum...', + 'Set reminder' => 'Indstil påmindelse', + 'Show past events' => 'Vis tidligere begivenheder', + 'Start Date' => 'Startdato', + 'Start Time' => 'Starttidspunkt', + 'Status cannot be updated.' => 'Status kan ikke opdateres.', + 'Status updated.' => 'Status opdateret.', + 'Sunday' => 'Søndag', + 'The event has already ended.' => 'Begivenheden er allerede slut.', + 'This event does not support recurrent events' => 'Denne begivenhed understøtter ikke tilbagevendende begivenheder', + 'Thursday' => 'Torsdag', + 'Time Zone' => 'Tidszone', + 'Title' => 'Titel', + 'Today' => 'I dag', + 'Tuesday' => 'Tirsdag', + 'Upcoming {type}' => 'Kommende {type}', + 'Upcoming {type}: {title}' => 'Kommende {type}: {title}', + 'Use default reminder' => 'Brug standardpåmindelse', + 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => 'Bruges til sikker generering af iCal-feed-URL\'er og CalDAV-godkendelse. Hvis du ændrer denne nøgle, tilbagekaldes alle eksisterende iCal-URL\'er og CalDAV-logins. Hvis den er tom, genereres der automatisk en tilfældig nøgle.', + 'User birthdays' => 'Brugeres fødselsdage', + 'Wednesday' => 'Onsdag', + 'Week' => 'Uge', + 'Weeks' => 'Uger', + 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', + 'Year' => 'År', + 'Years' => 'År', + 'You cannot invite participants!' => 'Du kan ikke invitere deltagere!', + 'You don\'t have permission to delete this event!' => 'Du har ikke tilladelse til at slette denne begivenhed!', + 'You have an {type} coming up' => 'Du har en {type} på vej', + 'You have an {type} coming up: {title}' => 'Du har en {type} på vej: {title}', + 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => 'Du er blevet tilmeldt begivenheden "{contentTitle}" i {spaceName}, med start kl. {time}', + 'You have been registered for the event "{contentTitle}", starting at {time}.' => 'Du er blevet tilmeldt begivenheden"{contentTitle}", med start kl. {time}.', + 'You have been registered for the event "{contentTitle}".' => 'Du er blevet tilmeldt begivenheden" {contentTitle}".', + 'Your reminder settings for event: \'{title}\'' => 'Dine påmindelsesindstillinger for begivenhed: \'{title}\'', + 'canceled' => 'aflyst', + 'disabled' => 'handicappede', + 'first' => 'første', + 'forth' => 'frem', + 'global' => 'globalt', + 'iCal' => 'iCal', + 'in seconds. 0 for no JWT token expiration.' => 'i sekunder. 0 for ingen udløb af JWT-token.', + 'last' => 'sidste', + 'on weekdays' => 'på hverdage', + 'second' => 'anden', + 'third' => 'tredje', + '{displayName} Birthday' => '{displayName} fødselsdag', + '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} føjede dig til begivenheden "{contentTitle}" i rummet {spaceName}, med start kl. {time}.', + '{displayName} added you to the event "{contentTitle}".' => '{displayName} tilføjede dig til begivenheden "{contentTitle}".', + '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} inviterede dig til begivenheden"{contentTitle}" i rummet {spaceName}, med start kl. {time}.', + '{displayName} invited you to the event "{contentTitle}".' => '{displayName} invited you to the event "{contentTitle}".', + '{name} Calendar' => '{name} Kalender', ]; diff --git a/messages/el/base.php b/messages/el/base.php index 2acba97e..2cc63baf 100644 --- a/messages/el/base.php +++ b/messages/el/base.php @@ -1,167 +1,166 @@ Add profile calendar' => 'Προσθήκη ημερολογίου προφίλ', - 'Choose target calendar' => 'Επιλέξτε στοχευόμενο ημερολόγιο', - 'Reminder settings' => 'Ρυθμίσεις Υπενθυμίσεων', - 'Adds a calendar for private or public events to your profile and main menu.' => 'Προσθέτει ημερολόγιο για ιδιωτικά ή δημόσια συμβάντα στο προφίλ σας και στο κύριο μενού.', - 'Adds an event calendar to this space.' => 'Προσθέτει ένα ημερολόγιο εκδηλώσεων σε αυτόν τον χώρο.', - 'After (occurrences)' => 'Μετά (εμφανίσεις)', - 'All Day' => 'Όλη μέρα', - 'Allows the user to create new calendar entries' => 'Επιτρέπει στον χρήστη τη δημιουργία νέων καταχωρήσεων ημερολογίου', - 'Allows the user to edit/delete existing calendar entries' => 'Επιτρέπει στον χρήστη να επεξεργάζεται/διαγράφει τις υπάρχουσες καταχωρήσεις ημερολογίου', - 'Attending' => 'Συμμετοχή', - 'Birthday' => 'Γενέθλια', - 'Calendar' => 'Ημερολόγιο', - 'Cancel Event' => 'Ακύρωση Εκδήλωσης', - 'Create entry' => 'Δημιουργία καταχώρησης', - 'Custom reminder' => 'Προσαρμοσμένη υπενθύμιση', - 'Day' => 'Ημέρα', - 'Days' => 'Ημέρες', - 'Default reminder settings' => 'Προεπιλεγμένες ρυθμίσεις υπενθύμισης', - 'Delete all events' => 'Διαγραφή όλων των συμβάντων', - 'Description' => 'Περιγραφή', - 'Do you want to install this module on your profile?' => 'Θέλετε να εγκαταστήσετε αυτήν την ενότητα στο προφίλ σας;', - 'Edit' => 'Επεξεργασία', - 'Edit all events' => 'Επεξεργασία όλων των συμβάντων', - 'Edit this and following events' => 'Επεξεργαστείτε αυτό και τα επόμενα συμβάντα', - 'Edit this event' => 'Επεξεργαστείτε αυτό το συμβάν', - 'Enable' => 'Ενεργοποίηση', - 'End' => 'Τέλος', - 'End Date' => 'Ημερομηνία λήξης', - 'End Time' => 'Ώρα Λήξης', - 'End time must be after start time!' => 'Η ώρα λήξης πρέπει να είναι μετά την ώρα έναρξης!', - 'Event' => 'Εκδήλωση', - 'Event Type' => 'Τύπος Εκδήλωσης', - 'Event Types' => 'Τύποι εκδηλώσεων', - 'Event not found!' => 'Η εκδήλωση δεν βρέθηκε!', - 'Files' => 'Αρχεία', - 'Friday' => 'Παρασκευή', - 'Here you can configure default settings for all calendar events.' => 'Εδώ μπορείτε να ρυθμίσετε τις προεπιλεγμένες ρυθμίσεις για όλα τα συμβάντα ημερολογίου.', - 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => 'Εδώ μπορείτε να ρυθμίσετε τις προεπιλεγμένες υπενθυμίσεις για προεπιλογή. Αυτές οι ρυθμίσεις μπορούν να αντικατασταθούν στο επίπεδο χώρου / προφίλ.', - 'Hour' => 'Ωρα', - 'I\'m attending' => 'Παρακολουθώ', - 'ID' => 'Ταυτότητα', - 'In order to add events to your profile, you have to enable the calendar module first.' => 'Για να προσθέσετε συμβάντα στο προφίλ σας, πρέπει πρώτα να ενεργοποιήσετε τη μονάδα ημερολογίου.', - 'Interested' => 'Ενδιαφέρον', - 'Invalid date or time format!' => 'Μη έγκυρη μορφή ημερομηνίας ή ώρας!', - 'Invalid day of month given' => 'Μη έγκυρη ημέρα του μήνα', - 'Invalid event type id selected.' => 'Επιλέχθηκε μη έγκυρος τύπος ταυτότητας εκδήλωσης.', - 'Invalid frequency given' => 'Έχει δοθεί μη έγκυρη συχνότητα', - 'Invalid interval given' => 'Έχει δοθεί μη έγκυρο διάστημα', - 'Invalid week day selection' => 'Μη έγκυρη επιλογή ημέρας εβδομάδας', - 'Invite' => 'Προσκάλεσε', - 'Location' => 'Τοποθεσία', - 'Manage entries' => 'Διαχείριση καταχωρήσεων', - 'Maximum number of participants' => 'Μέγιστος αριθμός συμμετεχόντων', - 'Monday' => 'Δευτέρα', - 'Month' => 'Μήνας', - 'Monthly on day {dayOfMonth}' => 'Μηνιαία την ημέρα {dayOfMonth}', - 'Monthly on the {position} {dayOfWeek}' => 'Μηνιαία στην {θέση} {dayOfWeek}', - 'Months' => 'Μήνες', - 'Never' => 'Ποτέ', - 'Next' => 'Επόμενο', - 'No reminder' => 'Χωρίς υπενθύμιση', - 'On date' => 'Τη μέρα', - 'Participants' => 'Συμμετέχοντες', - 'Profile Calendar' => 'Προφίλ Ημερολογίου', - 'Public' => 'Δημόσιο', - 'Recurring' => 'Επαναλαμβανόμενο', - 'Reopen Event' => 'Εκ νέου Άνοιγμα Εκδήλωσης', - 'Repeat every' => 'Επαναλάβετε κάθε', - 'Saturday' => 'Σάββατο', - 'Set reminder' => 'Ορισμός υπενθύμισης', - 'Start Date' => 'Ημερομηνία έναρξης', - 'Start Time' => 'Ωρα έναρξης', - 'Sunday' => 'Κυριακή', - 'This event does not support recurrent events' => 'Αυτό το γεγονός δεν υποστηρίζει επαναλαμβανόμενα συμβάντα', - 'Thursday' => 'Πέμπτη', - 'Time Zone' => 'Ζώνη Ώρας', - 'Title' => 'Τίτλος', - 'Tuesday' => 'Τρίτη', - 'Upcoming {type}' => 'Προσεχές {type}', - 'Upcoming {type}: {title}' => 'Προσεχές {type}: {title}', - 'Use default reminder' => 'Χρήση προεπιλεγμένης υπενθύμισης', - 'User birthdays' => 'Γενέθλια Χρηστών', - 'Wednesday' => 'Τετάρτη', - 'Week' => 'Εβδομάδα', - 'Weeks' => 'Εβδομάδες', - 'Year' => 'Ετος', - 'Years' => 'Χρόνια', - 'You don\'t have permission to delete this event!' => 'Δεν έχετε δικαίωμα να διαγράψετε αυτή την εκδήλωση!', - 'You have an {type} coming up' => 'Έχεις {type} που έρχεται', - 'You have an {type} coming up: {title}' => 'Έχεις {type} που έρχεται: {title}', - 'Your reminder settings for event: \'{title}\'' => 'Ρυθμίσεις υπενθύμισης σας για το συμβάν: \'{title}\'', - 'canceled' => 'ακυρώθηκε', - 'disabled' => 'άτομα με ειδικές ανάγκες', - 'first' => 'πρώτα', - 'forth' => 'Εμπρός', - 'last' => 'τελευταίο', - 'on weekdays' => 'τις καθημερινές', - 'second' => 'δεύτερο', - 'third' => 'τρίτο', - '{displayName} Birthday' => 'Γενέθλια του χρήστη {displayName}', - '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => 'Ο/Η {displayName} μόλις σας πρόσθεσε στην εκδήλωση "{contentTitle}" του χώρου {spaceName} ξεκινώντας από {time}.', - '{displayName} added you to the event "{contentTitle}".' => 'Ο/η {displayName} Μόλις σας πρόσθεσε στην εκδήλωση "{contentTitle}".', - 'Add all Space members with status {status}' => '', - 'Add participants...' => '', - 'Added: {users}' => '', - 'Additional Information for participants' => '', - 'Allow option \'Decline\'' => '', - 'Allow option \'Undecided\'' => '', - 'Also include participant email addresses' => '', - 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', - 'By upcoming events first' => '', - 'CalDAV' => '', - 'Calendar event' => '', - 'Calendar event content ID' => '', - 'Calendar events' => '', - 'Cannot remove the participant!' => '', - 'Deleted' => '', - 'Display events within the next X days' => '', - 'Download ICS' => '', - 'Edit Event' => '', - 'Email' => '', - 'Enable Reminder' => '', - 'Event could not be deleted!' => '', - 'Event has been be deleted!' => '', - 'Export as {type}' => '', - 'Filter' => '', - 'Filter by types' => '', - 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', - 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', - 'Include participant information in exports' => '', - 'Invited: {users}' => '', - 'JWT Key' => '', - 'JWT Token Expiration' => '', - 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', - 'List' => '', - 'Minute' => '', - 'Mode' => '', - 'No new participants were added.' => '', - 'No new participants were invited.' => '', - 'Notify participants about changes' => '', - 'Participant removed.' => '', - 'Participation Status' => '', - 'Please select new participants.' => '', - 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => '', - 'Select calendar...' => '', - 'Select space...' => '', - 'Show past events' => '', - 'Status cannot be updated.' => '', - 'Status updated.' => '', - 'The event has already ended.' => '', - 'Today' => '', - 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', - 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', - 'You cannot invite participants!' => '', - 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', - 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', - 'You have been registered for the event "{contentTitle}".' => '', - 'global' => '', - 'iCal' => '', - 'in seconds. 0 for no JWT token expiration.' => '', - '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', - '{displayName} invited you to the event "{contentTitle}".' => '', - '{name} Calendar' => '', + 'Add profile calendar' => 'Προσθήκη ημερολογίου προφίλ', + 'Choose target calendar' => 'Επιλέξτε στοχευόμενο ημερολόγιο', + 'Reminder settings' => 'Ρυθμίσεις Υπενθυμίσεων', + 'Add all Space members with status {status}' => '', + 'Add participants...' => '', + 'Added: {users}' => '', + 'Additional Information for participants' => '', + 'Adds a calendar for private or public events to your profile and main menu.' => 'Προσθέτει ημερολόγιο για ιδιωτικά ή δημόσια συμβάντα στο προφίλ σας και στο κύριο μενού.', + 'Adds an event calendar to this space.' => 'Προσθέτει ένα ημερολόγιο εκδηλώσεων σε αυτόν τον χώρο.', + 'After (occurrences)' => 'Μετά (εμφανίσεις)', + 'All Day' => 'Όλη μέρα', + 'Allow option \'Decline\'' => '', + 'Allow option \'Undecided\'' => '', + 'Allows the user to create new calendar entries' => 'Επιτρέπει στον χρήστη τη δημιουργία νέων καταχωρήσεων ημερολογίου', + 'Allows the user to edit/delete existing calendar entries' => 'Επιτρέπει στον χρήστη να επεξεργάζεται/διαγράφει τις υπάρχουσες καταχωρήσεις ημερολογίου', + 'Also include participant email addresses' => '', + 'Attending' => 'Συμμετοχή', + 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', + 'Birthday' => 'Γενέθλια', + 'By upcoming events first' => '', + 'CalDAV' => '', + 'Calendar' => 'Ημερολόγιο', + 'Calendar event' => '', + 'Calendar event content ID' => '', + 'Calendar events' => '', + 'Cancel Event' => 'Ακύρωση Εκδήλωσης', + 'Cannot remove the participant!' => '', + 'Create entry' => 'Δημιουργία καταχώρησης', + 'Custom reminder' => 'Προσαρμοσμένη υπενθύμιση', + 'Day' => 'Ημέρα', + 'Days' => 'Ημέρες', + 'Default reminder settings' => 'Προεπιλεγμένες ρυθμίσεις υπενθύμισης', + 'Delete all events' => 'Διαγραφή όλων των συμβάντων', + 'Deleted' => '', + 'Description' => 'Περιγραφή', + 'Display events within the next X days' => '', + 'Do you want to install this module on your profile?' => 'Θέλετε να εγκαταστήσετε αυτήν την ενότητα στο προφίλ σας;', + 'Download ICS' => '', + 'Edit' => 'Επεξεργασία', + 'Edit Event' => '', + 'Edit all events' => 'Επεξεργασία όλων των συμβάντων', + 'Edit this and following events' => 'Επεξεργαστείτε αυτό και τα επόμενα συμβάντα', + 'Edit this event' => 'Επεξεργαστείτε αυτό το συμβάν', + 'Email' => '', + 'Enable' => 'Ενεργοποίηση', + 'Enable Reminder' => '', + 'End' => 'Τέλος', + 'End Date' => 'Ημερομηνία λήξης', + 'End Time' => 'Ώρα Λήξης', + 'End time must be after start time!' => 'Η ώρα λήξης πρέπει να είναι μετά την ώρα έναρξης!', + 'Event' => 'Εκδήλωση', + 'Event Type' => 'Τύπος Εκδήλωσης', + 'Event Types' => 'Τύποι εκδηλώσεων', + 'Event could not be deleted!' => '', + 'Event has been be deleted!' => '', + 'Event not found!' => 'Η εκδήλωση δεν βρέθηκε!', + 'Export as {type}' => '', + 'Files' => 'Αρχεία', + 'Filter' => 'Φίλτρο', + 'Filter by types' => '', + 'Friday' => 'Παρασκευή', + 'Here you can configure default settings for all calendar events.' => 'Εδώ μπορείτε να ρυθμίσετε τις προεπιλεγμένες ρυθμίσεις για όλα τα συμβάντα ημερολογίου.', + 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => 'Εδώ μπορείτε να ρυθμίσετε τις προεπιλεγμένες υπενθυμίσεις για προεπιλογή. Αυτές οι ρυθμίσεις μπορούν να αντικατασταθούν στο επίπεδο χώρου / προφίλ.', + 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', + 'Hour' => 'Ωρα', + 'I\'m attending' => 'Παρακολουθώ', + 'ID' => 'Ταυτότητα', + 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', + 'In order to add events to your profile, you have to enable the calendar module first.' => 'Για να προσθέσετε συμβάντα στο προφίλ σας, πρέπει πρώτα να ενεργοποιήσετε τη μονάδα ημερολογίου.', + 'Include participant information in exports' => '', + 'Interested' => 'Ενδιαφέρον', + 'Invalid date or time format!' => 'Μη έγκυρη μορφή ημερομηνίας ή ώρας!', + 'Invalid day of month given' => 'Μη έγκυρη ημέρα του μήνα', + 'Invalid event type id selected.' => 'Επιλέχθηκε μη έγκυρος τύπος ταυτότητας εκδήλωσης.', + 'Invalid frequency given' => 'Έχει δοθεί μη έγκυρη συχνότητα', + 'Invalid interval given' => 'Έχει δοθεί μη έγκυρο διάστημα', + 'Invalid week day selection' => 'Μη έγκυρη επιλογή ημέρας εβδομάδας', + 'Invite' => 'Προσκάλεσε', + 'Invited: {users}' => '', + 'JWT Key' => '', + 'JWT Token Expiration' => '', + 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', + 'List' => '', + 'Location' => 'Τοποθεσία', + 'Manage entries' => 'Διαχείριση καταχωρήσεων', + 'Maximum number of participants' => 'Μέγιστος αριθμός συμμετεχόντων', + 'Minute' => '', + 'Mode' => '', + 'Monday' => 'Δευτέρα', + 'Month' => 'Μήνας', + 'Monthly on day {dayOfMonth}' => 'Μηνιαία την ημέρα {dayOfMonth}', + 'Monthly on the {position} {dayOfWeek}' => 'Μηνιαία στην {θέση} {dayOfWeek}', + 'Months' => 'Μήνες', + 'Never' => 'Ποτέ', + 'Next' => 'Επόμενο', + 'No new participants were added.' => '', + 'No new participants were invited.' => '', + 'No reminder' => 'Χωρίς υπενθύμιση', + 'Notify participants about changes' => '', + 'On date' => 'Τη μέρα', + 'Participant removed.' => '', + 'Participants' => 'Συμμετέχοντες', + 'Participation Status' => '', + 'Please select new participants.' => '', + 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => '', + 'Profile Calendar' => 'Προφίλ Ημερολογίου', + 'Public' => 'Δημόσιο', + 'Recurring' => 'Επαναλαμβανόμενο', + 'Reopen Event' => 'Εκ νέου Άνοιγμα Εκδήλωσης', + 'Repeat every' => 'Επαναλάβετε κάθε', + 'Saturday' => 'Σάββατο', + 'Select calendar...' => '', + 'Select space...' => '', + 'Set reminder' => 'Ορισμός υπενθύμισης', + 'Show past events' => '', + 'Start Date' => 'Ημερομηνία έναρξης', + 'Start Time' => 'Ωρα έναρξης', + 'Status cannot be updated.' => '', + 'Status updated.' => '', + 'Sunday' => 'Κυριακή', + 'The event has already ended.' => '', + 'This event does not support recurrent events' => 'Αυτό το γεγονός δεν υποστηρίζει επαναλαμβανόμενα συμβάντα', + 'Thursday' => 'Πέμπτη', + 'Time Zone' => 'Ζώνη Ώρας', + 'Title' => 'Τίτλος', + 'Today' => '', + 'Tuesday' => 'Τρίτη', + 'Upcoming {type}' => 'Προσεχές {type}', + 'Upcoming {type}: {title}' => 'Προσεχές {type}: {title}', + 'Use default reminder' => 'Χρήση προεπιλεγμένης υπενθύμισης', + 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', + 'User birthdays' => 'Γενέθλια Χρηστών', + 'Wednesday' => 'Τετάρτη', + 'Week' => 'Εβδομάδα', + 'Weeks' => 'Εβδομάδες', + 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', + 'Year' => 'Ετος', + 'Years' => 'Χρόνια', + 'You cannot invite participants!' => '', + 'You don\'t have permission to delete this event!' => 'Δεν έχετε δικαίωμα να διαγράψετε αυτή την εκδήλωση!', + 'You have an {type} coming up' => 'Έχεις {type} που έρχεται', + 'You have an {type} coming up: {title}' => 'Έχεις {type} που έρχεται: {title}', + 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', + 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', + 'You have been registered for the event "{contentTitle}".' => '', + 'Your reminder settings for event: \'{title}\'' => 'Ρυθμίσεις υπενθύμισης σας για το συμβάν: \'{title}\'', + 'canceled' => 'ακυρώθηκε', + 'disabled' => 'άτομα με ειδικές ανάγκες', + 'first' => 'πρώτα', + 'forth' => 'Εμπρός', + 'global' => '', + 'iCal' => '', + 'in seconds. 0 for no JWT token expiration.' => '', + 'last' => 'τελευταίο', + 'on weekdays' => 'τις καθημερινές', + 'second' => 'δεύτερο', + 'third' => 'τρίτο', + '{displayName} Birthday' => 'Γενέθλια του χρήστη {displayName}', + '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => 'Ο/Η {displayName} μόλις σας πρόσθεσε στην εκδήλωση "{contentTitle}" του χώρου {spaceName} ξεκινώντας από {time}.', + '{displayName} added you to the event "{contentTitle}".' => 'Ο/η {displayName} Μόλις σας πρόσθεσε στην εκδήλωση "{contentTitle}".', + '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', + '{displayName} invited you to the event "{contentTitle}".' => '', + '{name} Calendar' => '', ]; diff --git a/messages/es/base.php b/messages/es/base.php index e19cfd23..76b155b1 100644 --- a/messages/es/base.php +++ b/messages/es/base.php @@ -1,167 +1,166 @@ Add profile calendar' => 'Añadir calendario del perfil', - 'Choose target calendar' => 'Elige calendario', - 'Reminder settings' => 'Ajustes de Recordatorio', - 'Add all Space members with status {status}' => 'Añadir todos los miembros del espacio que tengan el estatus {status}', - 'Add participants...' => 'Añadir participantes...', - 'Added: {users}' => 'Añadido(s): {users}', - 'Additional Information for participants' => 'Información adicional para los participantes', - 'Adds a calendar for private or public events to your profile and main menu.' => 'Añade un calendario para eventos privados o publicos a tu perfil y menu principal.', - 'Adds an event calendar to this space.' => 'Añade un calendario de eventos a este espacio.', - 'After (occurrences)' => 'Después (ocurrencias)', - 'All Day' => 'Todo el día', - 'Allow option \'Decline\'' => 'Permitir la opción \'Rechazar\'', - 'Allow option \'Undecided\'' => 'Permitir la opción \'Indeciso\'', - 'Allows the user to create new calendar entries' => 'Permitir que el usuario cree nuevas entradas en el calendario', - 'Allows the user to edit/delete existing calendar entries' => 'Permitir que el usuario edite o borre entradas del calendario existentes', - 'Attending' => 'Asistiendo', - 'Before a target calendar can be selected, the module must be activated in at least one Space.' => 'Antes de poder seleccionar un calendario el módulo debe ser activado en al menos un Espacio.', - 'Birthday' => 'Cumpleaños', - 'Calendar' => 'Calendario', - 'Cancel Event' => 'Cancelar evento', - 'Cannot remove the participant!' => 'No se puede eliminar al participante.', - 'Create entry' => 'Crear entrada', - 'Custom reminder' => 'Recordatorio personalizado', - 'Day' => 'Día', - 'Days' => 'Días', - 'Default reminder settings' => 'Ajustes por defecto del recordatorio', - 'Delete all events' => 'Eliminar todos los eventos', - 'Deleted' => 'Borrar', - 'Description' => 'Descripción', - 'Do you want to install this module on your profile?' => '¿Quieres instalar este módulo en tu perfil?', - 'Download ICS' => 'Descargar ICS', - 'Edit' => 'Editar', - 'Edit Event' => 'Editar el evento', - 'Edit all events' => 'Editar todos los eventos', - 'Edit this and following events' => 'Editar este y los eventos siguientes', - 'Edit this event' => 'Editar este evento', - 'Email' => 'Email', - 'Enable' => 'Activar', - 'Enable Reminder' => 'Permitir recordatorio', - 'End' => 'Fin', - 'End Date' => 'Fecha de fin', - 'End Time' => 'Hora Final', - 'End time must be after start time!' => '¡La fecha de fin tiene que ser después de la fecha de inicio!', - 'Event' => 'Evento', - 'Event Type' => 'Tipo de evento', - 'Event Types' => 'Tipos de evento', - 'Event could not be deleted!' => '¡No se ha podido eliminar el evento!', - 'Event has been be deleted!' => '¡El evento ha sido eliminado!', - 'Event not found!' => '¡Evento no encontrado!', - 'Export as {type}' => 'Exportar como {type}', - 'Files' => 'Archivos', - 'Filter by types' => 'Filtrar por tipos', - 'Friday' => 'Viernes', - 'Here you can configure default settings for all calendar events.' => 'Aquí puedes configurar los ajustes por defecto para todos los eventos agendados en el calendario.', - 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => 'Aquí puedes configurar ajustes por defecto a nivel global para los recordatorios. Estos ajustes pueden ser sobrescritos en el nivel espacio/perfil.', - 'Hour' => 'Hora', - 'I\'m attending' => 'Asistiré', - 'ID' => 'ID', - 'In order to add events to your profile, you have to enable the calendar module first.' => 'Para poder añadir eventos a su perfil tiene primero que activar el módulo de calendario.', - 'Interested' => 'Interesado', - 'Invalid date or time format!' => 'Formato de fecha y hora inválido!', - 'Invalid day of month given' => 'Día inválido del mes entregado', - 'Invalid event type id selected.' => 'Se ha seleccionado un id de tipo de evento inválido.', - 'Invalid frequency given' => 'Frecuencia dada inválida', - 'Invalid interval given' => 'Intervalo dado inválido', - 'Invalid week day selection' => 'Selección de día de semana inválida', - 'Invite' => 'Invitación', - 'Invited: {users}' => 'Invitados: {users}', - 'JWT Key' => 'Clave JWT', - 'JWT Token Expiration' => 'Expiración de token JWT', - 'List' => 'Lista', - 'Location' => 'Lugar', - 'Manage entries' => 'Administrar entradas', - 'Maximum number of participants' => 'Número máximo de participantes', - 'Minute' => 'Minuto', - 'Mode' => 'Modo', - 'Monday' => 'Lunes', - 'Month' => 'Mes', - 'Monthly on day {dayOfMonth}' => 'Mensualmente el día {dayOfMonth}', - 'Monthly on the {position} {dayOfWeek}' => 'Mensualmente en la {position} {dayOfWeek}', - 'Months' => 'Meses', - 'Never' => 'Nunca', - 'Next' => 'Siguiente', - 'No new participants were added.' => 'No se han añadido nuevos participantes.', - 'No new participants were invited.' => 'No se ha invitado a nuevos participantes.', - 'No reminder' => 'Sin recordatorio', - 'Notify participants about changes' => 'Informar de los cambios a los participantes', - 'On date' => 'El día', - 'Participant removed.' => 'Se ha eliminado al participante.', - 'Participants' => 'Participantes', - 'Participation Status' => 'Estado de Participación', - 'Please select new participants.' => 'Por favor, selecciona nuevos participantes.', - 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => 'Los eventos privados sólo son visibles para usted y, si está activado el sistema de amistad, para sus amigos.', - 'Profile Calendar' => 'Calendario de perfil', - 'Public' => 'Público', - 'Recurring' => 'Periódico', - 'Reopen Event' => 'Reabrir evento.', - 'Repeat every' => 'Repetir cada', - 'Saturday' => 'Sábado', - 'Set reminder' => 'Establecer recordatorio', - 'Start Date' => 'Fecha de inicio', - 'Start Time' => 'Hora de Inicio', - 'Status cannot be updated.' => 'No se ha podido actualizar el estado', - 'Status updated.' => 'Estado actualizado.', - 'Sunday' => 'Domingo', - 'The event has already ended.' => 'El evento ya ha terminado.', - 'This event does not support recurrent events' => 'Este evento no soporta eventos recurrentes', - 'Thursday' => 'Jueves', - 'Time Zone' => 'Zona horaria', - 'Title' => 'Título', - 'Today' => 'Hoy', - 'Tuesday' => 'Martes', - 'Upcoming {type}' => 'Próximo {type}', - 'Upcoming {type}: {title}' => 'Próximo {type}: {title}', - 'Use default reminder' => 'Usar recordatorio por defecto.', - 'User birthdays' => 'Cumpleaños de usuarios', - 'Wednesday' => 'Miércoles', - 'Week' => 'Semana', - 'Weeks' => 'Semanas', - 'Year' => 'Año', - 'Years' => 'Años', - 'You cannot invite participants!' => 'No puedes invitar a participantes.', - 'You don\'t have permission to delete this event!' => '¡No tienes permisos para borrar este evento!', - 'You have an {type} coming up' => 'Tú tienes un {type} por venir', - 'You have an {type} coming up: {title}' => 'Tú tienes un {type} por venir: {title}', - 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => 'Te has registrado para el evento "{contentTitle}" en {spaceName}, a partir de {time}', - 'You have been registered for the event "{contentTitle}", starting at {time}.' => 'Te has registrado para el evento "{contentTitle}", a partir de {time}', - 'You have been registered for the event "{contentTitle}".' => 'Te has registrado para el evento "{contentTitle}"', - 'Your reminder settings for event: \'{title}\'' => 'Tus ajustes de recordatorio para este evento: \'{title}\'', - 'canceled' => 'cancelado', - 'disabled' => 'discapacitado', - 'first' => 'primer', - 'forth' => 'cuarto', - 'global' => 'global', - 'last' => 'último', - 'on weekdays' => 'los fines de semana', - 'second' => 'segundo', - 'third' => 'tercer', - '{displayName} Birthday' => 'El Cumpleaños de {displayName}', - '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} te ha añadido al evento "{contentTitle}" en el espacio {spaceName}, que comienza en {time}.', - '{displayName} added you to the event "{contentTitle}".' => '{displayName} the ha añadido al evento "{contentTitle}".', - '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} te ha invitado al evento "{contentTitle}" en el espacio {spaceName}, que comienza en {time}.', - '{displayName} invited you to the event "{contentTitle}".' => '{displayName} te ha invitado al evento "{contentTitle}".', - 'Also include participant email addresses' => '', - 'By upcoming events first' => '', - 'CalDAV' => '', - 'Calendar event' => '', - 'Calendar event content ID' => '', - 'Calendar events' => '', - 'Display events within the next X days' => '', - 'Filter' => '', - 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', - 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', - 'Include participant information in exports' => '', - 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', - 'Select calendar...' => '', - 'Select space...' => '', - 'Show past events' => '', - 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', - 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', - 'iCal' => '', - 'in seconds. 0 for no JWT token expiration.' => '', - '{name} Calendar' => '', + 'Add profile calendar' => 'Añadir calendario del perfil', + 'Choose target calendar' => 'Elige calendario', + 'Reminder settings' => 'Ajustes de Recordatorio', + 'Add all Space members with status {status}' => 'Añadir todos los miembros del espacio que tengan el estatus {status}', + 'Add participants...' => 'Añadir participantes...', + 'Added: {users}' => 'Añadido(s): {users}', + 'Additional Information for participants' => 'Información adicional para los participantes', + 'Adds a calendar for private or public events to your profile and main menu.' => 'Añade un calendario para eventos privados o publicos a tu perfil y menu principal.', + 'Adds an event calendar to this space.' => 'Añade un calendario de eventos a este espacio.', + 'After (occurrences)' => 'Después (ocurrencias)', + 'All Day' => 'Todo el día', + 'Allow option \'Decline\'' => 'Permitir la opción \'Rechazar\'', + 'Allow option \'Undecided\'' => 'Permitir la opción \'Indeciso\'', + 'Allows the user to create new calendar entries' => 'Permitir que el usuario cree nuevas entradas en el calendario', + 'Allows the user to edit/delete existing calendar entries' => 'Permitir que el usuario edite o borre entradas del calendario existentes', + 'Also include participant email addresses' => '', + 'Attending' => 'Asistiendo', + 'Before a target calendar can be selected, the module must be activated in at least one Space.' => 'Antes de poder seleccionar un calendario el módulo debe ser activado en al menos un Espacio.', + 'Birthday' => 'Cumpleaños', + 'By upcoming events first' => '', + 'CalDAV' => '', + 'Calendar' => 'Calendario', + 'Calendar event' => '', + 'Calendar event content ID' => '', + 'Calendar events' => '', + 'Cancel Event' => 'Cancelar evento', + 'Cannot remove the participant!' => 'No se puede eliminar al participante.', + 'Create entry' => 'Crear entrada', + 'Custom reminder' => 'Recordatorio personalizado', + 'Day' => 'Día', + 'Days' => 'Días', + 'Default reminder settings' => 'Ajustes por defecto del recordatorio', + 'Delete all events' => 'Eliminar todos los eventos', + 'Deleted' => 'Borrar', + 'Description' => 'Descripción', + 'Display events within the next X days' => '', + 'Do you want to install this module on your profile?' => '¿Quieres instalar este módulo en tu perfil?', + 'Download ICS' => 'Descargar ICS', + 'Edit' => 'Editar', + 'Edit Event' => 'Editar el evento', + 'Edit all events' => 'Editar todos los eventos', + 'Edit this and following events' => 'Editar este y los eventos siguientes', + 'Edit this event' => 'Editar este evento', + 'Email' => 'Email', + 'Enable' => 'Activar', + 'Enable Reminder' => 'Permitir recordatorio', + 'End' => 'Fin', + 'End Date' => 'Fecha de fin', + 'End Time' => 'Hora Final', + 'End time must be after start time!' => '¡La fecha de fin tiene que ser después de la fecha de inicio!', + 'Event' => 'Evento', + 'Event Type' => 'Tipo de evento', + 'Event Types' => 'Tipos de evento', + 'Event could not be deleted!' => '¡No se ha podido eliminar el evento!', + 'Event has been be deleted!' => '¡El evento ha sido eliminado!', + 'Event not found!' => '¡Evento no encontrado!', + 'Export as {type}' => 'Exportar como {type}', + 'Files' => 'Archivos', + 'Filter' => 'Filtro', + 'Filter by types' => 'Filtrar por tipos', + 'Friday' => 'Viernes', + 'Here you can configure default settings for all calendar events.' => 'Aquí puedes configurar los ajustes por defecto para todos los eventos agendados en el calendario.', + 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => 'Aquí puedes configurar ajustes por defecto a nivel global para los recordatorios. Estos ajustes pueden ser sobrescritos en el nivel espacio/perfil.', + 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', + 'Hour' => 'Hora', + 'I\'m attending' => 'Asistiré', + 'ID' => 'ID', + 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', + 'In order to add events to your profile, you have to enable the calendar module first.' => 'Para poder añadir eventos a su perfil tiene primero que activar el módulo de calendario.', + 'Include participant information in exports' => '', + 'Interested' => 'Interesado', + 'Invalid date or time format!' => 'Formato de fecha y hora inválido!', + 'Invalid day of month given' => 'Día inválido del mes entregado', + 'Invalid event type id selected.' => 'Se ha seleccionado un id de tipo de evento inválido.', + 'Invalid frequency given' => 'Frecuencia dada inválida', + 'Invalid interval given' => 'Intervalo dado inválido', + 'Invalid week day selection' => 'Selección de día de semana inválida', + 'Invite' => 'Invitación', + 'Invited: {users}' => 'Invitados: {users}', + 'JWT Key' => 'Clave JWT', + 'JWT Token Expiration' => 'Expiración de token JWT', + 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', + 'List' => 'Lista', + 'Location' => 'Lugar', + 'Manage entries' => 'Administrar entradas', + 'Maximum number of participants' => 'Número máximo de participantes', + 'Minute' => 'Minuto', + 'Mode' => 'Modo', + 'Monday' => 'Lunes', + 'Month' => 'Mes', + 'Monthly on day {dayOfMonth}' => 'Mensualmente el día {dayOfMonth}', + 'Monthly on the {position} {dayOfWeek}' => 'Mensualmente en la {position} {dayOfWeek}', + 'Months' => 'Meses', + 'Never' => 'Nunca', + 'Next' => 'Siguiente', + 'No new participants were added.' => 'No se han añadido nuevos participantes.', + 'No new participants were invited.' => 'No se ha invitado a nuevos participantes.', + 'No reminder' => 'Sin recordatorio', + 'Notify participants about changes' => 'Informar de los cambios a los participantes', + 'On date' => 'El día', + 'Participant removed.' => 'Se ha eliminado al participante.', + 'Participants' => 'Participantes', + 'Participation Status' => 'Estado de Participación', + 'Please select new participants.' => 'Por favor, selecciona nuevos participantes.', + 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => 'Los eventos privados sólo son visibles para usted y, si está activado el sistema de amistad, para sus amigos.', + 'Profile Calendar' => 'Calendario de perfil', + 'Public' => 'Público', + 'Recurring' => 'Periódico', + 'Reopen Event' => 'Reabrir evento.', + 'Repeat every' => 'Repetir cada', + 'Saturday' => 'Sábado', + 'Select calendar...' => '', + 'Select space...' => '', + 'Set reminder' => 'Establecer recordatorio', + 'Show past events' => '', + 'Start Date' => 'Fecha de inicio', + 'Start Time' => 'Hora de Inicio', + 'Status cannot be updated.' => 'No se ha podido actualizar el estado', + 'Status updated.' => 'Estado actualizado.', + 'Sunday' => 'Domingo', + 'The event has already ended.' => 'El evento ya ha terminado.', + 'This event does not support recurrent events' => 'Este evento no soporta eventos recurrentes', + 'Thursday' => 'Jueves', + 'Time Zone' => 'Zona horaria', + 'Title' => 'Título', + 'Today' => 'Hoy', + 'Tuesday' => 'Martes', + 'Upcoming {type}' => 'Próximo {type}', + 'Upcoming {type}: {title}' => 'Próximo {type}: {title}', + 'Use default reminder' => 'Usar recordatorio por defecto.', + 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', + 'User birthdays' => 'Cumpleaños de usuarios', + 'Wednesday' => 'Miércoles', + 'Week' => 'Semana', + 'Weeks' => 'Semanas', + 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', + 'Year' => 'Año', + 'Years' => 'Años', + 'You cannot invite participants!' => 'No puedes invitar a participantes.', + 'You don\'t have permission to delete this event!' => '¡No tienes permisos para borrar este evento!', + 'You have an {type} coming up' => 'Tú tienes un {type} por venir', + 'You have an {type} coming up: {title}' => 'Tú tienes un {type} por venir: {title}', + 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => 'Te has registrado para el evento "{contentTitle}" en {spaceName}, a partir de {time}', + 'You have been registered for the event "{contentTitle}", starting at {time}.' => 'Te has registrado para el evento "{contentTitle}", a partir de {time}', + 'You have been registered for the event "{contentTitle}".' => 'Te has registrado para el evento "{contentTitle}"', + 'Your reminder settings for event: \'{title}\'' => 'Tus ajustes de recordatorio para este evento: \'{title}\'', + 'canceled' => 'cancelado', + 'disabled' => 'discapacitado', + 'first' => 'primer', + 'forth' => 'cuarto', + 'global' => 'global', + 'iCal' => '', + 'in seconds. 0 for no JWT token expiration.' => '', + 'last' => 'último', + 'on weekdays' => 'los fines de semana', + 'second' => 'segundo', + 'third' => 'tercer', + '{displayName} Birthday' => 'El Cumpleaños de {displayName}', + '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} te ha añadido al evento "{contentTitle}" en el espacio {spaceName}, que comienza en {time}.', + '{displayName} added you to the event "{contentTitle}".' => '{displayName} the ha añadido al evento "{contentTitle}".', + '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} te ha invitado al evento "{contentTitle}" en el espacio {spaceName}, que comienza en {time}.', + '{displayName} invited you to the event "{contentTitle}".' => '{displayName} te ha invitado al evento "{contentTitle}".', + '{name} Calendar' => '', ]; diff --git a/messages/eu/base.php b/messages/eu/base.php index 2fa2db77..25ddbee9 100644 --- a/messages/eu/base.php +++ b/messages/eu/base.php @@ -1,167 +1,166 @@ 'Gogorarazpen pertsonalizatua', - 'Day' => 'Eguna', - 'Deleted' => 'Ezabatua', - 'Description' => 'Deskribapena', - 'Edit' => 'Editatu', - 'Enable' => 'Aktibatu', - 'Files' => 'Fitxategiak', - 'Hour' => 'Ordua', - 'Invite' => 'Gonbidatu', - 'Location' => 'Kokapena', - 'Never' => 'Inoiz', - 'Next' => 'Hurrengoa', - 'No reminder' => 'Gogorarazpenik gabe', - 'Public' => 'Publikoa', - 'Time Zone' => 'Ordu-eremua', - 'Title' => 'Izenburua', - 'Use default reminder' => 'Erabili abisu lehenetsia', - 'Week' => 'Astea', - 'Add profile calendar' => '', - 'Choose target calendar' => '', - 'Reminder settings' => '', - 'Add all Space members with status {status}' => '', - 'Add participants...' => '', - 'Added: {users}' => '', - 'Additional Information for participants' => '', - 'Adds a calendar for private or public events to your profile and main menu.' => '', - 'Adds an event calendar to this space.' => '', - 'After (occurrences)' => '', - 'All Day' => '', - 'Allow option \'Decline\'' => '', - 'Allow option \'Undecided\'' => '', - 'Allows the user to create new calendar entries' => '', - 'Allows the user to edit/delete existing calendar entries' => '', - 'Also include participant email addresses' => '', - 'Attending' => '', - 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', - 'Birthday' => '', - 'By upcoming events first' => '', - 'CalDAV' => '', - 'Calendar' => '', - 'Calendar event' => '', - 'Calendar event content ID' => '', - 'Calendar events' => '', - 'Cancel Event' => '', - 'Cannot remove the participant!' => '', - 'Create entry' => '', - 'Days' => '', - 'Default reminder settings' => '', - 'Delete all events' => '', - 'Display events within the next X days' => '', - 'Do you want to install this module on your profile?' => '', - 'Download ICS' => '', - 'Edit Event' => '', - 'Edit all events' => '', - 'Edit this and following events' => '', - 'Edit this event' => '', - 'Email' => '', - 'Enable Reminder' => '', - 'End' => '', - 'End Date' => '', - 'End Time' => '', - 'End time must be after start time!' => '', - 'Event' => '', - 'Event Type' => '', - 'Event Types' => '', - 'Event could not be deleted!' => '', - 'Event has been be deleted!' => '', - 'Event not found!' => '', - 'Export as {type}' => '', - 'Filter' => '', - 'Filter by types' => '', - 'Friday' => '', - 'Here you can configure default settings for all calendar events.' => '', - 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => '', - 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', - 'I\'m attending' => '', - 'ID' => '', - 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', - 'In order to add events to your profile, you have to enable the calendar module first.' => '', - 'Include participant information in exports' => '', - 'Interested' => '', - 'Invalid date or time format!' => '', - 'Invalid day of month given' => '', - 'Invalid event type id selected.' => '', - 'Invalid frequency given' => '', - 'Invalid interval given' => '', - 'Invalid week day selection' => '', - 'Invited: {users}' => '', - 'JWT Key' => '', - 'JWT Token Expiration' => '', - 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', - 'List' => '', - 'Manage entries' => '', - 'Maximum number of participants' => '', - 'Minute' => '', - 'Mode' => '', - 'Monday' => '', - 'Month' => '', - 'Monthly on day {dayOfMonth}' => '', - 'Monthly on the {position} {dayOfWeek}' => '', - 'Months' => '', - 'No new participants were added.' => '', - 'No new participants were invited.' => '', - 'Notify participants about changes' => '', - 'On date' => '', - 'Participant removed.' => '', - 'Participants' => '', - 'Participation Status' => '', - 'Please select new participants.' => '', - 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => '', - 'Profile Calendar' => '', - 'Recurring' => '', - 'Reopen Event' => '', - 'Repeat every' => '', - 'Saturday' => '', - 'Select calendar...' => '', - 'Select space...' => '', - 'Set reminder' => '', - 'Show past events' => '', - 'Start Date' => '', - 'Start Time' => '', - 'Status cannot be updated.' => '', - 'Status updated.' => '', - 'Sunday' => '', - 'The event has already ended.' => '', - 'This event does not support recurrent events' => '', - 'Thursday' => '', - 'Today' => '', - 'Tuesday' => '', - 'Upcoming {type}' => '', - 'Upcoming {type}: {title}' => '', - 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', - 'User birthdays' => '', - 'Wednesday' => '', - 'Weeks' => '', - 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', - 'Year' => '', - 'Years' => '', - 'You cannot invite participants!' => '', - 'You don\'t have permission to delete this event!' => '', - 'You have an {type} coming up' => '', - 'You have an {type} coming up: {title}' => '', - 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', - 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', - 'You have been registered for the event "{contentTitle}".' => '', - 'Your reminder settings for event: \'{title}\'' => '', - 'canceled' => '', - 'disabled' => '', - 'first' => '', - 'forth' => '', - 'global' => '', - 'iCal' => '', - 'in seconds. 0 for no JWT token expiration.' => '', - 'last' => '', - 'on weekdays' => '', - 'second' => '', - 'third' => '', - '{displayName} Birthday' => '', - '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', - '{displayName} added you to the event "{contentTitle}".' => '', - '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', - '{displayName} invited you to the event "{contentTitle}".' => '', - '{name} Calendar' => '', + 'Add profile calendar' => '', + 'Choose target calendar' => '', + 'Reminder settings' => '', + 'Add all Space members with status {status}' => '', + 'Add participants...' => '', + 'Added: {users}' => '', + 'Additional Information for participants' => '', + 'Adds a calendar for private or public events to your profile and main menu.' => '', + 'Adds an event calendar to this space.' => '', + 'After (occurrences)' => '', + 'All Day' => '', + 'Allow option \'Decline\'' => '', + 'Allow option \'Undecided\'' => '', + 'Allows the user to create new calendar entries' => '', + 'Allows the user to edit/delete existing calendar entries' => '', + 'Also include participant email addresses' => '', + 'Attending' => '', + 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', + 'Birthday' => '', + 'By upcoming events first' => '', + 'CalDAV' => '', + 'Calendar' => '', + 'Calendar event' => '', + 'Calendar event content ID' => '', + 'Calendar events' => '', + 'Cancel Event' => '', + 'Cannot remove the participant!' => '', + 'Create entry' => '', + 'Custom reminder' => 'Gogorarazpen pertsonalizatua', + 'Day' => 'Eguna', + 'Days' => '', + 'Default reminder settings' => '', + 'Delete all events' => '', + 'Deleted' => 'Ezabatua', + 'Description' => 'Deskribapena', + 'Display events within the next X days' => '', + 'Do you want to install this module on your profile?' => '', + 'Download ICS' => '', + 'Edit' => 'Editatu', + 'Edit Event' => '', + 'Edit all events' => '', + 'Edit this and following events' => '', + 'Edit this event' => '', + 'Email' => '', + 'Enable' => 'Aktibatu', + 'Enable Reminder' => '', + 'End' => '', + 'End Date' => '', + 'End Time' => '', + 'End time must be after start time!' => '', + 'Event' => '', + 'Event Type' => '', + 'Event Types' => '', + 'Event could not be deleted!' => '', + 'Event has been be deleted!' => '', + 'Event not found!' => '', + 'Export as {type}' => '', + 'Files' => 'Fitxategiak', + 'Filter' => 'Iragazkia', + 'Filter by types' => '', + 'Friday' => '', + 'Here you can configure default settings for all calendar events.' => '', + 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => '', + 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', + 'Hour' => 'Ordua', + 'I\'m attending' => '', + 'ID' => '', + 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', + 'In order to add events to your profile, you have to enable the calendar module first.' => '', + 'Include participant information in exports' => '', + 'Interested' => '', + 'Invalid date or time format!' => '', + 'Invalid day of month given' => '', + 'Invalid event type id selected.' => '', + 'Invalid frequency given' => '', + 'Invalid interval given' => '', + 'Invalid week day selection' => '', + 'Invite' => 'Gonbidatu', + 'Invited: {users}' => '', + 'JWT Key' => '', + 'JWT Token Expiration' => '', + 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', + 'List' => '', + 'Location' => 'Kokapena', + 'Manage entries' => '', + 'Maximum number of participants' => '', + 'Minute' => '', + 'Mode' => '', + 'Monday' => '', + 'Month' => '', + 'Monthly on day {dayOfMonth}' => '', + 'Monthly on the {position} {dayOfWeek}' => '', + 'Months' => '', + 'Never' => 'Inoiz', + 'Next' => 'Hurrengoa', + 'No new participants were added.' => '', + 'No new participants were invited.' => '', + 'No reminder' => 'Gogorarazpenik gabe', + 'Notify participants about changes' => '', + 'On date' => '', + 'Participant removed.' => '', + 'Participants' => '', + 'Participation Status' => '', + 'Please select new participants.' => '', + 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => '', + 'Profile Calendar' => '', + 'Public' => 'Publikoa', + 'Recurring' => '', + 'Reopen Event' => '', + 'Repeat every' => '', + 'Saturday' => '', + 'Select calendar...' => '', + 'Select space...' => '', + 'Set reminder' => '', + 'Show past events' => '', + 'Start Date' => '', + 'Start Time' => '', + 'Status cannot be updated.' => '', + 'Status updated.' => '', + 'Sunday' => '', + 'The event has already ended.' => '', + 'This event does not support recurrent events' => '', + 'Thursday' => '', + 'Time Zone' => 'Ordu-eremua', + 'Title' => 'Izenburua', + 'Today' => '', + 'Tuesday' => '', + 'Upcoming {type}' => '', + 'Upcoming {type}: {title}' => '', + 'Use default reminder' => 'Erabili abisu lehenetsia', + 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', + 'User birthdays' => '', + 'Wednesday' => '', + 'Week' => 'Astea', + 'Weeks' => '', + 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', + 'Year' => '', + 'Years' => '', + 'You cannot invite participants!' => '', + 'You don\'t have permission to delete this event!' => '', + 'You have an {type} coming up' => '', + 'You have an {type} coming up: {title}' => '', + 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', + 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', + 'You have been registered for the event "{contentTitle}".' => '', + 'Your reminder settings for event: \'{title}\'' => '', + 'canceled' => '', + 'disabled' => '', + 'first' => '', + 'forth' => '', + 'global' => '', + 'iCal' => '', + 'in seconds. 0 for no JWT token expiration.' => '', + 'last' => '', + 'on weekdays' => '', + 'second' => '', + 'third' => '', + '{displayName} Birthday' => '', + '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', + '{displayName} added you to the event "{contentTitle}".' => '', + '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', + '{displayName} invited you to the event "{contentTitle}".' => '', + '{name} Calendar' => '', ]; diff --git a/messages/fa-IR/base.php b/messages/fa-IR/base.php index 0c301bcc..e4c7ca72 100644 --- a/messages/fa-IR/base.php +++ b/messages/fa-IR/base.php @@ -1,167 +1,166 @@ 'یک تقویم برای رویدادهای خصوصی و یا عمومی به پروفایل شما و منوی اصلی اضافه‌می‌کند.', - 'Adds an event calendar to this space.' => 'به این انجمن یک تقویم رویداد اضافه‌می‌کند. ', - 'All Day' => 'تمام روز', - 'Birthday' => 'تولد', - 'Calendar' => 'تقویم', - 'Description' => 'توضیحات', - 'Edit' => 'ویرایش', - 'Edit this event' => 'این رویداد را به پایان برسان', - 'Email' => 'ايميل', - 'Enable' => 'فعال', - 'End Date' => 'تاریخ پایان', - 'End Time' => 'پایان زمان', - 'End time must be after start time!' => 'تاریخ پایان باید پس از تاریخ آغاز باشد!', - 'Event' => 'رویداد', - 'Event not found!' => 'رویداد پیدا نشد!', - 'Files' => 'فايل ها', - 'I\'m attending' => 'حضور خواهم‌داشت', - 'ID' => 'شناسه', - 'Invite' => 'دعوت', - 'List' => 'فهرست', - 'Location' => 'جایگاه', - 'Never' => 'هرگز', - 'Next' => 'بعدی', - 'Participants' => 'مشارکت‌کننده‌ها', - 'Public' => 'عمومی', - 'Start Date' => 'تاریخ شروع', - 'Start Time' => 'آغاز زمان', - 'Time Zone' => 'منطقه زمانی', - 'Title' => 'عنوان', - 'You don\'t have permission to delete this event!' => 'شما اجازه‌ی پاک کردن این رویداد را ندارید!', - 'disabled' => 'معلول', - 'Add profile calendar' => '', - 'Choose target calendar' => '', - 'Reminder settings' => '', - 'Add all Space members with status {status}' => '', - 'Add participants...' => '', - 'Added: {users}' => '', - 'Additional Information for participants' => '', - 'After (occurrences)' => '', - 'Allow option \'Decline\'' => '', - 'Allow option \'Undecided\'' => '', - 'Allows the user to create new calendar entries' => '', - 'Allows the user to edit/delete existing calendar entries' => '', - 'Also include participant email addresses' => '', - 'Attending' => '', - 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', - 'By upcoming events first' => '', - 'CalDAV' => '', - 'Calendar event' => '', - 'Calendar event content ID' => '', - 'Calendar events' => '', - 'Cancel Event' => '', - 'Cannot remove the participant!' => '', - 'Create entry' => '', - 'Custom reminder' => '', - 'Day' => '', - 'Days' => '', - 'Default reminder settings' => '', - 'Delete all events' => '', - 'Deleted' => '', - 'Display events within the next X days' => '', - 'Do you want to install this module on your profile?' => '', - 'Download ICS' => '', - 'Edit Event' => '', - 'Edit all events' => '', - 'Edit this and following events' => '', - 'Enable Reminder' => '', - 'End' => '', - 'Event Type' => '', - 'Event Types' => '', - 'Event could not be deleted!' => '', - 'Event has been be deleted!' => '', - 'Export as {type}' => '', - 'Filter' => '', - 'Filter by types' => '', - 'Friday' => '', - 'Here you can configure default settings for all calendar events.' => '', - 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => '', - 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', - 'Hour' => '', - 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', - 'In order to add events to your profile, you have to enable the calendar module first.' => '', - 'Include participant information in exports' => '', - 'Interested' => '', - 'Invalid date or time format!' => '', - 'Invalid day of month given' => '', - 'Invalid event type id selected.' => '', - 'Invalid frequency given' => '', - 'Invalid interval given' => '', - 'Invalid week day selection' => '', - 'Invited: {users}' => '', - 'JWT Key' => '', - 'JWT Token Expiration' => '', - 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', - 'Manage entries' => '', - 'Maximum number of participants' => '', - 'Minute' => '', - 'Mode' => '', - 'Monday' => '', - 'Month' => '', - 'Monthly on day {dayOfMonth}' => '', - 'Monthly on the {position} {dayOfWeek}' => '', - 'Months' => '', - 'No new participants were added.' => '', - 'No new participants were invited.' => '', - 'No reminder' => '', - 'Notify participants about changes' => '', - 'On date' => '', - 'Participant removed.' => '', - 'Participation Status' => '', - 'Please select new participants.' => '', - 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => '', - 'Profile Calendar' => '', - 'Recurring' => '', - 'Reopen Event' => '', - 'Repeat every' => '', - 'Saturday' => '', - 'Select calendar...' => '', - 'Select space...' => '', - 'Set reminder' => '', - 'Show past events' => '', - 'Status cannot be updated.' => '', - 'Status updated.' => '', - 'Sunday' => '', - 'The event has already ended.' => '', - 'This event does not support recurrent events' => '', - 'Thursday' => '', - 'Today' => '', - 'Tuesday' => '', - 'Upcoming {type}' => '', - 'Upcoming {type}: {title}' => '', - 'Use default reminder' => '', - 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', - 'User birthdays' => '', - 'Wednesday' => '', - 'Week' => '', - 'Weeks' => '', - 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', - 'Year' => '', - 'Years' => '', - 'You cannot invite participants!' => '', - 'You have an {type} coming up' => '', - 'You have an {type} coming up: {title}' => '', - 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', - 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', - 'You have been registered for the event "{contentTitle}".' => '', - 'Your reminder settings for event: \'{title}\'' => '', - 'canceled' => '', - 'first' => '', - 'forth' => '', - 'global' => '', - 'iCal' => '', - 'in seconds. 0 for no JWT token expiration.' => '', - 'last' => '', - 'on weekdays' => '', - 'second' => '', - 'third' => '', - '{displayName} Birthday' => '', - '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', - '{displayName} added you to the event "{contentTitle}".' => '', - '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', - '{displayName} invited you to the event "{contentTitle}".' => '', - '{name} Calendar' => '', + 'Add profile calendar' => '', + 'Choose target calendar' => '', + 'Reminder settings' => '', + 'Add all Space members with status {status}' => '', + 'Add participants...' => '', + 'Added: {users}' => '', + 'Additional Information for participants' => '', + 'Adds a calendar for private or public events to your profile and main menu.' => 'یک تقویم برای رویدادهای خصوصی و یا عمومی به پروفایل شما و منوی اصلی اضافه‌می‌کند.', + 'Adds an event calendar to this space.' => 'به این انجمن یک تقویم رویداد اضافه‌می‌کند. ', + 'After (occurrences)' => '', + 'All Day' => 'تمام روز', + 'Allow option \'Decline\'' => '', + 'Allow option \'Undecided\'' => '', + 'Allows the user to create new calendar entries' => '', + 'Allows the user to edit/delete existing calendar entries' => '', + 'Also include participant email addresses' => '', + 'Attending' => '', + 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', + 'Birthday' => 'تولد', + 'By upcoming events first' => '', + 'CalDAV' => '', + 'Calendar' => 'تقویم', + 'Calendar event' => '', + 'Calendar event content ID' => '', + 'Calendar events' => '', + 'Cancel Event' => '', + 'Cannot remove the participant!' => '', + 'Create entry' => '', + 'Custom reminder' => '', + 'Day' => '', + 'Days' => '', + 'Default reminder settings' => '', + 'Delete all events' => '', + 'Deleted' => '', + 'Description' => 'توضیحات', + 'Display events within the next X days' => '', + 'Do you want to install this module on your profile?' => '', + 'Download ICS' => '', + 'Edit' => 'ویرایش', + 'Edit Event' => '', + 'Edit all events' => '', + 'Edit this and following events' => '', + 'Edit this event' => 'این رویداد را به پایان برسان', + 'Email' => 'ايميل', + 'Enable' => 'فعال', + 'Enable Reminder' => '', + 'End' => '', + 'End Date' => 'تاریخ پایان', + 'End Time' => 'پایان زمان', + 'End time must be after start time!' => 'تاریخ پایان باید پس از تاریخ آغاز باشد!', + 'Event' => 'رویداد', + 'Event Type' => '', + 'Event Types' => '', + 'Event could not be deleted!' => '', + 'Event has been be deleted!' => '', + 'Event not found!' => 'رویداد پیدا نشد!', + 'Export as {type}' => '', + 'Files' => 'فايل ها', + 'Filter' => 'پالایه', + 'Filter by types' => '', + 'Friday' => '', + 'Here you can configure default settings for all calendar events.' => '', + 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => '', + 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', + 'Hour' => '', + 'I\'m attending' => 'حضور خواهم‌داشت', + 'ID' => 'شناسه', + 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', + 'In order to add events to your profile, you have to enable the calendar module first.' => '', + 'Include participant information in exports' => '', + 'Interested' => '', + 'Invalid date or time format!' => '', + 'Invalid day of month given' => '', + 'Invalid event type id selected.' => '', + 'Invalid frequency given' => '', + 'Invalid interval given' => '', + 'Invalid week day selection' => '', + 'Invite' => 'دعوت', + 'Invited: {users}' => '', + 'JWT Key' => '', + 'JWT Token Expiration' => '', + 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', + 'List' => 'فهرست', + 'Location' => 'جایگاه', + 'Manage entries' => '', + 'Maximum number of participants' => '', + 'Minute' => '', + 'Mode' => '', + 'Monday' => '', + 'Month' => '', + 'Monthly on day {dayOfMonth}' => '', + 'Monthly on the {position} {dayOfWeek}' => '', + 'Months' => '', + 'Never' => 'هرگز', + 'Next' => 'بعدی', + 'No new participants were added.' => '', + 'No new participants were invited.' => '', + 'No reminder' => '', + 'Notify participants about changes' => '', + 'On date' => '', + 'Participant removed.' => '', + 'Participants' => 'مشارکت‌کننده‌ها', + 'Participation Status' => '', + 'Please select new participants.' => '', + 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => '', + 'Profile Calendar' => '', + 'Public' => 'عمومی', + 'Recurring' => '', + 'Reopen Event' => '', + 'Repeat every' => '', + 'Saturday' => '', + 'Select calendar...' => '', + 'Select space...' => '', + 'Set reminder' => '', + 'Show past events' => '', + 'Start Date' => 'تاریخ شروع', + 'Start Time' => 'آغاز زمان', + 'Status cannot be updated.' => '', + 'Status updated.' => '', + 'Sunday' => '', + 'The event has already ended.' => '', + 'This event does not support recurrent events' => '', + 'Thursday' => '', + 'Time Zone' => 'منطقه زمانی', + 'Title' => 'عنوان', + 'Today' => '', + 'Tuesday' => '', + 'Upcoming {type}' => '', + 'Upcoming {type}: {title}' => '', + 'Use default reminder' => '', + 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', + 'User birthdays' => '', + 'Wednesday' => '', + 'Week' => '', + 'Weeks' => '', + 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', + 'Year' => '', + 'Years' => '', + 'You cannot invite participants!' => '', + 'You don\'t have permission to delete this event!' => 'شما اجازه‌ی پاک کردن این رویداد را ندارید!', + 'You have an {type} coming up' => '', + 'You have an {type} coming up: {title}' => '', + 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', + 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', + 'You have been registered for the event "{contentTitle}".' => '', + 'Your reminder settings for event: \'{title}\'' => '', + 'canceled' => '', + 'disabled' => 'معلول', + 'first' => '', + 'forth' => '', + 'global' => '', + 'iCal' => '', + 'in seconds. 0 for no JWT token expiration.' => '', + 'last' => '', + 'on weekdays' => '', + 'second' => '', + 'third' => '', + '{displayName} Birthday' => '', + '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', + '{displayName} added you to the event "{contentTitle}".' => '', + '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', + '{displayName} invited you to the event "{contentTitle}".' => '', + '{name} Calendar' => '', ]; diff --git a/messages/fi/base.php b/messages/fi/base.php index f6fed2f0..c2db06b6 100644 --- a/messages/fi/base.php +++ b/messages/fi/base.php @@ -1,167 +1,166 @@ Add profile calendar' => 'Lisää kalenteri', - 'Choose target calendar' => 'Valitse kalenteri', - 'Adds a calendar for private or public events to your profile and main menu.' => 'Lisää kalenteri yksityisiin tai julkisiin tapahtumiin profiiliisi ja päävalikkoosi.', - 'Adds an event calendar to this space.' => 'Lisää tapahtumakalenteri tähän tilaan.', - 'All Day' => 'Koko päivä', - 'Allows the user to create new calendar entries' => 'Anna käyttäjien luoda uusia kalenterimerkintöjä', - 'Allows the user to edit/delete existing calendar entries' => 'Anna käyttäjien muokata / poistaa nykyisiä kalenterimerkintöjä', - 'Attending' => 'Osallistuu', - 'Birthday' => 'Syntymäpäivä', - 'Calendar' => 'Kalenteri', - 'Cancel Event' => 'Poista Tapahtuma', - 'Create entry' => 'Luo merkintä', - 'Deleted' => 'Poistettu', - 'Description' => 'Kuvaus', - 'Edit' => 'Muokkaa', - 'Email' => 'Sähköposti', - 'Enable' => 'Ota käyttöön', - 'End' => 'Päätä', - 'End Date' => 'Päätymispäivä', - 'End Time' => 'Päätymisaika', - 'End time must be after start time!' => 'Tapahtuman päätymisaika pitää olla tapahtuman alkamisajan jälkeen!', - 'Event' => 'Tapahtuma', - 'Event Type' => 'Tapahtuman tyyppi', - 'Event Types' => 'Taphtumatyypit', - 'Event not found!' => 'Tapahtumaa ei löytynyt', - 'Files' => 'Tiedostot', - 'Friday' => 'Perjantai', - 'I\'m attending' => 'Minä osallistun', - 'ID' => 'ID', - 'In order to add events to your profile, you have to enable the calendar module first.' => 'Jos haluat lisätä tapahtumia profiiliisi, sinun on ensin otettava kalenteri laajennus käyttöön.', - 'Interested' => 'Kiinostunut', - 'Invalid event type id selected.' => 'Virheellinen tapahtumien tyyppi.', - 'Invite' => 'Kutsu', - 'List' => 'Lista', - 'Location' => 'Sijainti', - 'Manage entries' => 'Hallinoi merkintöjä', - 'Maximum number of participants' => 'Osallistujien enimmäismäärä', - 'Monday' => 'Maanantai', - 'Never' => 'Ei koskaan', - 'Next' => 'Seuraava', - 'Participants' => 'Osallistujat', - 'Profile Calendar' => 'Profiili Kalenteri', - 'Public' => 'Julkinen', - 'Reopen Event' => 'Avaa tapahtuma uudelleen', - 'Saturday' => 'Lauantai', - 'Set reminder' => 'Aseta muistutus', - 'Start Date' => 'Aloituspäivä', - 'Start Time' => 'Aloitusaika', - 'Sunday' => 'Sunnuntai', - 'Thursday' => 'Torstai', - 'Time Zone' => 'Aikavyöhyke', - 'Title' => 'Otsikko', - 'Today' => 'Tänään', - 'Tuesday' => 'Tiistai', - 'Wednesday' => 'Keskiviikko', - 'You don\'t have permission to delete this event!' => 'Sinulla ei ole lupaa poistaa tätä tapahtumaa!', - 'canceled' => 'peruutettu', - 'disabled' => 'liikuntarajoitteinen', - '{displayName} Birthday' => '{displayName} Syntymäpäivä', - '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} lisäsi sinut tapahtumaan "{contentTitle} {time}" sivulla {spaceName}', - '{displayName} added you to the event "{contentTitle}".' => '{displayName} lisäsi sinut juuri tapahtumaan "{contentTitle}"', - 'Reminder settings' => '', - 'Add all Space members with status {status}' => '', - 'Add participants...' => '', - 'Added: {users}' => '', - 'Additional Information for participants' => '', - 'After (occurrences)' => '', - 'Allow option \'Decline\'' => '', - 'Allow option \'Undecided\'' => '', - 'Also include participant email addresses' => '', - 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', - 'By upcoming events first' => '', - 'CalDAV' => '', - 'Calendar event' => '', - 'Calendar event content ID' => '', - 'Calendar events' => '', - 'Cannot remove the participant!' => '', - 'Custom reminder' => '', - 'Day' => '', - 'Days' => '', - 'Default reminder settings' => '', - 'Delete all events' => '', - 'Display events within the next X days' => '', - 'Do you want to install this module on your profile?' => '', - 'Download ICS' => '', - 'Edit Event' => '', - 'Edit all events' => '', - 'Edit this and following events' => '', - 'Edit this event' => '', - 'Enable Reminder' => '', - 'Event could not be deleted!' => '', - 'Event has been be deleted!' => '', - 'Export as {type}' => '', - 'Filter' => '', - 'Filter by types' => '', - 'Here you can configure default settings for all calendar events.' => '', - 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => '', - 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', - 'Hour' => '', - 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', - 'Include participant information in exports' => '', - 'Invalid date or time format!' => '', - 'Invalid day of month given' => '', - 'Invalid frequency given' => '', - 'Invalid interval given' => '', - 'Invalid week day selection' => '', - 'Invited: {users}' => '', - 'JWT Key' => '', - 'JWT Token Expiration' => '', - 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', - 'Minute' => '', - 'Mode' => '', - 'Month' => '', - 'Monthly on day {dayOfMonth}' => '', - 'Monthly on the {position} {dayOfWeek}' => '', - 'Months' => '', - 'No new participants were added.' => '', - 'No new participants were invited.' => '', - 'No reminder' => '', - 'Notify participants about changes' => '', - 'On date' => '', - 'Participant removed.' => '', - 'Participation Status' => '', - 'Please select new participants.' => '', - 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => '', - 'Recurring' => '', - 'Repeat every' => '', - 'Select calendar...' => '', - 'Select space...' => '', - 'Show past events' => '', - 'Status cannot be updated.' => '', - 'Status updated.' => '', - 'The event has already ended.' => '', - 'This event does not support recurrent events' => '', - 'Upcoming {type}' => '', - 'Upcoming {type}: {title}' => '', - 'Use default reminder' => '', - 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', - 'User birthdays' => '', - 'Week' => '', - 'Weeks' => '', - 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', - 'Year' => '', - 'Years' => '', - 'You cannot invite participants!' => '', - 'You have an {type} coming up' => '', - 'You have an {type} coming up: {title}' => '', - 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', - 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', - 'You have been registered for the event "{contentTitle}".' => '', - 'Your reminder settings for event: \'{title}\'' => '', - 'first' => '', - 'forth' => '', - 'global' => '', - 'iCal' => '', - 'in seconds. 0 for no JWT token expiration.' => '', - 'last' => '', - 'on weekdays' => '', - 'second' => '', - 'third' => '', - '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', - '{displayName} invited you to the event "{contentTitle}".' => '', - '{name} Calendar' => '', + 'Add profile calendar' => 'Lisää kalenteri', + 'Choose target calendar' => 'Valitse kalenteri', + 'Reminder settings' => '', + 'Add all Space members with status {status}' => '', + 'Add participants...' => '', + 'Added: {users}' => '', + 'Additional Information for participants' => '', + 'Adds a calendar for private or public events to your profile and main menu.' => 'Lisää kalenteri yksityisiin tai julkisiin tapahtumiin profiiliisi ja päävalikkoosi.', + 'Adds an event calendar to this space.' => 'Lisää tapahtumakalenteri tähän tilaan.', + 'After (occurrences)' => '', + 'All Day' => 'Koko päivä', + 'Allow option \'Decline\'' => '', + 'Allow option \'Undecided\'' => '', + 'Allows the user to create new calendar entries' => 'Anna käyttäjien luoda uusia kalenterimerkintöjä', + 'Allows the user to edit/delete existing calendar entries' => 'Anna käyttäjien muokata / poistaa nykyisiä kalenterimerkintöjä', + 'Also include participant email addresses' => '', + 'Attending' => 'Osallistuu', + 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', + 'Birthday' => 'Syntymäpäivä', + 'By upcoming events first' => '', + 'CalDAV' => '', + 'Calendar' => 'Kalenteri', + 'Calendar event' => '', + 'Calendar event content ID' => '', + 'Calendar events' => '', + 'Cancel Event' => 'Poista Tapahtuma', + 'Cannot remove the participant!' => '', + 'Create entry' => 'Luo merkintä', + 'Custom reminder' => '', + 'Day' => '', + 'Days' => '', + 'Default reminder settings' => '', + 'Delete all events' => '', + 'Deleted' => 'Poistettu', + 'Description' => 'Kuvaus', + 'Display events within the next X days' => '', + 'Do you want to install this module on your profile?' => '', + 'Download ICS' => '', + 'Edit' => 'Muokkaa', + 'Edit Event' => '', + 'Edit all events' => '', + 'Edit this and following events' => '', + 'Edit this event' => '', + 'Email' => 'Sähköposti', + 'Enable' => 'Ota käyttöön', + 'Enable Reminder' => '', + 'End' => 'Päätä', + 'End Date' => 'Päätymispäivä', + 'End Time' => 'Päätymisaika', + 'End time must be after start time!' => 'Tapahtuman päätymisaika pitää olla tapahtuman alkamisajan jälkeen!', + 'Event' => 'Tapahtuma', + 'Event Type' => 'Tapahtuman tyyppi', + 'Event Types' => 'Taphtumatyypit', + 'Event could not be deleted!' => '', + 'Event has been be deleted!' => '', + 'Event not found!' => 'Tapahtumaa ei löytynyt', + 'Export as {type}' => '', + 'Files' => 'Tiedostot', + 'Filter' => 'Suodatin', + 'Filter by types' => '', + 'Friday' => 'Perjantai', + 'Here you can configure default settings for all calendar events.' => '', + 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => '', + 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', + 'Hour' => '', + 'I\'m attending' => 'Minä osallistun', + 'ID' => 'ID', + 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', + 'In order to add events to your profile, you have to enable the calendar module first.' => 'Jos haluat lisätä tapahtumia profiiliisi, sinun on ensin otettava kalenteri laajennus käyttöön.', + 'Include participant information in exports' => '', + 'Interested' => 'Kiinostunut', + 'Invalid date or time format!' => '', + 'Invalid day of month given' => '', + 'Invalid event type id selected.' => 'Virheellinen tapahtumien tyyppi.', + 'Invalid frequency given' => '', + 'Invalid interval given' => '', + 'Invalid week day selection' => '', + 'Invite' => 'Kutsu', + 'Invited: {users}' => '', + 'JWT Key' => '', + 'JWT Token Expiration' => '', + 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', + 'List' => 'Lista', + 'Location' => 'Sijainti', + 'Manage entries' => 'Hallinoi merkintöjä', + 'Maximum number of participants' => 'Osallistujien enimmäismäärä', + 'Minute' => '', + 'Mode' => '', + 'Monday' => 'Maanantai', + 'Month' => '', + 'Monthly on day {dayOfMonth}' => '', + 'Monthly on the {position} {dayOfWeek}' => '', + 'Months' => '', + 'Never' => 'Ei koskaan', + 'Next' => 'Seuraava', + 'No new participants were added.' => '', + 'No new participants were invited.' => '', + 'No reminder' => '', + 'Notify participants about changes' => '', + 'On date' => '', + 'Participant removed.' => '', + 'Participants' => 'Osallistujat', + 'Participation Status' => '', + 'Please select new participants.' => '', + 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => '', + 'Profile Calendar' => 'Profiili Kalenteri', + 'Public' => 'Julkinen', + 'Recurring' => '', + 'Reopen Event' => 'Avaa tapahtuma uudelleen', + 'Repeat every' => '', + 'Saturday' => 'Lauantai', + 'Select calendar...' => '', + 'Select space...' => '', + 'Set reminder' => 'Aseta muistutus', + 'Show past events' => '', + 'Start Date' => 'Aloituspäivä', + 'Start Time' => 'Aloitusaika', + 'Status cannot be updated.' => '', + 'Status updated.' => '', + 'Sunday' => 'Sunnuntai', + 'The event has already ended.' => '', + 'This event does not support recurrent events' => '', + 'Thursday' => 'Torstai', + 'Time Zone' => 'Aikavyöhyke', + 'Title' => 'Otsikko', + 'Today' => 'Tänään', + 'Tuesday' => 'Tiistai', + 'Upcoming {type}' => '', + 'Upcoming {type}: {title}' => '', + 'Use default reminder' => '', + 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', + 'User birthdays' => '', + 'Wednesday' => 'Keskiviikko', + 'Week' => '', + 'Weeks' => '', + 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', + 'Year' => '', + 'Years' => '', + 'You cannot invite participants!' => '', + 'You don\'t have permission to delete this event!' => 'Sinulla ei ole lupaa poistaa tätä tapahtumaa!', + 'You have an {type} coming up' => '', + 'You have an {type} coming up: {title}' => '', + 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', + 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', + 'You have been registered for the event "{contentTitle}".' => '', + 'Your reminder settings for event: \'{title}\'' => '', + 'canceled' => 'peruutettu', + 'disabled' => 'liikuntarajoitteinen', + 'first' => '', + 'forth' => '', + 'global' => '', + 'iCal' => '', + 'in seconds. 0 for no JWT token expiration.' => '', + 'last' => '', + 'on weekdays' => '', + 'second' => '', + 'third' => '', + '{displayName} Birthday' => '{displayName} Syntymäpäivä', + '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} lisäsi sinut tapahtumaan "{contentTitle} {time}" sivulla {spaceName}', + '{displayName} added you to the event "{contentTitle}".' => '{displayName} lisäsi sinut juuri tapahtumaan "{contentTitle}"', + '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', + '{displayName} invited you to the event "{contentTitle}".' => '', + '{name} Calendar' => '', ]; diff --git a/messages/fr/base.php b/messages/fr/base.php index fa2edc93..09174517 100644 --- a/messages/fr/base.php +++ b/messages/fr/base.php @@ -1,167 +1,166 @@ Add profile calendar' => 'Ajouter un calendrier à votre profil', - 'Choose target calendar' => 'Choisir le calendrier de destination', - 'Reminder settings' => 'Rappel', - 'Add all Space members with status {status}' => 'Ajouter tous les membres de l’Espace avec le statut {status}', - 'Add participants...' => 'Ajouter des participant·es…', - 'Added: {users}' => 'Ajoutés : {users}', - 'Additional Information for participants' => 'Informations supplémentaires pour les participant·es', - 'Adds a calendar for private or public events to your profile and main menu.' => 'Ce module permet d\'ajouter un calendrier pour les événements privés ou publics à votre profil et au menu principal.', - 'Adds an event calendar to this space.' => 'Ce module permet d\'ajouter un calendrier à cet espace.', - 'After (occurrences)' => 'Après (nombre d\'occurrences)', - 'All Day' => 'Toute la journée', - 'Allow option \'Decline\'' => 'Autoriser le choix « Refuser »', - 'Allow option \'Undecided\'' => 'Autoriser le choix « Je ne sais pas encore »', - 'Allows the user to create new calendar entries' => 'Autoriser l\'utilisateur à créer de nouvelles entrées dans le calendrier', - 'Allows the user to edit/delete existing calendar entries' => 'Autoriser l\'utilisateur à modifier/supprimer des entrées existantes dans le calendrier', - 'Attending' => 'Participe', - 'Before a target calendar can be selected, the module must be activated in at least one Space.' => 'Avant de pouvoir sélectionner un calendrier cible, le module doit être activé dans au moins un espace.', - 'Birthday' => 'Anniversaire', - 'CalDAV' => 'CalDAV', - 'Calendar' => 'Calendrier', - 'Calendar event' => 'Événement du calendrier', - 'Calendar event content ID' => 'ID de contenu de l’évènement de calendrier', - 'Calendar events' => 'Événements du calendrier', - 'Cancel Event' => 'Annuler l\'événement', - 'Cannot remove the participant!' => 'Impossible de retirer le ou la participant·e !', - 'Create entry' => 'Créer une entrée', - 'Custom reminder' => 'Rappels personnalisés', - 'Day' => 'Jour', - 'Days' => 'Jours', - 'Default reminder settings' => 'Rappels par défaut', - 'Delete all events' => 'Supprimer toutes les occurrences', - 'Deleted' => 'Supprimé', - 'Description' => 'Description', - 'Display events within the next X days' => 'Afficher les événements des X prochains jours', - 'Do you want to install this module on your profile?' => 'Voulez-vous installer ce module sur votre profil ?', - 'Download ICS' => 'Télécharger au format ICS', - 'Edit' => 'Modifier', - 'Edit Event' => 'Modifier l’événement', - 'Edit all events' => 'Éditer toutes les occurrences', - 'Edit this and following events' => 'Éditer cette occurrences et les suivantes', - 'Edit this event' => 'Modifier cet événement', - 'Email' => 'E-mail', - 'Enable' => 'Activer', - 'Enable Reminder' => 'Activer un rappel', - 'End' => 'Fin', - 'End Date' => 'Date de fin', - 'End Time' => 'Heure de fin', - 'End time must be after start time!' => 'L\'heure de fin doit être après l\'heure de début !', - 'Event' => 'Événement', - 'Event Type' => 'Type d\'événement', - 'Event Types' => 'Types d’événements', - 'Event could not be deleted!' => 'L’événement n’a pas pu être supprimé !', - 'Event has been be deleted!' => 'L’événement a été supprimé !', - 'Event not found!' => 'Événement introuvable !', - 'Export as {type}' => 'Exporter comme {type}', - 'Files' => 'Fichiers', - 'Filter by types' => 'Filtrer selon les types', - 'Friday' => 'Vendredi', - 'Here you can configure default settings for all calendar events.' => 'Ici vous pouvez configurer les rappels par défaut pour tous les évènements.', - 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => 'Ici vous pouvez configurer les rappels par défaut. Ces paramètres peuvent-être outrepassés par les réglages des espaces ou des profils.', - 'Hour' => 'Heure', - 'I\'m attending' => 'Je participe', - 'ID' => 'ID', - 'In order to add events to your profile, you have to enable the calendar module first.' => 'Pour ajouter des événements à votre profil, vous devez d\'abord activer le module calendrier.', - 'Interested' => 'Intéressé', - 'Invalid date or time format!' => 'Format de date ou d\'heure invalide !', - 'Invalid day of month given' => 'Jour du mois entré incorrect', - 'Invalid event type id selected.' => 'L\'ID du type d’événement sélectionné est invalide.', - 'Invalid frequency given' => 'Fréquence entrée incorrecte', - 'Invalid interval given' => 'Intervalle entré incorrect', - 'Invalid week day selection' => 'Sélection des jours de la semaine invalide', - 'Invite' => 'Inviter', - 'Invited: {users}' => 'Invité·es : {users}', - 'JWT Key' => 'Clé JWT', - 'JWT Token Expiration' => 'Délai d’expiration du jeton JWT', - 'Leave empty to list all events. Enter 0 to display only today\'s events.' => 'Laissez vide pour faire la liste de tous les événements. Saisissez 0 pour afficher uniquement les événements d’aujourd\'hui.', - 'List' => 'Liste', - 'Location' => 'Lieu', - 'Manage entries' => 'Gérer les entrées', - 'Maximum number of participants' => 'Nombre maximum de participants', - 'Minute' => 'Minute', - 'Mode' => 'Mode', - 'Monday' => 'Lundi', - 'Month' => 'Mois', - 'Monthly on day {dayOfMonth}' => 'Tous les mois, le {dayOfMonth}', - 'Monthly on the {position} {dayOfWeek}' => 'Le {position} {dayOfWeek} de chaque mois', - 'Months' => 'Mois', - 'Never' => 'Jamais', - 'Next' => 'Suivant', - 'No new participants were added.' => 'Aucun·e participant·e n’a été ajouté·e.', - 'No new participants were invited.' => 'Aucun·e participant·e n’a été invité·e.', - 'No reminder' => 'Pas de rappel', - 'Notify participants about changes' => 'Notifier les participant·es des modifications', - 'On date' => 'Un jour précis', - 'Participant removed.' => 'Participant·e supprimé·e', - 'Participants' => 'Participant·es', - 'Participation Status' => 'Participation', - 'Please select new participants.' => 'Veuillez sélectionner de nouveaux ou nouvelles participant·es.', - 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => 'Les événements privés sont uniquement visibles par vous et vos amis (si le système d’amitié est activé).', - 'Profile Calendar' => 'Calendrier du profil', - 'Public' => 'Public', - 'Recurring' => 'Récurrence', - 'Reopen Event' => 'Reprendre l’événement', - 'Repeat every' => 'Répéter tous les', - 'Saturday' => 'Samedi', - 'Select calendar...' => 'Sélectionnez un calendrier...', - 'Select space...' => 'Sélectionnez un espace...', - 'Set reminder' => 'Régler un rappel', - 'Show past events' => 'Afficher les événements passés', - 'Start Date' => 'Date de début', - 'Start Time' => 'Heure de début', - 'Status cannot be updated.' => 'Le statut ne peut être mis à jour.', - 'Status updated.' => 'Statut mis à jour.', - 'Sunday' => 'Dimanche', - 'The event has already ended.' => 'L’événement est déjà terminé.', - 'This event does not support recurrent events' => 'Cet évènement ne peut être répété', - 'Thursday' => 'Jeudi', - 'Time Zone' => 'Fuseau horaire', - 'Title' => 'Titre', - 'Today' => 'Aujourd’hui', - 'Tuesday' => 'Mardi', - 'Upcoming {type}' => 'À venir {type}', - 'Upcoming {type}: {title}' => 'À venir {type} : {title}', - 'Use default reminder' => 'Utiliser les rappels par défaut', - 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => 'Utilisé pour la génération sécurisée des URL de flux iCal et l\'authentification CalDAV. La modification de cette clé révoquera toutes les URL iCal et connexions CalDAV existantes. Si cette clé est vide, une clé aléatoire est générée automatiquement.', - 'User birthdays' => 'Anniversaires des utilisateurs et utilisatrices', - 'Wednesday' => 'Mercredi', - 'Week' => 'Semaine', - 'Weeks' => 'Semaines', - 'Year' => 'Année', - 'Years' => 'Années', - 'You cannot invite participants!' => 'Vous ne pouvez pas inviter de participant·es !', - 'You don\'t have permission to delete this event!' => 'Vous n\'avez pas les permissions pour effacer cet événement.', - 'You have an {type} coming up' => 'Un événement de type {type} arrive bientôt', - 'You have an {type} coming up: {title}' => 'Un événement de type {type} arrive bientôt : {title}', - 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => 'Vous êtes inscrit·e à l’événement « {contentTitle} » dans l’espace {spaceName} commençant à {time}.', - 'You have been registered for the event "{contentTitle}", starting at {time}.' => 'Vous êtes inscrit·e à l’événement « {contentTitle} » commençant à {time}.', - 'You have been registered for the event "{contentTitle}".' => 'Vous êtes inscrit·e à l’événement « {contentTitle} ».', - 'Your reminder settings for event: \'{title}\'' => 'Vos paramètres de rappels pour l\'évènement : \'{title}\'', - 'canceled' => 'annulé', - 'disabled' => 'désactivé', - 'first' => 'premier', - 'forth' => 'quatrième', - 'global' => 'global', - 'iCal' => 'iCal', - 'in seconds. 0 for no JWT token expiration.' => 'en secondes. 0 pour aucun délai d’expiration du jeton JWT.', - 'last' => 'dernier', - 'on weekdays' => 'les', - 'second' => 'deuxième', - 'third' => 'troisième', - '{displayName} Birthday' => 'Anniversaire de {displayName}', - '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} vous a ajouté à l\'événement « {contentTitle} » dans l\'espace {spaceName} et qui débute à {time}.', - '{displayName} added you to the event "{contentTitle}".' => '{displayName} vient de vous ajouter à l’événement « {contentTitle} ».', - '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} vient de vous inviter à l’événement « {contentTitle} » dans l’espace {spaceName} ; l’événement commence à {time}.', - '{displayName} invited you to the event "{contentTitle}".' => '{displayName} vient de vous inviter à l’événement « {contentTitle} ».', - '{name} Calendar' => 'Calendrier {name}', - 'Also include participant email addresses' => '', - 'By upcoming events first' => '', - 'Filter' => '', - 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', - 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', - 'Include participant information in exports' => '', - 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', + 'Add profile calendar' => 'Ajouter un calendrier à votre profil', + 'Choose target calendar' => 'Choisir le calendrier de destination', + 'Reminder settings' => 'Rappel', + 'Add all Space members with status {status}' => 'Ajouter tous les membres de l’Espace avec le statut {status}', + 'Add participants...' => 'Ajouter des participant·es…', + 'Added: {users}' => 'Ajoutés : {users}', + 'Additional Information for participants' => 'Informations supplémentaires pour les participant·es', + 'Adds a calendar for private or public events to your profile and main menu.' => 'Ce module permet d\'ajouter un calendrier pour les événements privés ou publics à votre profil et au menu principal.', + 'Adds an event calendar to this space.' => 'Ce module permet d\'ajouter un calendrier à cet espace.', + 'After (occurrences)' => 'Après (nombre d\'occurrences)', + 'All Day' => 'Toute la journée', + 'Allow option \'Decline\'' => 'Autoriser le choix « Refuser »', + 'Allow option \'Undecided\'' => 'Autoriser le choix « Je ne sais pas encore »', + 'Allows the user to create new calendar entries' => 'Autoriser l\'utilisateur à créer de nouvelles entrées dans le calendrier', + 'Allows the user to edit/delete existing calendar entries' => 'Autoriser l\'utilisateur à modifier/supprimer des entrées existantes dans le calendrier', + 'Also include participant email addresses' => '', + 'Attending' => 'Participe', + 'Before a target calendar can be selected, the module must be activated in at least one Space.' => 'Avant de pouvoir sélectionner un calendrier cible, le module doit être activé dans au moins un espace.', + 'Birthday' => 'Anniversaire', + 'By upcoming events first' => '', + 'CalDAV' => 'CalDAV', + 'Calendar' => 'Calendrier', + 'Calendar event' => 'Événement du calendrier', + 'Calendar event content ID' => 'ID de contenu de l’évènement de calendrier', + 'Calendar events' => 'Événements du calendrier', + 'Cancel Event' => 'Annuler l\'événement', + 'Cannot remove the participant!' => 'Impossible de retirer le ou la participant·e !', + 'Create entry' => 'Créer une entrée', + 'Custom reminder' => 'Rappels personnalisés', + 'Day' => 'Jour', + 'Days' => 'Jours', + 'Default reminder settings' => 'Rappels par défaut', + 'Delete all events' => 'Supprimer toutes les occurrences', + 'Deleted' => 'Supprimé', + 'Description' => 'Description', + 'Display events within the next X days' => 'Afficher les événements des X prochains jours', + 'Do you want to install this module on your profile?' => 'Voulez-vous installer ce module sur votre profil ?', + 'Download ICS' => 'Télécharger au format ICS', + 'Edit' => 'Modifier', + 'Edit Event' => 'Modifier l’événement', + 'Edit all events' => 'Éditer toutes les occurrences', + 'Edit this and following events' => 'Éditer cette occurrences et les suivantes', + 'Edit this event' => 'Modifier cet événement', + 'Email' => 'E-mail', + 'Enable' => 'Activer', + 'Enable Reminder' => 'Activer un rappel', + 'End' => 'Fin', + 'End Date' => 'Date de fin', + 'End Time' => 'Heure de fin', + 'End time must be after start time!' => 'L\'heure de fin doit être après l\'heure de début !', + 'Event' => 'Événement', + 'Event Type' => 'Type d\'événement', + 'Event Types' => 'Types d’événements', + 'Event could not be deleted!' => 'L’événement n’a pas pu être supprimé !', + 'Event has been be deleted!' => 'L’événement a été supprimé !', + 'Event not found!' => 'Événement introuvable !', + 'Export as {type}' => 'Exporter comme {type}', + 'Files' => 'Fichiers', + 'Filter' => 'Filtre', + 'Filter by types' => 'Filtrer selon les types', + 'Friday' => 'Vendredi', + 'Here you can configure default settings for all calendar events.' => 'Ici vous pouvez configurer les rappels par défaut pour tous les évènements.', + 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => 'Ici vous pouvez configurer les rappels par défaut. Ces paramètres peuvent-être outrepassés par les réglages des espaces ou des profils.', + 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', + 'Hour' => 'Heure', + 'I\'m attending' => 'Je participe', + 'ID' => 'ID', + 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', + 'In order to add events to your profile, you have to enable the calendar module first.' => 'Pour ajouter des événements à votre profil, vous devez d\'abord activer le module calendrier.', + 'Include participant information in exports' => '', + 'Interested' => 'Intéressé', + 'Invalid date or time format!' => 'Format de date ou d\'heure invalide !', + 'Invalid day of month given' => 'Jour du mois entré incorrect', + 'Invalid event type id selected.' => 'L\'ID du type d’événement sélectionné est invalide.', + 'Invalid frequency given' => 'Fréquence entrée incorrecte', + 'Invalid interval given' => 'Intervalle entré incorrect', + 'Invalid week day selection' => 'Sélection des jours de la semaine invalide', + 'Invite' => 'Inviter', + 'Invited: {users}' => 'Invité·es : {users}', + 'JWT Key' => 'Clé JWT', + 'JWT Token Expiration' => 'Délai d’expiration du jeton JWT', + 'Leave empty to list all events. Enter 0 to display only today\'s events.' => 'Laissez vide pour faire la liste de tous les événements. Saisissez 0 pour afficher uniquement les événements d’aujourd\'hui.', + 'List' => 'Liste', + 'Location' => 'Lieu', + 'Manage entries' => 'Gérer les entrées', + 'Maximum number of participants' => 'Nombre maximum de participants', + 'Minute' => 'Minute', + 'Mode' => 'Mode', + 'Monday' => 'Lundi', + 'Month' => 'Mois', + 'Monthly on day {dayOfMonth}' => 'Tous les mois, le {dayOfMonth}', + 'Monthly on the {position} {dayOfWeek}' => 'Le {position} {dayOfWeek} de chaque mois', + 'Months' => 'Mois', + 'Never' => 'Jamais', + 'Next' => 'Suivant', + 'No new participants were added.' => 'Aucun·e participant·e n’a été ajouté·e.', + 'No new participants were invited.' => 'Aucun·e participant·e n’a été invité·e.', + 'No reminder' => 'Pas de rappel', + 'Notify participants about changes' => 'Notifier les participant·es des modifications', + 'On date' => 'Un jour précis', + 'Participant removed.' => 'Participant·e supprimé·e', + 'Participants' => 'Participant·es', + 'Participation Status' => 'Participation', + 'Please select new participants.' => 'Veuillez sélectionner de nouveaux ou nouvelles participant·es.', + 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => 'Les événements privés sont uniquement visibles par vous et vos amis (si le système d’amitié est activé).', + 'Profile Calendar' => 'Calendrier du profil', + 'Public' => 'Public', + 'Recurring' => 'Récurrence', + 'Reopen Event' => 'Reprendre l’événement', + 'Repeat every' => 'Répéter tous les', + 'Saturday' => 'Samedi', + 'Select calendar...' => 'Sélectionnez un calendrier...', + 'Select space...' => 'Sélectionnez un espace...', + 'Set reminder' => 'Régler un rappel', + 'Show past events' => 'Afficher les événements passés', + 'Start Date' => 'Date de début', + 'Start Time' => 'Heure de début', + 'Status cannot be updated.' => 'Le statut ne peut être mis à jour.', + 'Status updated.' => 'Statut mis à jour.', + 'Sunday' => 'Dimanche', + 'The event has already ended.' => 'L’événement est déjà terminé.', + 'This event does not support recurrent events' => 'Cet évènement ne peut être répété', + 'Thursday' => 'Jeudi', + 'Time Zone' => 'Fuseau horaire', + 'Title' => 'Titre', + 'Today' => 'Aujourd’hui', + 'Tuesday' => 'Mardi', + 'Upcoming {type}' => 'À venir {type}', + 'Upcoming {type}: {title}' => 'À venir {type} : {title}', + 'Use default reminder' => 'Utiliser les rappels par défaut', + 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => 'Utilisé pour la génération sécurisée des URL de flux iCal et l\'authentification CalDAV. La modification de cette clé révoquera toutes les URL iCal et connexions CalDAV existantes. Si cette clé est vide, une clé aléatoire est générée automatiquement.', + 'User birthdays' => 'Anniversaires des utilisateurs et utilisatrices', + 'Wednesday' => 'Mercredi', + 'Week' => 'Semaine', + 'Weeks' => 'Semaines', + 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', + 'Year' => 'Année', + 'Years' => 'Années', + 'You cannot invite participants!' => 'Vous ne pouvez pas inviter de participant·es !', + 'You don\'t have permission to delete this event!' => 'Vous n\'avez pas les permissions pour effacer cet événement.', + 'You have an {type} coming up' => 'Un événement de type {type} arrive bientôt', + 'You have an {type} coming up: {title}' => 'Un événement de type {type} arrive bientôt : {title}', + 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => 'Vous êtes inscrit·e à l’événement « {contentTitle} » dans l’espace {spaceName} commençant à {time}.', + 'You have been registered for the event "{contentTitle}", starting at {time}.' => 'Vous êtes inscrit·e à l’événement « {contentTitle} » commençant à {time}.', + 'You have been registered for the event "{contentTitle}".' => 'Vous êtes inscrit·e à l’événement « {contentTitle} ».', + 'Your reminder settings for event: \'{title}\'' => 'Vos paramètres de rappels pour l\'évènement : \'{title}\'', + 'canceled' => 'annulé', + 'disabled' => 'désactivé', + 'first' => 'premier', + 'forth' => 'quatrième', + 'global' => 'global', + 'iCal' => 'iCal', + 'in seconds. 0 for no JWT token expiration.' => 'en secondes. 0 pour aucun délai d’expiration du jeton JWT.', + 'last' => 'dernier', + 'on weekdays' => 'les', + 'second' => 'deuxième', + 'third' => 'troisième', + '{displayName} Birthday' => 'Anniversaire de {displayName}', + '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} vous a ajouté à l\'événement « {contentTitle} » dans l\'espace {spaceName} et qui débute à {time}.', + '{displayName} added you to the event "{contentTitle}".' => '{displayName} vient de vous ajouter à l’événement « {contentTitle} ».', + '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} vient de vous inviter à l’événement « {contentTitle} » dans l’espace {spaceName} ; l’événement commence à {time}.', + '{displayName} invited you to the event "{contentTitle}".' => '{displayName} vient de vous inviter à l’événement « {contentTitle} ».', + '{name} Calendar' => 'Calendrier {name}', ]; diff --git a/messages/hr/base.php b/messages/hr/base.php index 764861ea..b1108eec 100644 --- a/messages/hr/base.php +++ b/messages/hr/base.php @@ -1,167 +1,166 @@ Add profile calendar' => 'Dodaj profilni kalendar', - 'Choose target calendar' => 'Odaberite ciljni kalendar', - 'Reminder settings' => 'Postavke podsjetnika', - 'Adds a calendar for private or public events to your profile and main menu.' => 'Dodavaje kalendar za privatne ili javne događaje na vaš profil i glavni izbornik.', - 'Adds an event calendar to this space.' => 'Dodaje kalendar događaja u ovaj prostor.', - 'After (occurrences)' => 'Nakon (pojave)', - 'All Day' => 'Cijeli dan', - 'Allows the user to create new calendar entries' => 'Korisniku omogućuje stvaranje novih unosa u kalendar', - 'Allows the user to edit/delete existing calendar entries' => 'Korisniku omogućuje uređivanje / brisanje postojećih unosa u kalendar', - 'Attending' => 'Prisustvovati', - 'Birthday' => 'Rođendan', - 'Calendar' => 'Kalendar', - 'Cancel Event' => 'Otkaži događaj', - 'Create entry' => 'Kreriaj unos', - 'Custom reminder' => 'Prilagođeni podsjetnik', - 'Day' => 'Dan', - 'Days' => 'Dana', - 'Default reminder settings' => 'Zadane postavke podsjetnika', - 'Delete all events' => 'Izbriši sve događaje', - 'Deleted' => 'Obrisano', - 'Description' => 'Opis', - 'Do you want to install this module on your profile?' => 'Želite li instalirati ovaj modul na svoj profil?', - 'Edit' => 'Uredi', - 'Edit all events' => 'Uredi sve događaje', - 'Edit this and following events' => 'Uredite ovaj i sljedeće događaje', - 'Edit this event' => 'Uredite ovaj događaj', - 'Email' => 'Email', - 'Enable' => 'Omogući', - 'End' => 'Završi', - 'End Date' => 'Datum završetka', - 'End Time' => 'Vrijeme završetka', - 'End time must be after start time!' => 'Vrijeme završetka mora biti nakon vremena početka!', - 'Event' => 'Događaj', - 'Event Type' => 'Tip događaja', - 'Event Types' => 'Vrste događaja', - 'Event not found!' => 'Događaj nije pronađen!', - 'Files' => 'Datoteke', - 'Friday' => 'Petak', - 'Here you can configure default settings for all calendar events.' => 'Ovdje možete konfigurirati zadane postavke za sve kalendarske događaje.', - 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => 'Ovdje možete konfigurirati globalne zadane podsjetnike. Te se postavke mogu prebrisati na razini prostora / profila.', - 'Hour' => 'Sat', - 'I\'m attending' => 'Ja prisustvujem', - 'ID' => 'ID', - 'In order to add events to your profile, you have to enable the calendar module first.' => 'Da biste dodali događaje u svoj profil, najprije morate omogućiti kalendarski modul.', - 'Interested' => 'Zainteresiran', - 'Invalid date or time format!' => 'Nevažeći format datuma ili vremena!', - 'Invalid day of month given' => 'Dat je nevažeći dan u mjesecu', - 'Invalid event type id selected.' => 'Odabran je ID vrste vrste događaja koji nije valjan.', - 'Invalid frequency given' => 'Navedena je neispravna učestalost', - 'Invalid interval given' => 'Naveden je nevažeći interval', - 'Invalid week day selection' => 'Nevažeći odabir dana u tjednu', - 'Invite' => 'Poziv', - 'List' => 'Lista', - 'Location' => 'Lokacija', - 'Manage entries' => 'Upravljaj unosima', - 'Maximum number of participants' => 'Maksimalan broj sudionika', - 'Minute' => 'Minuta', - 'Monday' => 'Ponedjeljak', - 'Month' => 'Mjesec', - 'Monthly on day {dayOfMonth}' => 'Mjesečno na dan {dayOfMonth}', - 'Monthly on the {position} {dayOfWeek}' => 'Mjesečno na {position} {dayOfWeek}', - 'Months' => 'Mjeseci', - 'Never' => 'Nikad', - 'Next' => 'Dalje', - 'No reminder' => 'Nema podsjetnika', - 'On date' => 'Na datum', - 'Participants' => 'Sudionici', - 'Profile Calendar' => 'Profil Kalendar', - 'Public' => 'Javno', - 'Recurring' => 'Ponavljajući', - 'Reopen Event' => 'Ponovo otvori događaj', - 'Repeat every' => 'Ponovite svaki', - 'Saturday' => 'Subota', - 'Set reminder' => 'Postavi podsjetnik', - 'Start Date' => 'Datum početka', - 'Start Time' => 'Vrijeme početka', - 'Sunday' => 'Nedjelja', - 'This event does not support recurrent events' => 'Ovaj događaj ne podržava ponavljajuće događaje', - 'Thursday' => 'Četvrtak', - 'Time Zone' => 'Vremenska zona', - 'Title' => 'Naziv', - 'Today' => 'Danas', - 'Tuesday' => 'Utorak', - 'Upcoming {type}' => 'Predstojeći {type}', - 'Upcoming {type}: {title}' => 'Predstojeći {type}: {title}', - 'Use default reminder' => 'Upotrijebi zadani podsjetnik', - 'User birthdays' => 'Rođendan korisnika', - 'Wednesday' => 'Srijeda', - 'Week' => 'Sedmica', - 'Weeks' => 'Tjedni', - 'Year' => 'Godina', - 'Years' => 'Godine', - 'You don\'t have permission to delete this event!' => 'Nemate dopuštenje da obrišete ovaj događaj!', - 'You have an {type} coming up' => 'Predstoji vam {type}', - 'You have an {type} coming up: {title}' => 'Pred vama je {type}: {title}', - 'Your reminder settings for event: \'{title}\'' => 'Postavke podsjetnika za događaj: \'{title}\'', - 'canceled' => 'otkazano', - 'disabled' => 'onemogućeno', - 'first' => 'prvi', - 'forth' => 'unaprijed', - 'last' => 'zadnji', - 'on weekdays' => 'radnim danima', - 'second' => 'drugi', - 'third' => 'treći', - '{displayName} Birthday' => '{displayName} Rođendane', - '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} vas je upravo dodao na događaj "{contentTitle}" u prostoru {spaceName} počevši od {time}.', - '{displayName} added you to the event "{contentTitle}".' => '{displayName} vas je upravo dodao na događaj "{contentTitle}".', - 'Add all Space members with status {status}' => '', - 'Add participants...' => '', - 'Added: {users}' => '', - 'Additional Information for participants' => '', - 'Allow option \'Decline\'' => '', - 'Allow option \'Undecided\'' => '', - 'Also include participant email addresses' => '', - 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', - 'By upcoming events first' => '', - 'CalDAV' => '', - 'Calendar event' => '', - 'Calendar event content ID' => '', - 'Calendar events' => '', - 'Cannot remove the participant!' => '', - 'Display events within the next X days' => '', - 'Download ICS' => '', - 'Edit Event' => '', - 'Enable Reminder' => '', - 'Event could not be deleted!' => '', - 'Event has been be deleted!' => '', - 'Export as {type}' => '', - 'Filter' => '', - 'Filter by types' => '', - 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', - 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', - 'Include participant information in exports' => '', - 'Invited: {users}' => '', - 'JWT Key' => '', - 'JWT Token Expiration' => '', - 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', - 'Mode' => '', - 'No new participants were added.' => '', - 'No new participants were invited.' => '', - 'Notify participants about changes' => '', - 'Participant removed.' => '', - 'Participation Status' => '', - 'Please select new participants.' => '', - 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => '', - 'Select calendar...' => '', - 'Select space...' => '', - 'Show past events' => '', - 'Status cannot be updated.' => '', - 'Status updated.' => '', - 'The event has already ended.' => '', - 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', - 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', - 'You cannot invite participants!' => '', - 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', - 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', - 'You have been registered for the event "{contentTitle}".' => '', - 'global' => '', - 'iCal' => '', - 'in seconds. 0 for no JWT token expiration.' => '', - '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', - '{displayName} invited you to the event "{contentTitle}".' => '', - '{name} Calendar' => '', + 'Add profile calendar' => 'Dodaj profilni kalendar', + 'Choose target calendar' => 'Odaberite ciljni kalendar', + 'Reminder settings' => 'Postavke podsjetnika', + 'Add all Space members with status {status}' => '', + 'Add participants...' => '', + 'Added: {users}' => '', + 'Additional Information for participants' => '', + 'Adds a calendar for private or public events to your profile and main menu.' => 'Dodavaje kalendar za privatne ili javne događaje na vaš profil i glavni izbornik.', + 'Adds an event calendar to this space.' => 'Dodaje kalendar događaja u ovaj prostor.', + 'After (occurrences)' => 'Nakon (pojave)', + 'All Day' => 'Cijeli dan', + 'Allow option \'Decline\'' => '', + 'Allow option \'Undecided\'' => '', + 'Allows the user to create new calendar entries' => 'Korisniku omogućuje stvaranje novih unosa u kalendar', + 'Allows the user to edit/delete existing calendar entries' => 'Korisniku omogućuje uređivanje / brisanje postojećih unosa u kalendar', + 'Also include participant email addresses' => '', + 'Attending' => 'Prisustvovati', + 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', + 'Birthday' => 'Rođendan', + 'By upcoming events first' => '', + 'CalDAV' => '', + 'Calendar' => 'Kalendar', + 'Calendar event' => '', + 'Calendar event content ID' => '', + 'Calendar events' => '', + 'Cancel Event' => 'Otkaži događaj', + 'Cannot remove the participant!' => '', + 'Create entry' => 'Kreriaj unos', + 'Custom reminder' => 'Prilagođeni podsjetnik', + 'Day' => 'Dan', + 'Days' => 'Dana', + 'Default reminder settings' => 'Zadane postavke podsjetnika', + 'Delete all events' => 'Izbriši sve događaje', + 'Deleted' => 'Obrisano', + 'Description' => 'Opis', + 'Display events within the next X days' => '', + 'Do you want to install this module on your profile?' => 'Želite li instalirati ovaj modul na svoj profil?', + 'Download ICS' => '', + 'Edit' => 'Uredi', + 'Edit Event' => '', + 'Edit all events' => 'Uredi sve događaje', + 'Edit this and following events' => 'Uredite ovaj i sljedeće događaje', + 'Edit this event' => 'Uredite ovaj događaj', + 'Email' => 'Email', + 'Enable' => 'Omogući', + 'Enable Reminder' => '', + 'End' => 'Završi', + 'End Date' => 'Datum završetka', + 'End Time' => 'Vrijeme završetka', + 'End time must be after start time!' => 'Vrijeme završetka mora biti nakon vremena početka!', + 'Event' => 'Događaj', + 'Event Type' => 'Tip događaja', + 'Event Types' => 'Vrste događaja', + 'Event could not be deleted!' => '', + 'Event has been be deleted!' => '', + 'Event not found!' => 'Događaj nije pronađen!', + 'Export as {type}' => '', + 'Files' => 'Datoteke', + 'Filter' => 'Filter', + 'Filter by types' => '', + 'Friday' => 'Petak', + 'Here you can configure default settings for all calendar events.' => 'Ovdje možete konfigurirati zadane postavke za sve kalendarske događaje.', + 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => 'Ovdje možete konfigurirati globalne zadane podsjetnike. Te se postavke mogu prebrisati na razini prostora / profila.', + 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', + 'Hour' => 'Sat', + 'I\'m attending' => 'Ja prisustvujem', + 'ID' => 'ID', + 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', + 'In order to add events to your profile, you have to enable the calendar module first.' => 'Da biste dodali događaje u svoj profil, najprije morate omogućiti kalendarski modul.', + 'Include participant information in exports' => '', + 'Interested' => 'Zainteresiran', + 'Invalid date or time format!' => 'Nevažeći format datuma ili vremena!', + 'Invalid day of month given' => 'Dat je nevažeći dan u mjesecu', + 'Invalid event type id selected.' => 'Odabran je ID vrste vrste događaja koji nije valjan.', + 'Invalid frequency given' => 'Navedena je neispravna učestalost', + 'Invalid interval given' => 'Naveden je nevažeći interval', + 'Invalid week day selection' => 'Nevažeći odabir dana u tjednu', + 'Invite' => 'Poziv', + 'Invited: {users}' => '', + 'JWT Key' => '', + 'JWT Token Expiration' => '', + 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', + 'List' => 'Lista', + 'Location' => 'Lokacija', + 'Manage entries' => 'Upravljaj unosima', + 'Maximum number of participants' => 'Maksimalan broj sudionika', + 'Minute' => 'Minuta', + 'Mode' => '', + 'Monday' => 'Ponedjeljak', + 'Month' => 'Mjesec', + 'Monthly on day {dayOfMonth}' => 'Mjesečno na dan {dayOfMonth}', + 'Monthly on the {position} {dayOfWeek}' => 'Mjesečno na {position} {dayOfWeek}', + 'Months' => 'Mjeseci', + 'Never' => 'Nikad', + 'Next' => 'Dalje', + 'No new participants were added.' => '', + 'No new participants were invited.' => '', + 'No reminder' => 'Nema podsjetnika', + 'Notify participants about changes' => '', + 'On date' => 'Na datum', + 'Participant removed.' => '', + 'Participants' => 'Sudionici', + 'Participation Status' => '', + 'Please select new participants.' => '', + 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => '', + 'Profile Calendar' => 'Profil Kalendar', + 'Public' => 'Javno', + 'Recurring' => 'Ponavljajući', + 'Reopen Event' => 'Ponovo otvori događaj', + 'Repeat every' => 'Ponovite svaki', + 'Saturday' => 'Subota', + 'Select calendar...' => '', + 'Select space...' => '', + 'Set reminder' => 'Postavi podsjetnik', + 'Show past events' => '', + 'Start Date' => 'Datum početka', + 'Start Time' => 'Vrijeme početka', + 'Status cannot be updated.' => '', + 'Status updated.' => '', + 'Sunday' => 'Nedjelja', + 'The event has already ended.' => '', + 'This event does not support recurrent events' => 'Ovaj događaj ne podržava ponavljajuće događaje', + 'Thursday' => 'Četvrtak', + 'Time Zone' => 'Vremenska zona', + 'Title' => 'Naziv', + 'Today' => 'Danas', + 'Tuesday' => 'Utorak', + 'Upcoming {type}' => 'Predstojeći {type}', + 'Upcoming {type}: {title}' => 'Predstojeći {type}: {title}', + 'Use default reminder' => 'Upotrijebi zadani podsjetnik', + 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', + 'User birthdays' => 'Rođendan korisnika', + 'Wednesday' => 'Srijeda', + 'Week' => 'Sedmica', + 'Weeks' => 'Tjedni', + 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', + 'Year' => 'Godina', + 'Years' => 'Godine', + 'You cannot invite participants!' => '', + 'You don\'t have permission to delete this event!' => 'Nemate dopuštenje da obrišete ovaj događaj!', + 'You have an {type} coming up' => 'Predstoji vam {type}', + 'You have an {type} coming up: {title}' => 'Pred vama je {type}: {title}', + 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', + 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', + 'You have been registered for the event "{contentTitle}".' => '', + 'Your reminder settings for event: \'{title}\'' => 'Postavke podsjetnika za događaj: \'{title}\'', + 'canceled' => 'otkazano', + 'disabled' => 'onemogućeno', + 'first' => 'prvi', + 'forth' => 'unaprijed', + 'global' => '', + 'iCal' => '', + 'in seconds. 0 for no JWT token expiration.' => '', + 'last' => 'zadnji', + 'on weekdays' => 'radnim danima', + 'second' => 'drugi', + 'third' => 'treći', + '{displayName} Birthday' => '{displayName} Rođendane', + '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} vas je upravo dodao na događaj "{contentTitle}" u prostoru {spaceName} počevši od {time}.', + '{displayName} added you to the event "{contentTitle}".' => '{displayName} vas je upravo dodao na događaj "{contentTitle}".', + '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', + '{displayName} invited you to the event "{contentTitle}".' => '', + '{name} Calendar' => '', ]; diff --git a/messages/hu/base.php b/messages/hu/base.php index cb7c7e7a..d5e7f90b 100644 --- a/messages/hu/base.php +++ b/messages/hu/base.php @@ -1,167 +1,166 @@ Add profile calendar' => 'Profil naptár hozzáadása', - 'Choose target calendar' => 'Célnaptár kiválasztása', - 'Reminder settings' => 'Emlékeztető beállítások', - 'Add all Space members with status {status}' => 'A Közösség összes {status} állapotú tagjának hozzáadása', - 'Add participants...' => 'Résztvevők hozzáadása...', - 'Added: {users}' => 'Hozzáadva: {users}', - 'Additional Information for participants' => 'További információk a résztvevőknek', - 'Adds a calendar for private or public events to your profile and main menu.' => 'Naptár létrehozása privát és publikus eseményekhez a profilodon és a főmenüben.', - 'Adds an event calendar to this space.' => 'Esemény hozzáadása ehhez a témakörhöz.', - 'After (occurrences)' => 'Után (előfordulások)', - 'All Day' => 'Egész nap', - 'Allow option \'Decline\'' => '\'Elutasítás\' opció engedélyezése', - 'Allow option \'Undecided\'' => '\'Meg nem döntött\' opció engedélyezése', - 'Allows the user to create new calendar entries' => 'Engedélyezze a felhasználónak, hogy új naptárbejegyzéseket hozhasson létre', - 'Allows the user to edit/delete existing calendar entries' => 'Engedélyezze a felhasználónak, hogy naptárbejegyzéseket szerkeszthessen/törölhessen', - 'Attending' => 'Részt vesz', - 'Before a target calendar can be selected, the module must be activated in at least one Space.' => 'A célnaptár kiválasztása előtt a modult legalább egy közösségben aktiválni kell.', - 'Birthday' => 'Születésnap', - 'Calendar' => 'Naptár', - 'Cancel Event' => 'Esemény törlése', - 'Cannot remove the participant!' => 'A résztvevőt nem lehet eltávolítani!', - 'Create entry' => 'Bejegyzés létrehozása', - 'Custom reminder' => 'Egyéni emlékeztető', - 'Day' => 'Nap', - 'Days' => 'Nap', - 'Default reminder settings' => 'Az emlékeztető alapértelmezett beállításai', - 'Delete all events' => 'Az összes esemény törlése', - 'Deleted' => 'Törölve', - 'Description' => 'Leírás', - 'Do you want to install this module on your profile?' => 'Telepíteni szeretnéd ezt a modult a profilodhoz?', - 'Download ICS' => 'ICS letöltése', - 'Edit' => 'Szerkesztés', - 'Edit Event' => 'Esemény szerkesztése', - 'Edit all events' => 'Az összes esemény szerkesztése', - 'Edit this and following events' => 'Szerkessze ezt és a következő eseményeket', - 'Edit this event' => 'Ez az esemény szerkesztése', - 'Email' => 'Email', - 'Enable' => 'Engedélyezés', - 'Enable Reminder' => 'Emlékeztető engedélyezése', - 'End' => 'Befejezés', - 'End Date' => 'Befejezés dátuma', - 'End Time' => 'Befejezés ideje', - 'End time must be after start time!' => 'A befejezés idejének a kezdés ideje után kell lennie!', - 'Event' => 'Esemény', - 'Event Type' => 'Esemény típusa', - 'Event Types' => 'Eseménytípusok', - 'Event could not be deleted!' => 'Az eseményt nem sikerült törölni!', - 'Event has been be deleted!' => 'Az esemény törölve lett!', - 'Event not found!' => 'Az esemény nem található!', - 'Export as {type}' => 'Exportálás mint {type}', - 'Files' => 'Fájlok', - 'Filter by types' => 'Szűrés típus szerint', - 'Friday' => 'Péntek', - 'Here you can configure default settings for all calendar events.' => 'Itt konfigurálhatja az összes naptáresemény alapértelmezett beállításait.', - 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => 'Itt konfigurálhatja a globális alapértelmezett emlékeztetőket. Ezek a beállítások felülírhatók Space/profil szinten.', - 'Hour' => 'Óra', - 'I\'m attending' => 'Részt veszek', - 'ID' => 'ID', - 'In order to add events to your profile, you have to enable the calendar module first.' => 'Ahhoz, hogy eseményeket adhass a profilodhoz, először engedélyezned kell a naptár modult.', - 'Interested' => 'Érdeklődik', - 'Invalid date or time format!' => 'Érvénytelen dátum vagy idő formátum!', - 'Invalid day of month given' => 'A megadott nap a hónapban érvénytelen', - 'Invalid event type id selected.' => 'Érvénytelen esemény azonosító lett kiválasztva.', - 'Invalid frequency given' => 'Érvénytelen gyakoriság van megadva', - 'Invalid interval given' => 'Érvénytelen intervallum van megadva', - 'Invalid week day selection' => 'Érvénytelen a hét napjának kiválasztása', - 'Invite' => 'Meghívás', - 'Invited: {users}' => 'Meghívott: {users}', - 'JWT Key' => 'JWT kulcs', - 'JWT Token Expiration' => 'JWT token lejárata', - 'List' => 'Lista', - 'Location' => 'Hely', - 'Manage entries' => 'Bejegyzések kezelése', - 'Maximum number of participants' => 'Résztvevők maximális száma', - 'Minute' => 'Perc', - 'Mode' => 'Mód', - 'Monday' => 'Hétfő', - 'Month' => 'Hónap', - 'Monthly on day {dayOfMonth}' => 'Havonta ezen a napon: {dayOfMonth}', - 'Monthly on the {position} {dayOfWeek}' => 'Havonta itt: {position} ezen a héten {dayOfWeek}', - 'Months' => 'Hónap', - 'Never' => 'Soha', - 'Next' => 'Következő', - 'No new participants were added.' => 'Új résztvevők nem kerültek hozzáadásra.', - 'No new participants were invited.' => 'Új résztvevők nincsenek meghívva.', - 'No reminder' => 'Nincs emlékeztető', - 'Notify participants about changes' => 'Értesítse a résztvevőket a változásokról', - 'On date' => 'Dátumon', - 'Participant removed.' => 'Résztvevő eltávolítva.', - 'Participants' => 'Résztvevők', - 'Participation Status' => 'Részvételi állapot', - 'Please select new participants.' => 'Kérjük, válasszon új résztvevőket.', - 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => 'A privát eseményeket csak Ön láthatja, és ha a baráti rendszer aktiválva van, akkor az ismerősei is láthatják.', - 'Profile Calendar' => 'Profil naptár', - 'Public' => 'Nyilvános', - 'Recurring' => 'Ismétlődő', - 'Reopen Event' => 'Esemény újranyitása', - 'Repeat every' => 'Ismétlés ekkor', - 'Saturday' => 'Szombat', - 'Set reminder' => 'Emlékeztető beállítása', - 'Start Date' => 'Kezdés dátuma', - 'Start Time' => 'Kezdés időpontja', - 'Status cannot be updated.' => 'Az állapot nem frissíthető.', - 'Status updated.' => 'Állapot frissítve.', - 'Sunday' => 'Vasárnap', - 'The event has already ended.' => 'Az esemény már véget ért.', - 'This event does not support recurrent events' => 'Ez az esemény nem támogatja a visszatérő eseményeket', - 'Thursday' => 'Csütörtök', - 'Time Zone' => 'Időzóna', - 'Title' => 'Cím', - 'Today' => 'Ma', - 'Tuesday' => 'Kedd', - 'Upcoming {type}' => 'Közelgő {type}', - 'Upcoming {type}: {title}' => 'Közelgő {type}: {title}', - 'Use default reminder' => 'Alapértelmezett emlékeztető használata', - 'User birthdays' => 'Felhasználói születésnapok', - 'Wednesday' => 'Szerda', - 'Week' => 'Hét', - 'Weeks' => 'Hét', - 'Year' => 'Év', - 'Years' => 'Év', - 'You cannot invite participants!' => 'Nem lehet résztvevőket meghívni!', - 'You don\'t have permission to delete this event!' => 'Nincs jogosultságod törölni az eseményt!', - 'You have an {type} coming up' => 'Önnek {type} fog következni', - 'You have an {type} coming up: {title}' => 'Önnek {type} fog következni: {title}', - 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => 'Regisztrált a(z) "{contentTitle}" eseményre itt: {spaceName}, {time} időponttól kezdődően', - 'You have been registered for the event "{contentTitle}", starting at {time}.' => 'Regisztrált a(z) "{contentTitle}" eseményre, amely kezdete: {time}.', - 'You have been registered for the event "{contentTitle}".' => 'Regisztrált a „{contentTitle}” eseményre.', - 'Your reminder settings for event: \'{title}\'' => 'Az esemény emlékeztető beállításai: \'{title}\'', - 'canceled' => 'törölve', - 'disabled' => 'Tiltva', - 'first' => 'első', - 'forth' => 'következő', - 'global' => 'globális', - 'last' => 'utolsó', - 'on weekdays' => 'hét napjain', - 'second' => 'másodperc', - 'third' => 'harmadik', - '{displayName} Birthday' => '{displayName} születésnapja', - '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} felvette téged a(z) "{contentTitle}" eseményhez a(z) {spaceName} közösségben, {time} időponttól kezdve.', - '{displayName} added you to the event "{contentTitle}".' => '{displayName} felvett téged a „{contentTitle}” eseményhez.', - '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} meghívott a „{contentTitle}” eseményre a(z) {spaceName} közösségben, {time} időponttól kezdődően.', - '{displayName} invited you to the event "{contentTitle}".' => '{displayName} meghívott a „{contentTitle}” eseményre.', - 'Also include participant email addresses' => '', - 'By upcoming events first' => '', - 'CalDAV' => '', - 'Calendar event' => '', - 'Calendar event content ID' => '', - 'Calendar events' => '', - 'Display events within the next X days' => '', - 'Filter' => '', - 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', - 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', - 'Include participant information in exports' => '', - 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', - 'Select calendar...' => '', - 'Select space...' => '', - 'Show past events' => '', - 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', - 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', - 'iCal' => '', - 'in seconds. 0 for no JWT token expiration.' => '', - '{name} Calendar' => '', + 'Add profile calendar' => 'Profil naptár hozzáadása', + 'Choose target calendar' => 'Célnaptár kiválasztása', + 'Reminder settings' => 'Emlékeztető beállítások', + 'Add all Space members with status {status}' => 'A Közösség összes {status} állapotú tagjának hozzáadása', + 'Add participants...' => 'Résztvevők hozzáadása...', + 'Added: {users}' => 'Hozzáadva: {users}', + 'Additional Information for participants' => 'További információk a résztvevőknek', + 'Adds a calendar for private or public events to your profile and main menu.' => 'Naptár létrehozása privát és publikus eseményekhez a profilodon és a főmenüben.', + 'Adds an event calendar to this space.' => 'Esemény hozzáadása ehhez a témakörhöz.', + 'After (occurrences)' => 'Után (előfordulások)', + 'All Day' => 'Egész nap', + 'Allow option \'Decline\'' => '\'Elutasítás\' opció engedélyezése', + 'Allow option \'Undecided\'' => '\'Meg nem döntött\' opció engedélyezése', + 'Allows the user to create new calendar entries' => 'Engedélyezze a felhasználónak, hogy új naptárbejegyzéseket hozhasson létre', + 'Allows the user to edit/delete existing calendar entries' => 'Engedélyezze a felhasználónak, hogy naptárbejegyzéseket szerkeszthessen/törölhessen', + 'Also include participant email addresses' => '', + 'Attending' => 'Részt vesz', + 'Before a target calendar can be selected, the module must be activated in at least one Space.' => 'A célnaptár kiválasztása előtt a modult legalább egy közösségben aktiválni kell.', + 'Birthday' => 'Születésnap', + 'By upcoming events first' => '', + 'CalDAV' => '', + 'Calendar' => 'Naptár', + 'Calendar event' => '', + 'Calendar event content ID' => '', + 'Calendar events' => '', + 'Cancel Event' => 'Esemény törlése', + 'Cannot remove the participant!' => 'A résztvevőt nem lehet eltávolítani!', + 'Create entry' => 'Bejegyzés létrehozása', + 'Custom reminder' => 'Egyéni emlékeztető', + 'Day' => 'Nap', + 'Days' => 'Nap', + 'Default reminder settings' => 'Az emlékeztető alapértelmezett beállításai', + 'Delete all events' => 'Az összes esemény törlése', + 'Deleted' => 'Törölve', + 'Description' => 'Leírás', + 'Display events within the next X days' => '', + 'Do you want to install this module on your profile?' => 'Telepíteni szeretnéd ezt a modult a profilodhoz?', + 'Download ICS' => 'ICS letöltése', + 'Edit' => 'Szerkesztés', + 'Edit Event' => 'Esemény szerkesztése', + 'Edit all events' => 'Az összes esemény szerkesztése', + 'Edit this and following events' => 'Szerkessze ezt és a következő eseményeket', + 'Edit this event' => 'Ez az esemény szerkesztése', + 'Email' => 'Email', + 'Enable' => 'Engedélyezés', + 'Enable Reminder' => 'Emlékeztető engedélyezése', + 'End' => 'Befejezés', + 'End Date' => 'Befejezés dátuma', + 'End Time' => 'Befejezés ideje', + 'End time must be after start time!' => 'A befejezés idejének a kezdés ideje után kell lennie!', + 'Event' => 'Esemény', + 'Event Type' => 'Esemény típusa', + 'Event Types' => 'Eseménytípusok', + 'Event could not be deleted!' => 'Az eseményt nem sikerült törölni!', + 'Event has been be deleted!' => 'Az esemény törölve lett!', + 'Event not found!' => 'Az esemény nem található!', + 'Export as {type}' => 'Exportálás mint {type}', + 'Files' => 'Fájlok', + 'Filter' => 'Szűrés', + 'Filter by types' => 'Szűrés típus szerint', + 'Friday' => 'Péntek', + 'Here you can configure default settings for all calendar events.' => 'Itt konfigurálhatja az összes naptáresemény alapértelmezett beállításait.', + 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => 'Itt konfigurálhatja a globális alapértelmezett emlékeztetőket. Ezek a beállítások felülírhatók Space/profil szinten.', + 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', + 'Hour' => 'Óra', + 'I\'m attending' => 'Részt veszek', + 'ID' => 'ID', + 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', + 'In order to add events to your profile, you have to enable the calendar module first.' => 'Ahhoz, hogy eseményeket adhass a profilodhoz, először engedélyezned kell a naptár modult.', + 'Include participant information in exports' => '', + 'Interested' => 'Érdeklődik', + 'Invalid date or time format!' => 'Érvénytelen dátum vagy idő formátum!', + 'Invalid day of month given' => 'A megadott nap a hónapban érvénytelen', + 'Invalid event type id selected.' => 'Érvénytelen esemény azonosító lett kiválasztva.', + 'Invalid frequency given' => 'Érvénytelen gyakoriság van megadva', + 'Invalid interval given' => 'Érvénytelen intervallum van megadva', + 'Invalid week day selection' => 'Érvénytelen a hét napjának kiválasztása', + 'Invite' => 'Meghívás', + 'Invited: {users}' => 'Meghívott: {users}', + 'JWT Key' => 'JWT kulcs', + 'JWT Token Expiration' => 'JWT token lejárata', + 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', + 'List' => 'Lista', + 'Location' => 'Hely', + 'Manage entries' => 'Bejegyzések kezelése', + 'Maximum number of participants' => 'Résztvevők maximális száma', + 'Minute' => 'Perc', + 'Mode' => 'Mód', + 'Monday' => 'Hétfő', + 'Month' => 'Hónap', + 'Monthly on day {dayOfMonth}' => 'Havonta ezen a napon: {dayOfMonth}', + 'Monthly on the {position} {dayOfWeek}' => 'Havonta itt: {position} ezen a héten {dayOfWeek}', + 'Months' => 'Hónap', + 'Never' => 'Soha', + 'Next' => 'Következő', + 'No new participants were added.' => 'Új résztvevők nem kerültek hozzáadásra.', + 'No new participants were invited.' => 'Új résztvevők nincsenek meghívva.', + 'No reminder' => 'Nincs emlékeztető', + 'Notify participants about changes' => 'Értesítse a résztvevőket a változásokról', + 'On date' => 'Dátumon', + 'Participant removed.' => 'Résztvevő eltávolítva.', + 'Participants' => 'Résztvevők', + 'Participation Status' => 'Részvételi állapot', + 'Please select new participants.' => 'Kérjük, válasszon új résztvevőket.', + 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => 'A privát eseményeket csak Ön láthatja, és ha a baráti rendszer aktiválva van, akkor az ismerősei is láthatják.', + 'Profile Calendar' => 'Profil naptár', + 'Public' => 'Nyilvános', + 'Recurring' => 'Ismétlődő', + 'Reopen Event' => 'Esemény újranyitása', + 'Repeat every' => 'Ismétlés ekkor', + 'Saturday' => 'Szombat', + 'Select calendar...' => '', + 'Select space...' => '', + 'Set reminder' => 'Emlékeztető beállítása', + 'Show past events' => '', + 'Start Date' => 'Kezdés dátuma', + 'Start Time' => 'Kezdés időpontja', + 'Status cannot be updated.' => 'Az állapot nem frissíthető.', + 'Status updated.' => 'Állapot frissítve.', + 'Sunday' => 'Vasárnap', + 'The event has already ended.' => 'Az esemény már véget ért.', + 'This event does not support recurrent events' => 'Ez az esemény nem támogatja a visszatérő eseményeket', + 'Thursday' => 'Csütörtök', + 'Time Zone' => 'Időzóna', + 'Title' => 'Cím', + 'Today' => 'Ma', + 'Tuesday' => 'Kedd', + 'Upcoming {type}' => 'Közelgő {type}', + 'Upcoming {type}: {title}' => 'Közelgő {type}: {title}', + 'Use default reminder' => 'Alapértelmezett emlékeztető használata', + 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', + 'User birthdays' => 'Felhasználói születésnapok', + 'Wednesday' => 'Szerda', + 'Week' => 'Hét', + 'Weeks' => 'Hét', + 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', + 'Year' => 'Év', + 'Years' => 'Év', + 'You cannot invite participants!' => 'Nem lehet résztvevőket meghívni!', + 'You don\'t have permission to delete this event!' => 'Nincs jogosultságod törölni az eseményt!', + 'You have an {type} coming up' => 'Önnek {type} fog következni', + 'You have an {type} coming up: {title}' => 'Önnek {type} fog következni: {title}', + 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => 'Regisztrált a(z) "{contentTitle}" eseményre itt: {spaceName}, {time} időponttól kezdődően', + 'You have been registered for the event "{contentTitle}", starting at {time}.' => 'Regisztrált a(z) "{contentTitle}" eseményre, amely kezdete: {time}.', + 'You have been registered for the event "{contentTitle}".' => 'Regisztrált a „{contentTitle}” eseményre.', + 'Your reminder settings for event: \'{title}\'' => 'Az esemény emlékeztető beállításai: \'{title}\'', + 'canceled' => 'törölve', + 'disabled' => 'Tiltva', + 'first' => 'első', + 'forth' => 'következő', + 'global' => 'globális', + 'iCal' => '', + 'in seconds. 0 for no JWT token expiration.' => '', + 'last' => 'utolsó', + 'on weekdays' => 'hét napjain', + 'second' => 'másodperc', + 'third' => 'harmadik', + '{displayName} Birthday' => '{displayName} születésnapja', + '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} felvette téged a(z) "{contentTitle}" eseményhez a(z) {spaceName} közösségben, {time} időponttól kezdve.', + '{displayName} added you to the event "{contentTitle}".' => '{displayName} felvett téged a „{contentTitle}” eseményhez.', + '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} meghívott a „{contentTitle}” eseményre a(z) {spaceName} közösségben, {time} időponttól kezdődően.', + '{displayName} invited you to the event "{contentTitle}".' => '{displayName} meghívott a „{contentTitle}” eseményre.', + '{name} Calendar' => '', ]; diff --git a/messages/id/base.php b/messages/id/base.php index adafc1da..a6b2c650 100644 --- a/messages/id/base.php +++ b/messages/id/base.php @@ -1,167 +1,166 @@ Add profile calendar' => 'Tambah profile calendar', - 'Choose target calendar' => 'Pilih target calendar', - 'Adds a calendar for private or public events to your profile and main menu.' => 'Tambahkan kalender untuk privat atau acara publik ke profil dan main menu', - 'Adds an event calendar to this space.' => 'Tambahkan kalender acara ke ruang ini', - 'All Day' => 'Setiap Hari', - 'Attending' => 'Menghadiri', - 'Birthday' => 'Ulangtahun', - 'Calendar' => 'kalender', - 'Cancel Event' => 'Batalkan Acara', - 'Description' => 'Deskripsi', - 'Edit' => 'Ubah', - 'Enable' => 'Aktifkan', - 'End Date' => 'Tanggal berakhir', - 'End Time' => 'Waktu berakhir', - 'End time must be after start time!' => 'waktu akhir harus setelah waktu mulai !!', - 'Event' => 'Acara', - 'Event Type' => 'Kategori acara', - 'Event not found!' => 'Acara tidak ditemukan', - 'Files' => 'Files', - 'ID' => 'ID', - 'Interested' => 'Ketertarikan', - 'Invite' => 'Undang', - 'Never' => 'Tidak pernah', - 'Next' => 'Selanjutnya', - 'Participants' => 'Partisipasi', - 'Profile Calendar' => 'Profil Kalendar', - 'Public' => 'Publik', - 'Start Date' => 'Tanggal dimulai', - 'Start Time' => 'Waktu dimulai', - 'Time Zone' => 'Zona waktu', - 'Title' => 'Judul', - 'You don\'t have permission to delete this event!' => 'kamu tidak mempunyai akses untuk menghapus acara ini!', - 'canceled' => 'dibatalkan', - 'disabled' => 'dengan disabilitas', - '{displayName} Birthday' => '{displayName} Berulangtahun', - 'Reminder settings' => '', - 'Add all Space members with status {status}' => '', - 'Add participants...' => '', - 'Added: {users}' => '', - 'Additional Information for participants' => '', - 'After (occurrences)' => '', - 'Allow option \'Decline\'' => '', - 'Allow option \'Undecided\'' => '', - 'Allows the user to create new calendar entries' => '', - 'Allows the user to edit/delete existing calendar entries' => '', - 'Also include participant email addresses' => '', - 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', - 'By upcoming events first' => '', - 'CalDAV' => '', - 'Calendar event' => '', - 'Calendar event content ID' => '', - 'Calendar events' => '', - 'Cannot remove the participant!' => '', - 'Create entry' => '', - 'Custom reminder' => '', - 'Day' => '', - 'Days' => '', - 'Default reminder settings' => '', - 'Delete all events' => '', - 'Deleted' => '', - 'Display events within the next X days' => '', - 'Do you want to install this module on your profile?' => '', - 'Download ICS' => '', - 'Edit Event' => '', - 'Edit all events' => '', - 'Edit this and following events' => '', - 'Edit this event' => '', - 'Email' => '', - 'Enable Reminder' => '', - 'End' => '', - 'Event Types' => '', - 'Event could not be deleted!' => '', - 'Event has been be deleted!' => '', - 'Export as {type}' => '', - 'Filter' => '', - 'Filter by types' => '', - 'Friday' => '', - 'Here you can configure default settings for all calendar events.' => '', - 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => '', - 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', - 'Hour' => '', - 'I\'m attending' => '', - 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', - 'In order to add events to your profile, you have to enable the calendar module first.' => '', - 'Include participant information in exports' => '', - 'Invalid date or time format!' => '', - 'Invalid day of month given' => '', - 'Invalid event type id selected.' => '', - 'Invalid frequency given' => '', - 'Invalid interval given' => '', - 'Invalid week day selection' => '', - 'Invited: {users}' => '', - 'JWT Key' => '', - 'JWT Token Expiration' => '', - 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', - 'List' => '', - 'Location' => '', - 'Manage entries' => '', - 'Maximum number of participants' => '', - 'Minute' => '', - 'Mode' => '', - 'Monday' => '', - 'Month' => '', - 'Monthly on day {dayOfMonth}' => '', - 'Monthly on the {position} {dayOfWeek}' => '', - 'Months' => '', - 'No new participants were added.' => '', - 'No new participants were invited.' => '', - 'No reminder' => '', - 'Notify participants about changes' => '', - 'On date' => '', - 'Participant removed.' => '', - 'Participation Status' => '', - 'Please select new participants.' => '', - 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => '', - 'Recurring' => '', - 'Reopen Event' => '', - 'Repeat every' => '', - 'Saturday' => '', - 'Select calendar...' => '', - 'Select space...' => '', - 'Set reminder' => '', - 'Show past events' => '', - 'Status cannot be updated.' => '', - 'Status updated.' => '', - 'Sunday' => '', - 'The event has already ended.' => '', - 'This event does not support recurrent events' => '', - 'Thursday' => '', - 'Today' => '', - 'Tuesday' => '', - 'Upcoming {type}' => '', - 'Upcoming {type}: {title}' => '', - 'Use default reminder' => '', - 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', - 'User birthdays' => '', - 'Wednesday' => '', - 'Week' => '', - 'Weeks' => '', - 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', - 'Year' => '', - 'Years' => '', - 'You cannot invite participants!' => '', - 'You have an {type} coming up' => '', - 'You have an {type} coming up: {title}' => '', - 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', - 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', - 'You have been registered for the event "{contentTitle}".' => '', - 'Your reminder settings for event: \'{title}\'' => '', - 'first' => '', - 'forth' => '', - 'global' => '', - 'iCal' => '', - 'in seconds. 0 for no JWT token expiration.' => '', - 'last' => '', - 'on weekdays' => '', - 'second' => '', - 'third' => '', - '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', - '{displayName} added you to the event "{contentTitle}".' => '', - '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', - '{displayName} invited you to the event "{contentTitle}".' => '', - '{name} Calendar' => '', + 'Add profile calendar' => 'Tambah profile calendar', + 'Choose target calendar' => 'Pilih target calendar', + 'Reminder settings' => '', + 'Add all Space members with status {status}' => '', + 'Add participants...' => '', + 'Added: {users}' => '', + 'Additional Information for participants' => '', + 'Adds a calendar for private or public events to your profile and main menu.' => 'Tambahkan kalender untuk privat atau acara publik ke profil dan main menu', + 'Adds an event calendar to this space.' => 'Tambahkan kalender acara ke ruang ini', + 'After (occurrences)' => '', + 'All Day' => 'Setiap Hari', + 'Allow option \'Decline\'' => '', + 'Allow option \'Undecided\'' => '', + 'Allows the user to create new calendar entries' => '', + 'Allows the user to edit/delete existing calendar entries' => '', + 'Also include participant email addresses' => '', + 'Attending' => 'Menghadiri', + 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', + 'Birthday' => 'Ulangtahun', + 'By upcoming events first' => '', + 'CalDAV' => '', + 'Calendar' => 'kalender', + 'Calendar event' => '', + 'Calendar event content ID' => '', + 'Calendar events' => '', + 'Cancel Event' => 'Batalkan Acara', + 'Cannot remove the participant!' => '', + 'Create entry' => '', + 'Custom reminder' => '', + 'Day' => '', + 'Days' => '', + 'Default reminder settings' => '', + 'Delete all events' => '', + 'Deleted' => '', + 'Description' => 'Deskripsi', + 'Display events within the next X days' => '', + 'Do you want to install this module on your profile?' => '', + 'Download ICS' => '', + 'Edit' => 'Ubah', + 'Edit Event' => '', + 'Edit all events' => '', + 'Edit this and following events' => '', + 'Edit this event' => '', + 'Email' => '', + 'Enable' => 'Aktifkan', + 'Enable Reminder' => '', + 'End' => '', + 'End Date' => 'Tanggal berakhir', + 'End Time' => 'Waktu berakhir', + 'End time must be after start time!' => 'waktu akhir harus setelah waktu mulai !!', + 'Event' => 'Acara', + 'Event Type' => 'Kategori acara', + 'Event Types' => '', + 'Event could not be deleted!' => '', + 'Event has been be deleted!' => '', + 'Event not found!' => 'Acara tidak ditemukan', + 'Export as {type}' => '', + 'Files' => 'Files', + 'Filter' => 'Filter', + 'Filter by types' => '', + 'Friday' => '', + 'Here you can configure default settings for all calendar events.' => '', + 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => '', + 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', + 'Hour' => '', + 'I\'m attending' => '', + 'ID' => 'ID', + 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', + 'In order to add events to your profile, you have to enable the calendar module first.' => '', + 'Include participant information in exports' => '', + 'Interested' => 'Ketertarikan', + 'Invalid date or time format!' => '', + 'Invalid day of month given' => '', + 'Invalid event type id selected.' => '', + 'Invalid frequency given' => '', + 'Invalid interval given' => '', + 'Invalid week day selection' => '', + 'Invite' => 'Undang', + 'Invited: {users}' => '', + 'JWT Key' => '', + 'JWT Token Expiration' => '', + 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', + 'List' => '', + 'Location' => '', + 'Manage entries' => '', + 'Maximum number of participants' => '', + 'Minute' => '', + 'Mode' => '', + 'Monday' => '', + 'Month' => '', + 'Monthly on day {dayOfMonth}' => '', + 'Monthly on the {position} {dayOfWeek}' => '', + 'Months' => '', + 'Never' => 'Tidak pernah', + 'Next' => 'Selanjutnya', + 'No new participants were added.' => '', + 'No new participants were invited.' => '', + 'No reminder' => '', + 'Notify participants about changes' => '', + 'On date' => '', + 'Participant removed.' => '', + 'Participants' => 'Partisipasi', + 'Participation Status' => '', + 'Please select new participants.' => '', + 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => '', + 'Profile Calendar' => 'Profil Kalendar', + 'Public' => 'Publik', + 'Recurring' => '', + 'Reopen Event' => '', + 'Repeat every' => '', + 'Saturday' => '', + 'Select calendar...' => '', + 'Select space...' => '', + 'Set reminder' => '', + 'Show past events' => '', + 'Start Date' => 'Tanggal dimulai', + 'Start Time' => 'Waktu dimulai', + 'Status cannot be updated.' => '', + 'Status updated.' => '', + 'Sunday' => '', + 'The event has already ended.' => '', + 'This event does not support recurrent events' => '', + 'Thursday' => '', + 'Time Zone' => 'Zona waktu', + 'Title' => 'Judul', + 'Today' => '', + 'Tuesday' => '', + 'Upcoming {type}' => '', + 'Upcoming {type}: {title}' => '', + 'Use default reminder' => '', + 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', + 'User birthdays' => '', + 'Wednesday' => '', + 'Week' => '', + 'Weeks' => '', + 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', + 'Year' => '', + 'Years' => '', + 'You cannot invite participants!' => '', + 'You don\'t have permission to delete this event!' => 'kamu tidak mempunyai akses untuk menghapus acara ini!', + 'You have an {type} coming up' => '', + 'You have an {type} coming up: {title}' => '', + 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', + 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', + 'You have been registered for the event "{contentTitle}".' => '', + 'Your reminder settings for event: \'{title}\'' => '', + 'canceled' => 'dibatalkan', + 'disabled' => 'dengan disabilitas', + 'first' => '', + 'forth' => '', + 'global' => '', + 'iCal' => '', + 'in seconds. 0 for no JWT token expiration.' => '', + 'last' => '', + 'on weekdays' => '', + 'second' => '', + 'third' => '', + '{displayName} Birthday' => '{displayName} Berulangtahun', + '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', + '{displayName} added you to the event "{contentTitle}".' => '', + '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', + '{displayName} invited you to the event "{contentTitle}".' => '', + '{name} Calendar' => '', ]; diff --git a/messages/it/base.php b/messages/it/base.php index 85f3416a..2cb88972 100644 --- a/messages/it/base.php +++ b/messages/it/base.php @@ -1,167 +1,166 @@ Add profile calendar' => 'Aggiungi il calendario del profilo', - 'Choose target calendar' => 'Scegli il calendario di destinazione', - 'Reminder settings' => 'Impostazioni del promemoria ', - 'Add all Space members with status {status}' => 'Aggiungi tutti i membri dello spazio con stato {status}', - 'Add participants...' => 'Aggiungi partecipanti...', - 'Added: {users}' => 'Aggiunto: {users}', - 'Additional Information for participants' => 'Informazioni aggiuntive per i partecipanti', - 'Adds a calendar for private or public events to your profile and main menu.' => 'Aggiunge un calendario per eventi privati e pubblici sul tuo profilo e sul tuo menù principale', - 'Adds an event calendar to this space.' => 'Aggiunge un evento al calendario per questo space.', - 'After (occurrences)' => 'Dopo (occorrenze)', - 'All Day' => 'Tutto il giorno', - 'Allow option \'Decline\'' => 'Consenti opzione \'Rifiuta\'', - 'Allow option \'Undecided\'' => 'Consenti opzione \'Indeciso\'', - 'Allows the user to create new calendar entries' => 'Permetti all\'utente di creare nuove voci del calendario', - 'Allows the user to edit/delete existing calendar entries' => 'Consente all\'utente di modificare/eliminare le voci del calendario esistenti', - 'Attending' => 'Parteciperò', - 'Birthday' => 'Compleanno', - 'Calendar' => 'Calendario', - 'Cancel Event' => 'Annulla evento', - 'Cannot remove the participant!' => 'Impossibile rimuovere il partecipante!', - 'Create entry' => 'Crea voce', - 'Custom reminder' => 'Promemoria personalizzato', - 'Day' => 'Giorno', - 'Days' => 'Giorni', - 'Default reminder settings' => 'Impostazioni predefinite promemoria', - 'Delete all events' => 'Cancella tutti gli eventi', - 'Deleted' => 'Eliminata', - 'Description' => 'Descrizione', - 'Do you want to install this module on your profile?' => 'Vuoi installare questo modulo sul tuo profilo?', - 'Download ICS' => 'Scarica ICS', - 'Edit' => 'Modifica', - 'Edit Event' => 'Modifica evento', - 'Edit all events' => 'Modifica tutti gli eventi', - 'Edit this and following events' => 'Modifica questo e gli eventi seguenti', - 'Edit this event' => 'Modifica questo evento', - 'Email' => 'Email', - 'Enable' => 'Abilita', - 'Enable Reminder' => 'Abilita promemoria', - 'End' => 'Fine', - 'End Date' => 'Data fine', - 'End Time' => 'Ora fine', - 'End time must be after start time!' => 'La data fine deve essere successiva alla data inizio!', - 'Event' => 'Evento', - 'Event Type' => 'Tipologia di Evento', - 'Event Types' => 'Tipi di evento', - 'Event not found!' => 'Evento non trovato!', - 'Export as {type}' => 'Esporta come {type}', - 'Files' => 'File', - 'Filter by types' => 'Filtra per tipi', - 'Friday' => 'Venerdì', - 'Here you can configure default settings for all calendar events.' => 'Qui puoi configurare le impostazioni predefinite per tutti gli eventi del calendario.', - 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => 'Qui puoi configurare promemoria predefiniti globali. Queste impostazioni possono essere sovrascritte a livello di spazio / profilo.', - 'Hour' => 'Ora', - 'I\'m attending' => 'sto partecipando', - 'ID' => 'ID', - 'In order to add events to your profile, you have to enable the calendar module first.' => 'Per poter aggiungere degli eventi nel tuo profilo, devi aver prima abilitato il Modulo Calendario.', - 'Interested' => 'Interessato', - 'Invalid date or time format!' => 'Formato data o ora non valido!', - 'Invalid day of month given' => 'Giorno del mese specificato non valido', - 'Invalid event type id selected.' => 'Tipologia di Evento non corretta', - 'Invalid frequency given' => 'Frequenza specificata non valida', - 'Invalid interval given' => 'Intervallo specificato non valido', - 'Invalid week day selection' => 'Seleziona del giorno della settimana non valido', - 'Invite' => 'Invita', - 'Invited: {users}' => 'Invitati: {users}', - 'JWT Key' => 'Key JWT', - 'JWT Token Expiration' => 'Scadenza token JWT', - 'List' => 'Lista', - 'Location' => 'Luogo', - 'Manage entries' => 'Gestione delle voci', - 'Maximum number of participants' => 'Numero Massimo di Partecipanti', - 'Minute' => 'Minuto', - 'Mode' => 'Modalità', - 'Monday' => 'Lunedì', - 'Month' => 'Mese', - 'Monthly on day {dayOfMonth}' => 'Mensile nel giorno {dayOfMonth}', - 'Monthly on the {position} {dayOfWeek}' => 'Mensile in {position} {dayOfWeek}', - 'Months' => 'Mesi', - 'Never' => 'Mai', - 'Next' => 'Successivo', - 'No new participants were added.' => 'Non sono stati aggiunti nuovi partecipanti.', - 'No new participants were invited.' => 'Nessun nuovo partecipante è stato invitato.', - 'No reminder' => 'Nessun promemoria', - 'Notify participants about changes' => 'Informare i partecipanti sui cambiamenti', - 'On date' => 'sulla data', - 'Participant removed.' => 'Partecipante rimosso.', - 'Participants' => 'Partecipanti', - 'Participation Status' => 'Stato di partecipazione', - 'Please select new participants.' => 'Seleziona nuovi partecipanti.', - 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => 'Gli eventi privati sono visibili solo all\'utente e, se il sistema di amicizia è attivato, ai suoi amici.', - 'Profile Calendar' => 'Calendario del profilo', - 'Public' => 'Pubblico', - 'Recurring' => 'Ricorrente', - 'Reopen Event' => 'Riapri evento', - 'Repeat every' => 'Ripeti ogni', - 'Saturday' => 'Sabato', - 'Set reminder' => 'Imposta promemoria', - 'Start Date' => 'Data inizio', - 'Start Time' => 'Ora inizio', - 'Status cannot be updated.' => 'Lo stato non può essere aggiornato.', - 'Status updated.' => 'Stato aggiornato.', - 'Sunday' => 'Domenica', - 'The event has already ended.' => 'L\'evento è già terminato.', - 'This event does not support recurrent events' => 'Questo evento non supporta gli eventi ricorrenti', - 'Thursday' => 'Giovedì', - 'Time Zone' => 'Fuso Orario', - 'Title' => 'Titolo', - 'Today' => 'Oggi', - 'Tuesday' => 'Martedì', - 'Upcoming {type}' => 'In arrivo {type}', - 'Upcoming {type}: {title}' => 'In arrivo {type}: {title}', - 'Use default reminder' => 'Usa promemoria predefinito', - 'User birthdays' => 'Compleanni degli utenti', - 'Wednesday' => 'Mercoledì', - 'Week' => 'Settimana', - 'Weeks' => 'Settimane', - 'Year' => 'Anno', - 'Years' => 'Anni', - 'You cannot invite participants!' => 'Non puoi invitare partecipanti!', - 'You don\'t have permission to delete this event!' => 'Non hai il permesso di cancellare questo evento!', - 'You have an {type} coming up' => 'Hai un {type} in arrivo', - 'You have an {type} coming up: {title}' => 'Hai un {type} in arrivo: {title}', - 'Your reminder settings for event: \'{title}\'' => 'Le tue impostazioni di promemoria per l\'evento: \'{title}\' ', - 'canceled' => 'cancellato', - 'disabled' => 'Disabilitato', - 'first' => 'primo', - 'forth' => 'quarto', - 'global' => 'globale', - 'last' => 'ultimo', - 'on weekdays' => 'nei giorni della settimana', - 'second' => 'secondo', - 'third' => 'terzo', - '{displayName} Birthday' => 'Compleanno di {displayName}', - '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} ti ha appena aggiunto all\' evento "{contentTitle}" nello spazio {spaceName} che inizierà alle {time}.', - '{displayName} added you to the event "{contentTitle}".' => '{displayName} ti ha appena aggiunto all\'evento "{contentTitle}".', - '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} ti ha appena invitato all\'evento "{contentTitle}" nello spazio {spaceName} a partire dalle {time}.', - '{displayName} invited you to the event "{contentTitle}".' => '{displayName} ti ha appena invitato all\'evento "{contentTitle}".', - 'Also include participant email addresses' => '', - 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', - 'By upcoming events first' => '', - 'CalDAV' => '', - 'Calendar event' => '', - 'Calendar event content ID' => '', - 'Calendar events' => '', - 'Display events within the next X days' => '', - 'Event could not be deleted!' => '', - 'Event has been be deleted!' => '', - 'Filter' => '', - 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', - 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', - 'Include participant information in exports' => '', - 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', - 'Select calendar...' => '', - 'Select space...' => '', - 'Show past events' => '', - 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', - 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', - 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', - 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', - 'You have been registered for the event "{contentTitle}".' => '', - 'iCal' => '', - 'in seconds. 0 for no JWT token expiration.' => '', - '{name} Calendar' => '', + 'Add profile calendar' => 'Aggiungi il calendario del profilo', + 'Choose target calendar' => 'Scegli il calendario di destinazione', + 'Reminder settings' => 'Impostazioni del promemoria ', + 'Add all Space members with status {status}' => 'Aggiungi tutti i membri dello spazio con stato {status}', + 'Add participants...' => 'Aggiungi partecipanti...', + 'Added: {users}' => 'Aggiunto: {users}', + 'Additional Information for participants' => 'Informazioni aggiuntive per i partecipanti', + 'Adds a calendar for private or public events to your profile and main menu.' => 'Aggiunge un calendario per eventi privati e pubblici sul tuo profilo e sul tuo menù principale', + 'Adds an event calendar to this space.' => 'Aggiunge un evento al calendario per questo space.', + 'After (occurrences)' => 'Dopo (occorrenze)', + 'All Day' => 'Tutto il giorno', + 'Allow option \'Decline\'' => 'Consenti opzione \'Rifiuta\'', + 'Allow option \'Undecided\'' => 'Consenti opzione \'Indeciso\'', + 'Allows the user to create new calendar entries' => 'Permetti all\'utente di creare nuove voci del calendario', + 'Allows the user to edit/delete existing calendar entries' => 'Consente all\'utente di modificare/eliminare le voci del calendario esistenti', + 'Also include participant email addresses' => '', + 'Attending' => 'Parteciperò', + 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', + 'Birthday' => 'Compleanno', + 'By upcoming events first' => '', + 'CalDAV' => '', + 'Calendar' => 'Calendario', + 'Calendar event' => '', + 'Calendar event content ID' => '', + 'Calendar events' => '', + 'Cancel Event' => 'Annulla evento', + 'Cannot remove the participant!' => 'Impossibile rimuovere il partecipante!', + 'Create entry' => 'Crea voce', + 'Custom reminder' => 'Promemoria personalizzato', + 'Day' => 'Giorno', + 'Days' => 'Giorni', + 'Default reminder settings' => 'Impostazioni predefinite promemoria', + 'Delete all events' => 'Cancella tutti gli eventi', + 'Deleted' => 'Eliminata', + 'Description' => 'Descrizione', + 'Display events within the next X days' => '', + 'Do you want to install this module on your profile?' => 'Vuoi installare questo modulo sul tuo profilo?', + 'Download ICS' => 'Scarica ICS', + 'Edit' => 'Modifica', + 'Edit Event' => 'Modifica evento', + 'Edit all events' => 'Modifica tutti gli eventi', + 'Edit this and following events' => 'Modifica questo e gli eventi seguenti', + 'Edit this event' => 'Modifica questo evento', + 'Email' => 'Email', + 'Enable' => 'Abilita', + 'Enable Reminder' => 'Abilita promemoria', + 'End' => 'Fine', + 'End Date' => 'Data fine', + 'End Time' => 'Ora fine', + 'End time must be after start time!' => 'La data fine deve essere successiva alla data inizio!', + 'Event' => 'Evento', + 'Event Type' => 'Tipologia di Evento', + 'Event Types' => 'Tipi di evento', + 'Event could not be deleted!' => '', + 'Event has been be deleted!' => '', + 'Event not found!' => 'Evento non trovato!', + 'Export as {type}' => 'Esporta come {type}', + 'Files' => 'File', + 'Filter' => 'Filtro', + 'Filter by types' => 'Filtra per tipi', + 'Friday' => 'Venerdì', + 'Here you can configure default settings for all calendar events.' => 'Qui puoi configurare le impostazioni predefinite per tutti gli eventi del calendario.', + 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => 'Qui puoi configurare promemoria predefiniti globali. Queste impostazioni possono essere sovrascritte a livello di spazio / profilo.', + 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', + 'Hour' => 'Ora', + 'I\'m attending' => 'sto partecipando', + 'ID' => 'ID', + 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', + 'In order to add events to your profile, you have to enable the calendar module first.' => 'Per poter aggiungere degli eventi nel tuo profilo, devi aver prima abilitato il Modulo Calendario.', + 'Include participant information in exports' => '', + 'Interested' => 'Interessato', + 'Invalid date or time format!' => 'Formato data o ora non valido!', + 'Invalid day of month given' => 'Giorno del mese specificato non valido', + 'Invalid event type id selected.' => 'Tipologia di Evento non corretta', + 'Invalid frequency given' => 'Frequenza specificata non valida', + 'Invalid interval given' => 'Intervallo specificato non valido', + 'Invalid week day selection' => 'Seleziona del giorno della settimana non valido', + 'Invite' => 'Invita', + 'Invited: {users}' => 'Invitati: {users}', + 'JWT Key' => 'Key JWT', + 'JWT Token Expiration' => 'Scadenza token JWT', + 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', + 'List' => 'Lista', + 'Location' => 'Luogo', + 'Manage entries' => 'Gestione delle voci', + 'Maximum number of participants' => 'Numero Massimo di Partecipanti', + 'Minute' => 'Minuto', + 'Mode' => 'Modalità', + 'Monday' => 'Lunedì', + 'Month' => 'Mese', + 'Monthly on day {dayOfMonth}' => 'Mensile nel giorno {dayOfMonth}', + 'Monthly on the {position} {dayOfWeek}' => 'Mensile in {position} {dayOfWeek}', + 'Months' => 'Mesi', + 'Never' => 'Mai', + 'Next' => 'Successivo', + 'No new participants were added.' => 'Non sono stati aggiunti nuovi partecipanti.', + 'No new participants were invited.' => 'Nessun nuovo partecipante è stato invitato.', + 'No reminder' => 'Nessun promemoria', + 'Notify participants about changes' => 'Informare i partecipanti sui cambiamenti', + 'On date' => 'sulla data', + 'Participant removed.' => 'Partecipante rimosso.', + 'Participants' => 'Partecipanti', + 'Participation Status' => 'Stato di partecipazione', + 'Please select new participants.' => 'Seleziona nuovi partecipanti.', + 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => 'Gli eventi privati sono visibili solo all\'utente e, se il sistema di amicizia è attivato, ai suoi amici.', + 'Profile Calendar' => 'Calendario del profilo', + 'Public' => 'Pubblico', + 'Recurring' => 'Ricorrente', + 'Reopen Event' => 'Riapri evento', + 'Repeat every' => 'Ripeti ogni', + 'Saturday' => 'Sabato', + 'Select calendar...' => '', + 'Select space...' => '', + 'Set reminder' => 'Imposta promemoria', + 'Show past events' => '', + 'Start Date' => 'Data inizio', + 'Start Time' => 'Ora inizio', + 'Status cannot be updated.' => 'Lo stato non può essere aggiornato.', + 'Status updated.' => 'Stato aggiornato.', + 'Sunday' => 'Domenica', + 'The event has already ended.' => 'L\'evento è già terminato.', + 'This event does not support recurrent events' => 'Questo evento non supporta gli eventi ricorrenti', + 'Thursday' => 'Giovedì', + 'Time Zone' => 'Fuso Orario', + 'Title' => 'Titolo', + 'Today' => 'Oggi', + 'Tuesday' => 'Martedì', + 'Upcoming {type}' => 'In arrivo {type}', + 'Upcoming {type}: {title}' => 'In arrivo {type}: {title}', + 'Use default reminder' => 'Usa promemoria predefinito', + 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', + 'User birthdays' => 'Compleanni degli utenti', + 'Wednesday' => 'Mercoledì', + 'Week' => 'Settimana', + 'Weeks' => 'Settimane', + 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', + 'Year' => 'Anno', + 'Years' => 'Anni', + 'You cannot invite participants!' => 'Non puoi invitare partecipanti!', + 'You don\'t have permission to delete this event!' => 'Non hai il permesso di cancellare questo evento!', + 'You have an {type} coming up' => 'Hai un {type} in arrivo', + 'You have an {type} coming up: {title}' => 'Hai un {type} in arrivo: {title}', + 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', + 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', + 'You have been registered for the event "{contentTitle}".' => '', + 'Your reminder settings for event: \'{title}\'' => 'Le tue impostazioni di promemoria per l\'evento: \'{title}\' ', + 'canceled' => 'cancellato', + 'disabled' => 'Disabilitato', + 'first' => 'primo', + 'forth' => 'quarto', + 'global' => 'globale', + 'iCal' => '', + 'in seconds. 0 for no JWT token expiration.' => '', + 'last' => 'ultimo', + 'on weekdays' => 'nei giorni della settimana', + 'second' => 'secondo', + 'third' => 'terzo', + '{displayName} Birthday' => 'Compleanno di {displayName}', + '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} ti ha appena aggiunto all\' evento "{contentTitle}" nello spazio {spaceName} che inizierà alle {time}.', + '{displayName} added you to the event "{contentTitle}".' => '{displayName} ti ha appena aggiunto all\'evento "{contentTitle}".', + '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} ti ha appena invitato all\'evento "{contentTitle}" nello spazio {spaceName} a partire dalle {time}.', + '{displayName} invited you to the event "{contentTitle}".' => '{displayName} ti ha appena invitato all\'evento "{contentTitle}".', + '{name} Calendar' => '', ]; diff --git a/messages/ja/base.php b/messages/ja/base.php index 4e06aa86..c62f494e 100644 --- a/messages/ja/base.php +++ b/messages/ja/base.php @@ -1,167 +1,166 @@ Add profile calendar' => 'プロフィールカレンダーを追加', - 'Choose target calendar' => 'ターゲットカレンダーを選択', - 'Reminder settings' => 'リマインダー の設定', - 'Add all Space members with status {status}' => 'ステータスが {status} の全てのスペース メンバーを追加します', - 'Add participants...' => '参加者を追加...', - 'Added: {users}' => '追加:{users}', - 'Additional Information for participants' => '参加者向けの追加情報', - 'Adds a calendar for private or public events to your profile and main menu.' => 'あなたのプロフィールやメインメニューに、プライベートまたは公開イベントカレンダーを追加します。', - 'Adds an event calendar to this space.' => 'このスペースにイベントカレンダーを追加します。', - 'After (occurrences)' => '後で(出来事)', - 'All Day' => '終日', - 'Allow option \'Decline\'' => 'オプション ’辞退’ を許可する', - 'Allow option \'Undecided\'' => 'オプション \'未決定\' を許可', - 'Allows the user to create new calendar entries' => 'ユーザーが新しいカレンダーエントリを作成できるようにします', - 'Allows the user to edit/delete existing calendar entries' => 'ユーザーが既存のカレンダーエントリを編集/削除できるようにします', - 'Attending' => '出席する', - 'Before a target calendar can be selected, the module must be activated in at least one Space.' => 'ターゲットカレンダーを選択する前に、モジュールを少なくとも1つのスペースでアクティブにする必要があります', - 'Birthday' => '誕生日', - 'Calendar' => 'カレンダー', - 'Calendar event' => 'カレンダーイベント', - 'Calendar events' => 'カレンダーイベント', - 'Cancel Event' => 'イベントをキャンセル', - 'Cannot remove the participant!' => '参加者を削除できません!', - 'Create entry' => 'エントリを作成', - 'Custom reminder' => 'カスタム リマインダー', - 'Day' => '日', - 'Days' => '日', - 'Default reminder settings' => 'デフォルトのリマインダー設定', - 'Delete all events' => '全てのイベントを削除', - 'Deleted' => '削除しました', - 'Description' => '説明', - 'Display events within the next X days' => '今後X日間のイベントを表示', - 'Do you want to install this module on your profile?' => 'あなたのプロフィールにこのモジュールをインストールしますか?', - 'Download ICS' => 'ICSをダウンロード', - 'Edit' => '編集', - 'Edit Event' => 'イベントを編集', - 'Edit all events' => '全てのイベントを編集', - 'Edit this and following events' => 'このイベントと次のイベントを編集する', - 'Edit this event' => 'このイベントを編集', - 'Email' => 'メール', - 'Enable' => '有効化', - 'Enable Reminder' => 'リマインダーを有効にする', - 'End' => '終了', - 'End Date' => '終了日', - 'End Time' => '終了時間', - 'End time must be after start time!' => '終了時刻は開始時刻より後になるように設定してください!', - 'Event' => 'イベント', - 'Event Type' => 'イベントタイプ', - 'Event Types' => 'イベントの種類', - 'Event could not be deleted!' => 'イベントを削除できませんでした。', - 'Event has been be deleted!' => 'イベントは削除されました!', - 'Event not found!' => 'イベントが見つかりません!', - 'Export as {type}' => '{type} としてエクスポート', - 'Files' => 'ファイル', - 'Filter by types' => '種類で絞り込む', - 'Friday' => '金曜', - 'Here you can configure default settings for all calendar events.' => 'ここでは全てのカレンダー イベントのデフォルト設定を構成できます。', - 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => 'ここでグローバルなデフォルト リマインダーを設定できます。これらの設定はスペース/プロフィール レベルで上書きできます。', - 'Hour' => '時', - 'I\'m attending' => '参加する', - 'ID' => 'ID', - 'In order to add events to your profile, you have to enable the calendar module first.' => 'あなたのプロフィールにイベントを追加するには、まずカレンダーモジュールを有効化しなければなりません。', - 'Interested' => '興味がある', - 'Invalid date or time format!' => '無効な日時のフォーマットです!', - 'Invalid day of month given' => '指定された日付が無効です', - 'Invalid event type id selected.' => '無効なイベントタイプIDが選択されました。', - 'Invalid frequency given' => '指定された頻度が無効です', - 'Invalid interval given' => '指定された間隔が無効です', - 'Invalid week day selection' => '無効な曜日の選択', - 'Invite' => '招待', - 'Invited: {users}' => '招待済み:{users}', - 'JWT Key' => 'JWT キー', - 'JWT Token Expiration' => 'JWT トークンの有効期限', - 'Leave empty to list all events. Enter 0 to display only today\'s events.' => 'すべてのイベントを表示するには、何も入力しないでください。今日のイベントのみを表示するには0を入力してください。', - 'List' => 'リスト', - 'Location' => '場所', - 'Manage entries' => 'エントリの管理', - 'Maximum number of participants' => '最大参加人数', - 'Minute' => '分', - 'Mode' => 'モード', - 'Monday' => '月曜', - 'Month' => '月', - 'Monthly on day {dayOfMonth}' => '毎月 {dayOfMonth} 日', - 'Monthly on the {position} {dayOfWeek}' => '毎月 {position} {dayOfWeek}', - 'Months' => '月', - 'Never' => 'しない', - 'Next' => '次へ', - 'No new participants were added.' => '新しい参加者は追加されませんでした。', - 'No new participants were invited.' => '新しい参加者は招待されませんでした。', - 'No reminder' => 'リマインダーなし', - 'Notify participants about changes' => '変更について参加者に通知する', - 'On date' => '日付', - 'Participant removed.' => '参加者が削除されました。', - 'Participants' => '参加者', - 'Participation Status' => '参加状況', - 'Please select new participants.' => '新しい参加者を選択してください。', - 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => 'プライベート イベントはあなただけが見ることができ、フレンドシップ システムが有効になっている場合は友達だけが見ることができます。', - 'Profile Calendar' => 'プロフィールカレンダー', - 'Public' => '公開', - 'Recurring' => '繰り返し', - 'Reopen Event' => 'イベントを再公開', - 'Repeat every' => '繰り返す間隔', - 'Saturday' => '土曜', - 'Select calendar...' => 'カレンダーを選択...', - 'Select space...' => 'スペースを選択...', - 'Set reminder' => 'リマインダーを設定', - 'Show past events' => '過去のイベントを表示', - 'Start Date' => '開始日', - 'Start Time' => '開始時間', - 'Status cannot be updated.' => 'ステータスを更新できません。', - 'Status updated.' => 'ステータスが更新されました。', - 'Sunday' => '日曜', - 'The event has already ended.' => 'イベントはすでに終了しています。', - 'This event does not support recurrent events' => 'このイベントは定期的なイベントをサポートしていません', - 'Thursday' => '木曜', - 'Time Zone' => 'タイムゾーン', - 'Title' => 'タイトル', - 'Today' => '今日', - 'Tuesday' => '火曜', - 'Upcoming {type}' => '今後の {type}', - 'Upcoming {type}: {title}' => '今後の {type}:{title}', - 'Use default reminder' => 'デフォルトのリマインダーを使用', - 'User birthdays' => 'ユーザーの誕生日', - 'Wednesday' => '水曜', - 'Week' => '週', - 'Weeks' => '週', - 'Year' => '年', - 'Years' => '年', - 'You cannot invite participants!' => '参加者を招待できません。', - 'You don\'t have permission to delete this event!' => 'あなたはこのイベントの削除権限がありません!', - 'You have an {type} coming up' => '{type} が近づいています', - 'You have an {type} coming up: {title}' => '次の {type} があります:{title}', - 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '{spaceName} のイベント「{contentTitle}」(開始時刻: {time})に登録されました', - 'You have been registered for the event "{contentTitle}", starting at {time}.' => '{time} から始まるイベント「{contentTitle}」に登録されました。', - 'You have been registered for the event "{contentTitle}".' => 'イベント「{contentTitle}」に登録されました。', - 'Your reminder settings for event: \'{title}\'' => 'イベントのリマインダー設定: \'{title}\'', - 'canceled' => 'キャンセル済み', - 'disabled' => '無効', - 'first' => '最初', - 'forth' => '前へ', - 'global' => 'グローバル', - 'last' => '最後', - 'on weekdays' => '平日', - 'second' => '2番目', - 'third' => '3番目', - '{displayName} Birthday' => '{displayName}さんの誕生日', - '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => 'たった今 {displayName} さんはあなたを{time}に始まる、スペース"{spaceName}"のイベント"{contentTitle}"に追加しました 。', - '{displayName} added you to the event "{contentTitle}".' => '{displayName} イベント "{contentTitle}" に追加しました', - '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} さんが {time} から始まるスペース {spaceName} のイベント ”{contentTitle}" にあなたを招待しました。', - '{displayName} invited you to the event "{contentTitle}".' => '{displayName} イベント "{contentTitle}" に招待しました', - 'Also include participant email addresses' => '', - 'By upcoming events first' => '', - 'CalDAV' => '', - 'Calendar event content ID' => '', - 'Filter' => '', - 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', - 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', - 'Include participant information in exports' => '', - 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', - 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', - 'iCal' => '', - 'in seconds. 0 for no JWT token expiration.' => '', - '{name} Calendar' => '', + 'Add profile calendar' => 'プロフィールカレンダーを追加', + 'Choose target calendar' => 'ターゲットカレンダーを選択', + 'Reminder settings' => 'リマインダー の設定', + 'Add all Space members with status {status}' => 'ステータスが {status} の全てのスペース メンバーを追加します', + 'Add participants...' => '参加者を追加...', + 'Added: {users}' => '追加:{users}', + 'Additional Information for participants' => '参加者向けの追加情報', + 'Adds a calendar for private or public events to your profile and main menu.' => 'あなたのプロフィールやメインメニューに、プライベートまたは公開イベントカレンダーを追加します。', + 'Adds an event calendar to this space.' => 'このスペースにイベントカレンダーを追加します。', + 'After (occurrences)' => '後で(出来事)', + 'All Day' => '終日', + 'Allow option \'Decline\'' => 'オプション ’辞退’ を許可する', + 'Allow option \'Undecided\'' => 'オプション \'未決定\' を許可', + 'Allows the user to create new calendar entries' => 'ユーザーが新しいカレンダーエントリを作成できるようにします', + 'Allows the user to edit/delete existing calendar entries' => 'ユーザーが既存のカレンダーエントリを編集/削除できるようにします', + 'Also include participant email addresses' => '', + 'Attending' => '出席する', + 'Before a target calendar can be selected, the module must be activated in at least one Space.' => 'ターゲットカレンダーを選択する前に、モジュールを少なくとも1つのスペースでアクティブにする必要があります', + 'Birthday' => '誕生日', + 'By upcoming events first' => '', + 'CalDAV' => '', + 'Calendar' => 'カレンダー', + 'Calendar event' => 'カレンダーイベント', + 'Calendar event content ID' => '', + 'Calendar events' => 'カレンダーイベント', + 'Cancel Event' => 'イベントをキャンセル', + 'Cannot remove the participant!' => '参加者を削除できません!', + 'Create entry' => 'エントリを作成', + 'Custom reminder' => 'カスタム リマインダー', + 'Day' => '日', + 'Days' => '日', + 'Default reminder settings' => 'デフォルトのリマインダー設定', + 'Delete all events' => '全てのイベントを削除', + 'Deleted' => '削除しました', + 'Description' => '説明', + 'Display events within the next X days' => '今後X日間のイベントを表示', + 'Do you want to install this module on your profile?' => 'あなたのプロフィールにこのモジュールをインストールしますか?', + 'Download ICS' => 'ICSをダウンロード', + 'Edit' => '編集', + 'Edit Event' => 'イベントを編集', + 'Edit all events' => '全てのイベントを編集', + 'Edit this and following events' => 'このイベントと次のイベントを編集する', + 'Edit this event' => 'このイベントを編集', + 'Email' => 'メール', + 'Enable' => '有効化', + 'Enable Reminder' => 'リマインダーを有効にする', + 'End' => '終了', + 'End Date' => '終了日', + 'End Time' => '終了時間', + 'End time must be after start time!' => '終了時刻は開始時刻より後になるように設定してください!', + 'Event' => 'イベント', + 'Event Type' => 'イベントタイプ', + 'Event Types' => 'イベントの種類', + 'Event could not be deleted!' => 'イベントを削除できませんでした。', + 'Event has been be deleted!' => 'イベントは削除されました!', + 'Event not found!' => 'イベントが見つかりません!', + 'Export as {type}' => '{type} としてエクスポート', + 'Files' => 'ファイル', + 'Filter' => 'フィルター', + 'Filter by types' => '種類で絞り込む', + 'Friday' => '金曜', + 'Here you can configure default settings for all calendar events.' => 'ここでは全てのカレンダー イベントのデフォルト設定を構成できます。', + 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => 'ここでグローバルなデフォルト リマインダーを設定できます。これらの設定はスペース/プロフィール レベルで上書きできます。', + 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', + 'Hour' => '時', + 'I\'m attending' => '参加する', + 'ID' => 'ID', + 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', + 'In order to add events to your profile, you have to enable the calendar module first.' => 'あなたのプロフィールにイベントを追加するには、まずカレンダーモジュールを有効化しなければなりません。', + 'Include participant information in exports' => '', + 'Interested' => '興味がある', + 'Invalid date or time format!' => '無効な日時のフォーマットです!', + 'Invalid day of month given' => '指定された日付が無効です', + 'Invalid event type id selected.' => '無効なイベントタイプIDが選択されました。', + 'Invalid frequency given' => '指定された頻度が無効です', + 'Invalid interval given' => '指定された間隔が無効です', + 'Invalid week day selection' => '無効な曜日の選択', + 'Invite' => '招待', + 'Invited: {users}' => '招待済み:{users}', + 'JWT Key' => 'JWT キー', + 'JWT Token Expiration' => 'JWT トークンの有効期限', + 'Leave empty to list all events. Enter 0 to display only today\'s events.' => 'すべてのイベントを表示するには、何も入力しないでください。今日のイベントのみを表示するには0を入力してください。', + 'List' => 'リスト', + 'Location' => '場所', + 'Manage entries' => 'エントリの管理', + 'Maximum number of participants' => '最大参加人数', + 'Minute' => '分', + 'Mode' => 'モード', + 'Monday' => '月曜', + 'Month' => '月', + 'Monthly on day {dayOfMonth}' => '毎月 {dayOfMonth} 日', + 'Monthly on the {position} {dayOfWeek}' => '毎月 {position} {dayOfWeek}', + 'Months' => '月', + 'Never' => 'しない', + 'Next' => '次へ', + 'No new participants were added.' => '新しい参加者は追加されませんでした。', + 'No new participants were invited.' => '新しい参加者は招待されませんでした。', + 'No reminder' => 'リマインダーなし', + 'Notify participants about changes' => '変更について参加者に通知する', + 'On date' => '日付', + 'Participant removed.' => '参加者が削除されました。', + 'Participants' => '参加者', + 'Participation Status' => '参加状況', + 'Please select new participants.' => '新しい参加者を選択してください。', + 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => 'プライベート イベントはあなただけが見ることができ、フレンドシップ システムが有効になっている場合は友達だけが見ることができます。', + 'Profile Calendar' => 'プロフィールカレンダー', + 'Public' => '公開', + 'Recurring' => '繰り返し', + 'Reopen Event' => 'イベントを再公開', + 'Repeat every' => '繰り返す間隔', + 'Saturday' => '土曜', + 'Select calendar...' => 'カレンダーを選択...', + 'Select space...' => 'スペースを選択...', + 'Set reminder' => 'リマインダーを設定', + 'Show past events' => '過去のイベントを表示', + 'Start Date' => '開始日', + 'Start Time' => '開始時間', + 'Status cannot be updated.' => 'ステータスを更新できません。', + 'Status updated.' => 'ステータスが更新されました。', + 'Sunday' => '日曜', + 'The event has already ended.' => 'イベントはすでに終了しています。', + 'This event does not support recurrent events' => 'このイベントは定期的なイベントをサポートしていません', + 'Thursday' => '木曜', + 'Time Zone' => 'タイムゾーン', + 'Title' => 'タイトル', + 'Today' => '今日', + 'Tuesday' => '火曜', + 'Upcoming {type}' => '今後の {type}', + 'Upcoming {type}: {title}' => '今後の {type}:{title}', + 'Use default reminder' => 'デフォルトのリマインダーを使用', + 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', + 'User birthdays' => 'ユーザーの誕生日', + 'Wednesday' => '水曜', + 'Week' => '週', + 'Weeks' => '週', + 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', + 'Year' => '年', + 'Years' => '年', + 'You cannot invite participants!' => '参加者を招待できません。', + 'You don\'t have permission to delete this event!' => 'あなたはこのイベントの削除権限がありません!', + 'You have an {type} coming up' => '{type} が近づいています', + 'You have an {type} coming up: {title}' => '次の {type} があります:{title}', + 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '{spaceName} のイベント「{contentTitle}」(開始時刻: {time})に登録されました', + 'You have been registered for the event "{contentTitle}", starting at {time}.' => '{time} から始まるイベント「{contentTitle}」に登録されました。', + 'You have been registered for the event "{contentTitle}".' => 'イベント「{contentTitle}」に登録されました。', + 'Your reminder settings for event: \'{title}\'' => 'イベントのリマインダー設定: \'{title}\'', + 'canceled' => 'キャンセル済み', + 'disabled' => '無効', + 'first' => '最初', + 'forth' => '前へ', + 'global' => 'グローバル', + 'iCal' => '', + 'in seconds. 0 for no JWT token expiration.' => '', + 'last' => '最後', + 'on weekdays' => '平日', + 'second' => '2番目', + 'third' => '3番目', + '{displayName} Birthday' => '{displayName}さんの誕生日', + '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => 'たった今 {displayName} さんはあなたを{time}に始まる、スペース"{spaceName}"のイベント"{contentTitle}"に追加しました 。', + '{displayName} added you to the event "{contentTitle}".' => '{displayName} イベント "{contentTitle}" に追加しました', + '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} さんが {time} から始まるスペース {spaceName} のイベント ”{contentTitle}" にあなたを招待しました。', + '{displayName} invited you to the event "{contentTitle}".' => '{displayName} イベント "{contentTitle}" に招待しました', + '{name} Calendar' => '', ]; diff --git a/messages/ko/base.php b/messages/ko/base.php index 38386af4..cf3ace03 100644 --- a/messages/ko/base.php +++ b/messages/ko/base.php @@ -1,167 +1,166 @@ '삭제됨', - 'Description' => '설명', - 'Edit' => '편집', - 'Enable' => '활성화', - 'Files' => '파일', - 'Invite' => '초대', - 'List' => '리스트', - 'Location' => '위치', - 'Never' => '절대로', - 'Next' => '다음', - 'Public' => '공개', - 'Time Zone' => '타임 존', - 'Title' => '제목', - 'disabled' => '장애가있는', - 'Add profile calendar' => '', - 'Choose target calendar' => '', - 'Reminder settings' => '', - 'Add all Space members with status {status}' => '', - 'Add participants...' => '', - 'Added: {users}' => '', - 'Additional Information for participants' => '', - 'Adds a calendar for private or public events to your profile and main menu.' => '', - 'Adds an event calendar to this space.' => '', - 'After (occurrences)' => '', - 'All Day' => '', - 'Allow option \'Decline\'' => '', - 'Allow option \'Undecided\'' => '', - 'Allows the user to create new calendar entries' => '', - 'Allows the user to edit/delete existing calendar entries' => '', - 'Also include participant email addresses' => '', - 'Attending' => '', - 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', - 'Birthday' => '', - 'By upcoming events first' => '', - 'CalDAV' => '', - 'Calendar' => '', - 'Calendar event' => '', - 'Calendar event content ID' => '', - 'Calendar events' => '', - 'Cancel Event' => '', - 'Cannot remove the participant!' => '', - 'Create entry' => '', - 'Custom reminder' => '', - 'Day' => '', - 'Days' => '', - 'Default reminder settings' => '', - 'Delete all events' => '', - 'Display events within the next X days' => '', - 'Do you want to install this module on your profile?' => '', - 'Download ICS' => '', - 'Edit Event' => '', - 'Edit all events' => '', - 'Edit this and following events' => '', - 'Edit this event' => '', - 'Email' => '', - 'Enable Reminder' => '', - 'End' => '', - 'End Date' => '', - 'End Time' => '', - 'End time must be after start time!' => '', - 'Event' => '', - 'Event Type' => '', - 'Event Types' => '', - 'Event could not be deleted!' => '', - 'Event has been be deleted!' => '', - 'Event not found!' => '', - 'Export as {type}' => '', - 'Filter' => '', - 'Filter by types' => '', - 'Friday' => '', - 'Here you can configure default settings for all calendar events.' => '', - 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => '', - 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', - 'Hour' => '', - 'I\'m attending' => '', - 'ID' => '', - 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', - 'In order to add events to your profile, you have to enable the calendar module first.' => '', - 'Include participant information in exports' => '', - 'Interested' => '', - 'Invalid date or time format!' => '', - 'Invalid day of month given' => '', - 'Invalid event type id selected.' => '', - 'Invalid frequency given' => '', - 'Invalid interval given' => '', - 'Invalid week day selection' => '', - 'Invited: {users}' => '', - 'JWT Key' => '', - 'JWT Token Expiration' => '', - 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', - 'Manage entries' => '', - 'Maximum number of participants' => '', - 'Minute' => '', - 'Mode' => '', - 'Monday' => '', - 'Month' => '', - 'Monthly on day {dayOfMonth}' => '', - 'Monthly on the {position} {dayOfWeek}' => '', - 'Months' => '', - 'No new participants were added.' => '', - 'No new participants were invited.' => '', - 'No reminder' => '', - 'Notify participants about changes' => '', - 'On date' => '', - 'Participant removed.' => '', - 'Participants' => '', - 'Participation Status' => '', - 'Please select new participants.' => '', - 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => '', - 'Profile Calendar' => '', - 'Recurring' => '', - 'Reopen Event' => '', - 'Repeat every' => '', - 'Saturday' => '', - 'Select calendar...' => '', - 'Select space...' => '', - 'Set reminder' => '', - 'Show past events' => '', - 'Start Date' => '', - 'Start Time' => '', - 'Status cannot be updated.' => '', - 'Status updated.' => '', - 'Sunday' => '', - 'The event has already ended.' => '', - 'This event does not support recurrent events' => '', - 'Thursday' => '', - 'Today' => '', - 'Tuesday' => '', - 'Upcoming {type}' => '', - 'Upcoming {type}: {title}' => '', - 'Use default reminder' => '', - 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', - 'User birthdays' => '', - 'Wednesday' => '', - 'Week' => '', - 'Weeks' => '', - 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', - 'Year' => '', - 'Years' => '', - 'You cannot invite participants!' => '', - 'You don\'t have permission to delete this event!' => '', - 'You have an {type} coming up' => '', - 'You have an {type} coming up: {title}' => '', - 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', - 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', - 'You have been registered for the event "{contentTitle}".' => '', - 'Your reminder settings for event: \'{title}\'' => '', - 'canceled' => '', - 'first' => '', - 'forth' => '', - 'global' => '', - 'iCal' => '', - 'in seconds. 0 for no JWT token expiration.' => '', - 'last' => '', - 'on weekdays' => '', - 'second' => '', - 'third' => '', - '{displayName} Birthday' => '', - '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', - '{displayName} added you to the event "{contentTitle}".' => '', - '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', - '{displayName} invited you to the event "{contentTitle}".' => '', - '{name} Calendar' => '', + 'Add profile calendar' => '', + 'Choose target calendar' => '', + 'Reminder settings' => '', + 'Add all Space members with status {status}' => '', + 'Add participants...' => '', + 'Added: {users}' => '', + 'Additional Information for participants' => '', + 'Adds a calendar for private or public events to your profile and main menu.' => '', + 'Adds an event calendar to this space.' => '', + 'After (occurrences)' => '', + 'All Day' => '', + 'Allow option \'Decline\'' => '', + 'Allow option \'Undecided\'' => '', + 'Allows the user to create new calendar entries' => '', + 'Allows the user to edit/delete existing calendar entries' => '', + 'Also include participant email addresses' => '', + 'Attending' => '', + 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', + 'Birthday' => '', + 'By upcoming events first' => '', + 'CalDAV' => '', + 'Calendar' => '', + 'Calendar event' => '', + 'Calendar event content ID' => '', + 'Calendar events' => '', + 'Cancel Event' => '', + 'Cannot remove the participant!' => '', + 'Create entry' => '', + 'Custom reminder' => '', + 'Day' => '', + 'Days' => '', + 'Default reminder settings' => '', + 'Delete all events' => '', + 'Deleted' => '삭제됨', + 'Description' => '설명', + 'Display events within the next X days' => '', + 'Do you want to install this module on your profile?' => '', + 'Download ICS' => '', + 'Edit' => '편집', + 'Edit Event' => '', + 'Edit all events' => '', + 'Edit this and following events' => '', + 'Edit this event' => '', + 'Email' => '', + 'Enable' => '활성화', + 'Enable Reminder' => '', + 'End' => '', + 'End Date' => '', + 'End Time' => '', + 'End time must be after start time!' => '', + 'Event' => '', + 'Event Type' => '', + 'Event Types' => '', + 'Event could not be deleted!' => '', + 'Event has been be deleted!' => '', + 'Event not found!' => '', + 'Export as {type}' => '', + 'Files' => '파일', + 'Filter' => '필터', + 'Filter by types' => '', + 'Friday' => '', + 'Here you can configure default settings for all calendar events.' => '', + 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => '', + 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', + 'Hour' => '', + 'I\'m attending' => '', + 'ID' => '', + 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', + 'In order to add events to your profile, you have to enable the calendar module first.' => '', + 'Include participant information in exports' => '', + 'Interested' => '', + 'Invalid date or time format!' => '', + 'Invalid day of month given' => '', + 'Invalid event type id selected.' => '', + 'Invalid frequency given' => '', + 'Invalid interval given' => '', + 'Invalid week day selection' => '', + 'Invite' => '초대', + 'Invited: {users}' => '', + 'JWT Key' => '', + 'JWT Token Expiration' => '', + 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', + 'List' => '리스트', + 'Location' => '위치', + 'Manage entries' => '', + 'Maximum number of participants' => '', + 'Minute' => '', + 'Mode' => '', + 'Monday' => '', + 'Month' => '', + 'Monthly on day {dayOfMonth}' => '', + 'Monthly on the {position} {dayOfWeek}' => '', + 'Months' => '', + 'Never' => '절대로', + 'Next' => '다음', + 'No new participants were added.' => '', + 'No new participants were invited.' => '', + 'No reminder' => '', + 'Notify participants about changes' => '', + 'On date' => '', + 'Participant removed.' => '', + 'Participants' => '', + 'Participation Status' => '', + 'Please select new participants.' => '', + 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => '', + 'Profile Calendar' => '', + 'Public' => '공개', + 'Recurring' => '', + 'Reopen Event' => '', + 'Repeat every' => '', + 'Saturday' => '', + 'Select calendar...' => '', + 'Select space...' => '', + 'Set reminder' => '', + 'Show past events' => '', + 'Start Date' => '', + 'Start Time' => '', + 'Status cannot be updated.' => '', + 'Status updated.' => '', + 'Sunday' => '', + 'The event has already ended.' => '', + 'This event does not support recurrent events' => '', + 'Thursday' => '', + 'Time Zone' => '타임 존', + 'Title' => '제목', + 'Today' => '', + 'Tuesday' => '', + 'Upcoming {type}' => '', + 'Upcoming {type}: {title}' => '', + 'Use default reminder' => '', + 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', + 'User birthdays' => '', + 'Wednesday' => '', + 'Week' => '', + 'Weeks' => '', + 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', + 'Year' => '', + 'Years' => '', + 'You cannot invite participants!' => '', + 'You don\'t have permission to delete this event!' => '', + 'You have an {type} coming up' => '', + 'You have an {type} coming up: {title}' => '', + 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', + 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', + 'You have been registered for the event "{contentTitle}".' => '', + 'Your reminder settings for event: \'{title}\'' => '', + 'canceled' => '', + 'disabled' => '장애가있는', + 'first' => '', + 'forth' => '', + 'global' => '', + 'iCal' => '', + 'in seconds. 0 for no JWT token expiration.' => '', + 'last' => '', + 'on weekdays' => '', + 'second' => '', + 'third' => '', + '{displayName} Birthday' => '', + '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', + '{displayName} added you to the event "{contentTitle}".' => '', + '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', + '{displayName} invited you to the event "{contentTitle}".' => '', + '{name} Calendar' => '', ]; diff --git a/messages/lt/base.php b/messages/lt/base.php index 16a15c4c..091fcb9c 100644 --- a/messages/lt/base.php +++ b/messages/lt/base.php @@ -1,167 +1,166 @@ 'Į Jūsu profilį prideda viešu ir privačiu renginiu kalendoriu.', - 'Adds an event calendar to this space.' => 'Šiai erdvei prideda renginiu kalendoriu.', - 'All Day' => 'Visa diena', - 'Birthday' => 'Gimimo data', - 'Calendar' => 'Kalendorius', - 'Deleted' => 'Ištrinta', - 'Description' => 'Apibūdinimas', - 'Edit' => 'Taisyti', - 'Edit this event' => 'Redaguoti šį įvykį', - 'Email' => 'Elektroninis paštas', - 'Enable' => 'Įgalinti', - 'End Date' => 'Pabaigos data', - 'End time must be after start time!' => 'Pabaigos laikas turi būti po pradžios laiko!', - 'Event' => 'Įvykis', - 'Event not found!' => 'Renginys nerastas!', - 'Files' => 'Failai', - 'Friday' => 'Penktadienis', - 'I\'m attending' => 'Dalyvauju', - 'ID' => 'ID', - 'Invite' => 'Pakviesti', - 'List' => 'Sarašas', - 'Location' => 'Vieta', - 'Monday' => 'Pirmadienis', - 'Never' => 'Niekada', - 'Next' => 'Kitas', - 'Participants' => 'Dalyviai', - 'Public' => 'Višas', - 'Saturday' => 'Šeštadienis', - 'Start Date' => 'Pradžios data', - 'Sunday' => 'Sekmadienis', - 'Thursday' => 'Ketvitadienis', - 'Time Zone' => 'Laiko juosta', - 'Title' => 'Pavadinimas ', - 'Today' => 'Šiandien', - 'Tuesday' => 'Antradienis', - 'Wednesday' => 'Trečiadienis', - 'You don\'t have permission to delete this event!' => 'Jūs neturite leidimo ištrinti šį įvykį ! ', - 'disabled' => 'neįgalus', - 'Add profile calendar' => '', - 'Choose target calendar' => '', - 'Reminder settings' => '', - 'Add all Space members with status {status}' => '', - 'Add participants...' => '', - 'Added: {users}' => '', - 'Additional Information for participants' => '', - 'After (occurrences)' => '', - 'Allow option \'Decline\'' => '', - 'Allow option \'Undecided\'' => '', - 'Allows the user to create new calendar entries' => '', - 'Allows the user to edit/delete existing calendar entries' => '', - 'Also include participant email addresses' => '', - 'Attending' => '', - 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', - 'By upcoming events first' => '', - 'CalDAV' => '', - 'Calendar event' => '', - 'Calendar event content ID' => '', - 'Calendar events' => '', - 'Cancel Event' => '', - 'Cannot remove the participant!' => '', - 'Create entry' => '', - 'Custom reminder' => '', - 'Day' => '', - 'Days' => '', - 'Default reminder settings' => '', - 'Delete all events' => '', - 'Display events within the next X days' => '', - 'Do you want to install this module on your profile?' => '', - 'Download ICS' => '', - 'Edit Event' => '', - 'Edit all events' => '', - 'Edit this and following events' => '', - 'Enable Reminder' => '', - 'End' => '', - 'End Time' => '', - 'Event Type' => '', - 'Event Types' => '', - 'Event could not be deleted!' => '', - 'Event has been be deleted!' => '', - 'Export as {type}' => '', - 'Filter' => '', - 'Filter by types' => '', - 'Here you can configure default settings for all calendar events.' => '', - 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => '', - 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', - 'Hour' => '', - 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', - 'In order to add events to your profile, you have to enable the calendar module first.' => '', - 'Include participant information in exports' => '', - 'Interested' => '', - 'Invalid date or time format!' => '', - 'Invalid day of month given' => '', - 'Invalid event type id selected.' => '', - 'Invalid frequency given' => '', - 'Invalid interval given' => '', - 'Invalid week day selection' => '', - 'Invited: {users}' => '', - 'JWT Key' => '', - 'JWT Token Expiration' => '', - 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', - 'Manage entries' => '', - 'Maximum number of participants' => '', - 'Minute' => '', - 'Mode' => '', - 'Month' => '', - 'Monthly on day {dayOfMonth}' => '', - 'Monthly on the {position} {dayOfWeek}' => '', - 'Months' => '', - 'No new participants were added.' => '', - 'No new participants were invited.' => '', - 'No reminder' => '', - 'Notify participants about changes' => '', - 'On date' => '', - 'Participant removed.' => '', - 'Participation Status' => '', - 'Please select new participants.' => '', - 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => '', - 'Profile Calendar' => '', - 'Recurring' => '', - 'Reopen Event' => '', - 'Repeat every' => '', - 'Select calendar...' => '', - 'Select space...' => '', - 'Set reminder' => '', - 'Show past events' => '', - 'Start Time' => '', - 'Status cannot be updated.' => '', - 'Status updated.' => '', - 'The event has already ended.' => '', - 'This event does not support recurrent events' => '', - 'Upcoming {type}' => '', - 'Upcoming {type}: {title}' => '', - 'Use default reminder' => '', - 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', - 'User birthdays' => '', - 'Week' => '', - 'Weeks' => '', - 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', - 'Year' => '', - 'Years' => '', - 'You cannot invite participants!' => '', - 'You have an {type} coming up' => '', - 'You have an {type} coming up: {title}' => '', - 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', - 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', - 'You have been registered for the event "{contentTitle}".' => '', - 'Your reminder settings for event: \'{title}\'' => '', - 'canceled' => '', - 'first' => '', - 'forth' => '', - 'global' => '', - 'iCal' => '', - 'in seconds. 0 for no JWT token expiration.' => '', - 'last' => '', - 'on weekdays' => '', - 'second' => '', - 'third' => '', - '{displayName} Birthday' => '', - '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', - '{displayName} added you to the event "{contentTitle}".' => '', - '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', - '{displayName} invited you to the event "{contentTitle}".' => '', - '{name} Calendar' => '', + 'Add profile calendar' => '', + 'Choose target calendar' => '', + 'Reminder settings' => '', + 'Add all Space members with status {status}' => '', + 'Add participants...' => '', + 'Added: {users}' => '', + 'Additional Information for participants' => '', + 'Adds a calendar for private or public events to your profile and main menu.' => 'Į Jūsu profilį prideda viešu ir privačiu renginiu kalendoriu.', + 'Adds an event calendar to this space.' => 'Šiai erdvei prideda renginiu kalendoriu.', + 'After (occurrences)' => '', + 'All Day' => 'Visa diena', + 'Allow option \'Decline\'' => '', + 'Allow option \'Undecided\'' => '', + 'Allows the user to create new calendar entries' => '', + 'Allows the user to edit/delete existing calendar entries' => '', + 'Also include participant email addresses' => '', + 'Attending' => '', + 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', + 'Birthday' => 'Gimimo data', + 'By upcoming events first' => '', + 'CalDAV' => '', + 'Calendar' => 'Kalendorius', + 'Calendar event' => '', + 'Calendar event content ID' => '', + 'Calendar events' => '', + 'Cancel Event' => '', + 'Cannot remove the participant!' => '', + 'Create entry' => '', + 'Custom reminder' => '', + 'Day' => '', + 'Days' => '', + 'Default reminder settings' => '', + 'Delete all events' => '', + 'Deleted' => 'Ištrinta', + 'Description' => 'Apibūdinimas', + 'Display events within the next X days' => '', + 'Do you want to install this module on your profile?' => '', + 'Download ICS' => '', + 'Edit' => 'Taisyti', + 'Edit Event' => '', + 'Edit all events' => '', + 'Edit this and following events' => '', + 'Edit this event' => 'Redaguoti šį įvykį', + 'Email' => 'Elektroninis paštas', + 'Enable' => 'Įgalinti', + 'Enable Reminder' => '', + 'End' => '', + 'End Date' => 'Pabaigos data', + 'End Time' => '', + 'End time must be after start time!' => 'Pabaigos laikas turi būti po pradžios laiko!', + 'Event' => 'Įvykis', + 'Event Type' => '', + 'Event Types' => '', + 'Event could not be deleted!' => '', + 'Event has been be deleted!' => '', + 'Event not found!' => 'Renginys nerastas!', + 'Export as {type}' => '', + 'Files' => 'Failai', + 'Filter' => 'Filtras', + 'Filter by types' => '', + 'Friday' => 'Penktadienis', + 'Here you can configure default settings for all calendar events.' => '', + 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => '', + 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', + 'Hour' => '', + 'I\'m attending' => 'Dalyvauju', + 'ID' => 'ID', + 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', + 'In order to add events to your profile, you have to enable the calendar module first.' => '', + 'Include participant information in exports' => '', + 'Interested' => '', + 'Invalid date or time format!' => '', + 'Invalid day of month given' => '', + 'Invalid event type id selected.' => '', + 'Invalid frequency given' => '', + 'Invalid interval given' => '', + 'Invalid week day selection' => '', + 'Invite' => 'Pakviesti', + 'Invited: {users}' => '', + 'JWT Key' => '', + 'JWT Token Expiration' => '', + 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', + 'List' => 'Sarašas', + 'Location' => 'Vieta', + 'Manage entries' => '', + 'Maximum number of participants' => '', + 'Minute' => '', + 'Mode' => '', + 'Monday' => 'Pirmadienis', + 'Month' => '', + 'Monthly on day {dayOfMonth}' => '', + 'Monthly on the {position} {dayOfWeek}' => '', + 'Months' => '', + 'Never' => 'Niekada', + 'Next' => 'Kitas', + 'No new participants were added.' => '', + 'No new participants were invited.' => '', + 'No reminder' => '', + 'Notify participants about changes' => '', + 'On date' => '', + 'Participant removed.' => '', + 'Participants' => 'Dalyviai', + 'Participation Status' => '', + 'Please select new participants.' => '', + 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => '', + 'Profile Calendar' => '', + 'Public' => 'Višas', + 'Recurring' => '', + 'Reopen Event' => '', + 'Repeat every' => '', + 'Saturday' => 'Šeštadienis', + 'Select calendar...' => '', + 'Select space...' => '', + 'Set reminder' => '', + 'Show past events' => '', + 'Start Date' => 'Pradžios data', + 'Start Time' => '', + 'Status cannot be updated.' => '', + 'Status updated.' => '', + 'Sunday' => 'Sekmadienis', + 'The event has already ended.' => '', + 'This event does not support recurrent events' => '', + 'Thursday' => 'Ketvitadienis', + 'Time Zone' => 'Laiko juosta', + 'Title' => 'Pavadinimas ', + 'Today' => 'Šiandien', + 'Tuesday' => 'Antradienis', + 'Upcoming {type}' => '', + 'Upcoming {type}: {title}' => '', + 'Use default reminder' => '', + 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', + 'User birthdays' => '', + 'Wednesday' => 'Trečiadienis', + 'Week' => '', + 'Weeks' => '', + 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', + 'Year' => '', + 'Years' => '', + 'You cannot invite participants!' => '', + 'You don\'t have permission to delete this event!' => 'Jūs neturite leidimo ištrinti šį įvykį ! ', + 'You have an {type} coming up' => '', + 'You have an {type} coming up: {title}' => '', + 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', + 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', + 'You have been registered for the event "{contentTitle}".' => '', + 'Your reminder settings for event: \'{title}\'' => '', + 'canceled' => '', + 'disabled' => 'neįgalus', + 'first' => '', + 'forth' => '', + 'global' => '', + 'iCal' => '', + 'in seconds. 0 for no JWT token expiration.' => '', + 'last' => '', + 'on weekdays' => '', + 'second' => '', + 'third' => '', + '{displayName} Birthday' => '', + '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', + '{displayName} added you to the event "{contentTitle}".' => '', + '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', + '{displayName} invited you to the event "{contentTitle}".' => '', + '{name} Calendar' => '', ]; diff --git a/messages/nb-NO/base.php b/messages/nb-NO/base.php index 9edefdb5..da7e0acb 100644 --- a/messages/nb-NO/base.php +++ b/messages/nb-NO/base.php @@ -1,167 +1,166 @@ Add profile calendar' => 'Opprett profil kalender', - 'Choose target calendar' => 'Velg mål kalender', - 'Adds a calendar for private or public events to your profile and main menu.' => 'Legger til en kalender for private eller offentlige arrangement til din profil og hovedmeny.', - 'Adds an event calendar to this space.' => 'Legger til en kalender i denne gruppen.', - 'All Day' => 'Hele dagen', - 'Allows the user to create new calendar entries' => 'Gir brukeren tilgang til å opprette aktiviteter', - 'Allows the user to edit/delete existing calendar entries' => 'Gir brukeren tilgang til å redigere/slette eksisterende aktiviteter', - 'Attending' => 'Deltar', - 'Birthday' => 'Bursdag', - 'Calendar' => 'Kalender', - 'Cancel Event' => 'Avbryt aktivitet', - 'Create entry' => 'Opprette', - 'Deleted' => 'Slettet', - 'Description' => 'Beskrivelse', - 'Edit' => 'Rediger', - 'Email' => 'E-post', - 'Enable' => 'Aktiver', - 'End' => 'Slutt', - 'End Date' => 'Slutter dato', - 'End Time' => 'Slutt', - 'End time must be after start time!' => 'Aktiviteten kan ikke slutte før den har startet!', - 'Event' => 'Aktiviteten', - 'Event Type' => 'Aktivitetstype', - 'Event Types' => 'Aktivitetstyper', - 'Event not found!' => 'Kan ikke finne aktiviteten.', - 'Files' => 'Filer', - 'I\'m attending' => 'Jeg deltar', - 'ID' => 'ID', - 'In order to add events to your profile, you have to enable the calendar module first.' => 'Hvis du vil opprette en aktivitet i din personlige kalender, må du aktivere kalender modulen på din profil først.', - 'Interested' => 'Intressert', - 'Invalid event type id selected.' => 'Ugyldig aktiviteststype id valgt.', - 'Invite' => 'Invitér', - 'List' => 'Liste', - 'Location' => 'Sted', - 'Manage entries' => 'Endre', - 'Maximum number of participants' => 'Maks antall deltagere', - 'Never' => 'Aldri', - 'Next' => 'Neste', - 'Participants' => 'Deltagere', - 'Profile Calendar' => 'Profil Kalender', - 'Public' => 'Offentlig', - 'Reopen Event' => 'Gjennåpne aktivitet', - 'Start Date' => 'Starter dato', - 'Start Time' => 'Start', - 'Time Zone' => 'Tidssone', - 'Title' => 'Tittel', - 'Today' => 'I dag', - 'You don\'t have permission to delete this event!' => 'Du har ikke tilgang til å slette denne aktiviteten.', - 'canceled' => 'avlyst', - 'disabled' => 'funksjonshemmet', - '{displayName} Birthday' => '{displayName} Bursdag', - '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} la deg til arrangementet «{contentTitle}» i gruppen {spaceName} som starter {time}.', - '{displayName} added you to the event "{contentTitle}".' => '{displayName} La deg til et arrangement "{contentTitle}".', - 'Reminder settings' => '', - 'Add all Space members with status {status}' => '', - 'Add participants...' => '', - 'Added: {users}' => '', - 'Additional Information for participants' => '', - 'After (occurrences)' => '', - 'Allow option \'Decline\'' => '', - 'Allow option \'Undecided\'' => '', - 'Also include participant email addresses' => '', - 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', - 'By upcoming events first' => '', - 'CalDAV' => '', - 'Calendar event' => '', - 'Calendar event content ID' => '', - 'Calendar events' => '', - 'Cannot remove the participant!' => '', - 'Custom reminder' => '', - 'Day' => '', - 'Days' => '', - 'Default reminder settings' => '', - 'Delete all events' => '', - 'Display events within the next X days' => '', - 'Do you want to install this module on your profile?' => '', - 'Download ICS' => '', - 'Edit Event' => '', - 'Edit all events' => '', - 'Edit this and following events' => '', - 'Edit this event' => '', - 'Enable Reminder' => '', - 'Event could not be deleted!' => '', - 'Event has been be deleted!' => '', - 'Export as {type}' => '', - 'Filter' => '', - 'Filter by types' => '', - 'Friday' => '', - 'Here you can configure default settings for all calendar events.' => '', - 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => '', - 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', - 'Hour' => '', - 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', - 'Include participant information in exports' => '', - 'Invalid date or time format!' => '', - 'Invalid day of month given' => '', - 'Invalid frequency given' => '', - 'Invalid interval given' => '', - 'Invalid week day selection' => '', - 'Invited: {users}' => '', - 'JWT Key' => '', - 'JWT Token Expiration' => '', - 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', - 'Minute' => '', - 'Mode' => '', - 'Monday' => '', - 'Month' => '', - 'Monthly on day {dayOfMonth}' => '', - 'Monthly on the {position} {dayOfWeek}' => '', - 'Months' => '', - 'No new participants were added.' => '', - 'No new participants were invited.' => '', - 'No reminder' => '', - 'Notify participants about changes' => '', - 'On date' => '', - 'Participant removed.' => '', - 'Participation Status' => '', - 'Please select new participants.' => '', - 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => '', - 'Recurring' => '', - 'Repeat every' => '', - 'Saturday' => '', - 'Select calendar...' => '', - 'Select space...' => '', - 'Set reminder' => '', - 'Show past events' => '', - 'Status cannot be updated.' => '', - 'Status updated.' => '', - 'Sunday' => '', - 'The event has already ended.' => '', - 'This event does not support recurrent events' => '', - 'Thursday' => '', - 'Tuesday' => '', - 'Upcoming {type}' => '', - 'Upcoming {type}: {title}' => '', - 'Use default reminder' => '', - 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', - 'User birthdays' => '', - 'Wednesday' => '', - 'Week' => '', - 'Weeks' => '', - 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', - 'Year' => '', - 'Years' => '', - 'You cannot invite participants!' => '', - 'You have an {type} coming up' => '', - 'You have an {type} coming up: {title}' => '', - 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', - 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', - 'You have been registered for the event "{contentTitle}".' => '', - 'Your reminder settings for event: \'{title}\'' => '', - 'first' => '', - 'forth' => '', - 'global' => '', - 'iCal' => '', - 'in seconds. 0 for no JWT token expiration.' => '', - 'last' => '', - 'on weekdays' => '', - 'second' => '', - 'third' => '', - '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', - '{displayName} invited you to the event "{contentTitle}".' => '', - '{name} Calendar' => '', + 'Add profile calendar' => 'Opprett profil kalender', + 'Choose target calendar' => 'Velg mål kalender', + 'Reminder settings' => '', + 'Add all Space members with status {status}' => '', + 'Add participants...' => '', + 'Added: {users}' => '', + 'Additional Information for participants' => '', + 'Adds a calendar for private or public events to your profile and main menu.' => 'Legger til en kalender for private eller offentlige arrangement til din profil og hovedmeny.', + 'Adds an event calendar to this space.' => 'Legger til en kalender i denne gruppen.', + 'After (occurrences)' => '', + 'All Day' => 'Hele dagen', + 'Allow option \'Decline\'' => '', + 'Allow option \'Undecided\'' => '', + 'Allows the user to create new calendar entries' => 'Gir brukeren tilgang til å opprette aktiviteter', + 'Allows the user to edit/delete existing calendar entries' => 'Gir brukeren tilgang til å redigere/slette eksisterende aktiviteter', + 'Also include participant email addresses' => '', + 'Attending' => 'Deltar', + 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', + 'Birthday' => 'Bursdag', + 'By upcoming events first' => '', + 'CalDAV' => '', + 'Calendar' => 'Kalender', + 'Calendar event' => '', + 'Calendar event content ID' => '', + 'Calendar events' => '', + 'Cancel Event' => 'Avbryt aktivitet', + 'Cannot remove the participant!' => '', + 'Create entry' => 'Opprette', + 'Custom reminder' => '', + 'Day' => '', + 'Days' => '', + 'Default reminder settings' => '', + 'Delete all events' => '', + 'Deleted' => 'Slettet', + 'Description' => 'Beskrivelse', + 'Display events within the next X days' => '', + 'Do you want to install this module on your profile?' => '', + 'Download ICS' => '', + 'Edit' => 'Rediger', + 'Edit Event' => '', + 'Edit all events' => '', + 'Edit this and following events' => '', + 'Edit this event' => '', + 'Email' => 'E-post', + 'Enable' => 'Aktiver', + 'Enable Reminder' => '', + 'End' => 'Slutt', + 'End Date' => 'Slutter dato', + 'End Time' => 'Slutt', + 'End time must be after start time!' => 'Aktiviteten kan ikke slutte før den har startet!', + 'Event' => 'Aktiviteten', + 'Event Type' => 'Aktivitetstype', + 'Event Types' => 'Aktivitetstyper', + 'Event could not be deleted!' => '', + 'Event has been be deleted!' => '', + 'Event not found!' => 'Kan ikke finne aktiviteten.', + 'Export as {type}' => '', + 'Files' => 'Filer', + 'Filter' => 'Filter', + 'Filter by types' => '', + 'Friday' => '', + 'Here you can configure default settings for all calendar events.' => '', + 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => '', + 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', + 'Hour' => '', + 'I\'m attending' => 'Jeg deltar', + 'ID' => 'ID', + 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', + 'In order to add events to your profile, you have to enable the calendar module first.' => 'Hvis du vil opprette en aktivitet i din personlige kalender, må du aktivere kalender modulen på din profil først.', + 'Include participant information in exports' => '', + 'Interested' => 'Intressert', + 'Invalid date or time format!' => '', + 'Invalid day of month given' => '', + 'Invalid event type id selected.' => 'Ugyldig aktiviteststype id valgt.', + 'Invalid frequency given' => '', + 'Invalid interval given' => '', + 'Invalid week day selection' => '', + 'Invite' => 'Invitér', + 'Invited: {users}' => '', + 'JWT Key' => '', + 'JWT Token Expiration' => '', + 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', + 'List' => 'Liste', + 'Location' => 'Sted', + 'Manage entries' => 'Endre', + 'Maximum number of participants' => 'Maks antall deltagere', + 'Minute' => '', + 'Mode' => '', + 'Monday' => '', + 'Month' => '', + 'Monthly on day {dayOfMonth}' => '', + 'Monthly on the {position} {dayOfWeek}' => '', + 'Months' => '', + 'Never' => 'Aldri', + 'Next' => 'Neste', + 'No new participants were added.' => '', + 'No new participants were invited.' => '', + 'No reminder' => '', + 'Notify participants about changes' => '', + 'On date' => '', + 'Participant removed.' => '', + 'Participants' => 'Deltagere', + 'Participation Status' => '', + 'Please select new participants.' => '', + 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => '', + 'Profile Calendar' => 'Profil Kalender', + 'Public' => 'Offentlig', + 'Recurring' => '', + 'Reopen Event' => 'Gjennåpne aktivitet', + 'Repeat every' => '', + 'Saturday' => '', + 'Select calendar...' => '', + 'Select space...' => '', + 'Set reminder' => '', + 'Show past events' => '', + 'Start Date' => 'Starter dato', + 'Start Time' => 'Start', + 'Status cannot be updated.' => '', + 'Status updated.' => '', + 'Sunday' => '', + 'The event has already ended.' => '', + 'This event does not support recurrent events' => '', + 'Thursday' => '', + 'Time Zone' => 'Tidssone', + 'Title' => 'Tittel', + 'Today' => 'I dag', + 'Tuesday' => '', + 'Upcoming {type}' => '', + 'Upcoming {type}: {title}' => '', + 'Use default reminder' => '', + 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', + 'User birthdays' => '', + 'Wednesday' => '', + 'Week' => '', + 'Weeks' => '', + 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', + 'Year' => '', + 'Years' => '', + 'You cannot invite participants!' => '', + 'You don\'t have permission to delete this event!' => 'Du har ikke tilgang til å slette denne aktiviteten.', + 'You have an {type} coming up' => '', + 'You have an {type} coming up: {title}' => '', + 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', + 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', + 'You have been registered for the event "{contentTitle}".' => '', + 'Your reminder settings for event: \'{title}\'' => '', + 'canceled' => 'avlyst', + 'disabled' => 'funksjonshemmet', + 'first' => '', + 'forth' => '', + 'global' => '', + 'iCal' => '', + 'in seconds. 0 for no JWT token expiration.' => '', + 'last' => '', + 'on weekdays' => '', + 'second' => '', + 'third' => '', + '{displayName} Birthday' => '{displayName} Bursdag', + '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} la deg til arrangementet «{contentTitle}» i gruppen {spaceName} som starter {time}.', + '{displayName} added you to the event "{contentTitle}".' => '{displayName} La deg til et arrangement "{contentTitle}".', + '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', + '{displayName} invited you to the event "{contentTitle}".' => '', + '{name} Calendar' => '', ]; diff --git a/messages/pl/base.php b/messages/pl/base.php index f947eb9e..48843b7e 100644 --- a/messages/pl/base.php +++ b/messages/pl/base.php @@ -1,167 +1,166 @@ Add profile calendar' => 'Dodaj kalendarz profilowy', - 'Choose target calendar' => 'Wybierz docelowy kalendarz', - 'Reminder settings' => 'Ustawienia przypomnień', - 'Add all Space members with status {status}' => 'Wszyscy użytkownicy strefy ze statusem {status}', - 'Add participants...' => 'Dodaj uczestników...', - 'Added: {users}' => 'Dodano: {users}', - 'Additional Information for participants' => 'Dodatkowa informacja dla uczestników', - 'Adds a calendar for private or public events to your profile and main menu.' => 'Dodaje kalendarz dla wydarzeń prywatnych lub publicznych do twojego profilu i głównego menu.', - 'Adds an event calendar to this space.' => 'Dodaje kalendarz wydarzeń do tej strefy.', - 'After (occurrences)' => 'Po (occurrences)', - 'All Day' => 'Wszystkie dni', - 'Allow option \'Decline\'' => 'Zezwól na opcję \'Odmawiam\'', - 'Allow option \'Undecided\'' => 'Zezwól na opcję \'Niezdecydowany\'', - 'Allows the user to create new calendar entries' => 'Pozwala użytkownikom tworzyć nowe pozycje w kalendarzu', - 'Allows the user to edit/delete existing calendar entries' => 'Pozwala użytkownikom edytować/usuwać istniejące pozycje w kalendarzu', - 'Attending' => 'Biorę udział', - 'Before a target calendar can be selected, the module must be activated in at least one Space.' => 'Przed wybraniem kalendarza docelowego moduł musi być aktywowany w co najmniej jednej strefie.', - 'Birthday' => 'Urodziny', - 'CalDAV' => 'CalDAV', - 'Calendar' => 'Kalendarz', - 'Calendar event' => 'Wydarzenie kalendarza', - 'Calendar events' => 'Wydarzenia kalendarza', - 'Cancel Event' => 'Anuluj wydarzenie', - 'Cannot remove the participant!' => 'Nie można usunąć uczestnika!', - 'Create entry' => 'Tworzenie pozycji', - 'Custom reminder' => 'Własne przypomnienie', - 'Day' => 'Dzień', - 'Days' => 'Dni', - 'Default reminder settings' => 'Domyślne ustawienia przypomnień', - 'Delete all events' => 'Usuń wszystkie wydarzenia', - 'Deleted' => 'Usunięte', - 'Description' => 'Opis', - 'Display events within the next X days' => 'Wyświetl wydarzenia z kolejnych X dni', - 'Do you want to install this module on your profile?' => 'Czy chcesz zainstalować ten moduł na swoim profilu?', - 'Download ICS' => 'Pobierz ICS', - 'Edit' => 'Edytuj', - 'Edit Event' => 'Zmień wydarzenie', - 'Edit all events' => 'Edytuj wszystkie wydarzenia', - 'Edit this and following events' => 'Edytuj to i kolejne wydarzenia', - 'Edit this event' => 'Edytuj to wydarzenie', - 'Email' => 'E-mail', - 'Enable' => 'Włącz', - 'Enable Reminder' => 'Włącz przypomnienie', - 'End' => 'Koniec', - 'End Date' => 'Data zakończenia', - 'End Time' => 'Koniec', - 'End time must be after start time!' => 'Data zakończenia musi być po dacie początku!', - 'Event' => 'Wydarzenie', - 'Event Type' => 'Typ wydarzenia', - 'Event Types' => 'Typy wydarzeń', - 'Event could not be deleted!' => 'Wydarzenie nie może zostać skasowane!', - 'Event has been be deleted!' => 'Wydarzenie zostało skasowane!', - 'Event not found!' => 'Nie znaleziono wydarzenia!', - 'Export as {type}' => 'Eksportuj jako {type}', - 'Files' => 'Pliki', - 'Filter by types' => 'Filtruj wg typu', - 'Friday' => 'Piątek', - 'Here you can configure default settings for all calendar events.' => 'Tutaj możesz dostosować domyślne ustawienia dla wszystkich wydarzeń.', - 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => 'Tutaj możesz ustawić globalne domyślne przypomnienia. Te ustawienia mogą zostać zastąpione na poziomie strefy/profilu.', - 'Hour' => 'Godzina', - 'I\'m attending' => 'Biorę udział', - 'ID' => 'Identyfikator', - 'In order to add events to your profile, you have to enable the calendar module first.' => 'Aby dodać wydarzenia do Twojego profilu, musisz najpierw uruchomić moduł kalendarza.', - 'Interested' => 'Zainteresowany', - 'Invalid date or time format!' => 'Błędny format daty lub czasu!', - 'Invalid day of month given' => 'Podano nieprawidłowy dzień miesiąca', - 'Invalid event type id selected.' => 'Wybrano niepoprawne ID typu wydarzenia.', - 'Invalid frequency given' => 'Podano nieprawidłową częstotliwość', - 'Invalid interval given' => 'Podano nieprawidłowy odstęp', - 'Invalid week day selection' => 'Nieprawidłowy wybór dnia tygodnia', - 'Invite' => 'Zaproś', - 'Invited: {users}' => 'Zaproszeni: {users}', - 'JWT Key' => 'Klucz JWT', - 'JWT Token Expiration' => 'Wygaśnięcie tokena JWT', - 'List' => 'Lista', - 'Location' => 'Miejsce', - 'Manage entries' => 'Zarządzanie pozycjami', - 'Maximum number of participants' => 'Maksymalna liczba uczestników', - 'Minute' => 'Minuta', - 'Mode' => 'Tryb', - 'Monday' => 'Poniedziałek', - 'Month' => 'Miesiąc', - 'Monthly on day {dayOfMonth}' => 'Co miesiąc w dniu {dayOfMonth}', - 'Monthly on the {position} {dayOfWeek}' => 'Co miesiąc w {position} {dayOfWeek}', - 'Months' => 'Miesięcy', - 'Never' => 'Nigdy', - 'Next' => 'Następny', - 'No new participants were added.' => 'Nie dodano nowych uczestników.', - 'No new participants were invited.' => 'Nie zaproszono nowych uczestników.', - 'No reminder' => 'Brak przypomnienia', - 'Notify participants about changes' => 'Powiadom uczestników o zmianach', - 'On date' => 'W dniu', - 'Participant removed.' => 'Uczestnicy usunięci.', - 'Participants' => 'Uczestnicy', - 'Participation Status' => 'Status uczestnictwa', - 'Please select new participants.' => 'Proszę wybierz nowych uczestników.', - 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => 'Wydarzenia prywatne są widoczne tylko dla Ciebie i, jeśli system znajomości jest włączony, dla Twoich znajomych.', - 'Profile Calendar' => 'Kalendarz profilowy', - 'Public' => 'Publiczny', - 'Recurring' => 'Powtarzające się', - 'Reopen Event' => 'Ponownie otwórz wydarzenie', - 'Repeat every' => 'Powtarzaj w każdy', - 'Saturday' => 'Sobota', - 'Select calendar...' => 'Wybierz kalendarz...', - 'Select space...' => 'Wybierz strefę...', - 'Set reminder' => 'Ustaw przypomnienie', - 'Show past events' => 'Pokaż dawne wydarzenia', - 'Start Date' => 'Data początku', - 'Start Time' => 'Początek', - 'Status cannot be updated.' => 'Status nie może zostać zaktualizowany.', - 'Status updated.' => 'Zaktualizowano status.', - 'Sunday' => 'Niedziela', - 'The event has already ended.' => 'Wydarzenie już się skończyło.', - 'This event does not support recurrent events' => 'To wydarzenie nie obsługuje powtarzanych zdarzeń', - 'Thursday' => 'Czwartek', - 'Time Zone' => 'Strefa czasowa', - 'Title' => 'Tytuł', - 'Today' => 'Dziś', - 'Tuesday' => 'Wtorek', - 'Upcoming {type}' => 'Nadchodzące {type}', - 'Upcoming {type}: {title}' => 'Nadchodzące {type}: {title}', - 'Use default reminder' => 'Użyj domyślnego przypomnienia', - 'User birthdays' => 'Urodziny użytownika', - 'Wednesday' => 'Środa', - 'Week' => 'Tydzień', - 'Weeks' => 'Tygodnie', - 'Year' => 'Rok', - 'Years' => 'Lata', - 'You cannot invite participants!' => 'Nie możesz zaprosić uczestników!', - 'You don\'t have permission to delete this event!' => 'Nie masz uprawnień aby usunąć to wydarzenie!', - 'You have an {type} coming up' => 'Posiadasz zbliżające się {type}', - 'You have an {type} coming up: {title}' => 'Posiadasz zbliżające się {type}: {title}', - 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => 'Zapisałeś się na wydarzenie "{contentTitle}" w {spaceName}, ruszające o {time}', - 'You have been registered for the event "{contentTitle}", starting at {time}.' => 'Przyjęto rejestrację na wydarzenie "{contentTitle}", ruszające o {time}.', - 'You have been registered for the event "{contentTitle}".' => 'Zapisałeś się na wydarzenie "{contentTitle}".', - 'Your reminder settings for event: \'{title}\'' => 'Twoje ustawienie przypomnienia dla wydarzenia: \'{title}\'', - 'canceled' => 'anulowano', - 'disabled' => 'wyłączony', - 'first' => 'pierwszy', - 'forth' => 'czwarty', - 'global' => 'globalne', - 'iCal' => 'iCal', - 'last' => 'ostatnie', - 'on weekdays' => 'w dni tygodnia', - 'second' => 'sekund', - 'third' => 'trzecia', - '{displayName} Birthday' => 'Urodziny {displayName}', - '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} właśnie dodał(a) Cię do wydarzenia "{contentTitle} w strefie {spaceName}, które startuje o {time}', - '{displayName} added you to the event "{contentTitle}".' => '{displayName} dodał/a Cię do wydarzenia "{contentTitle}".', - '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} zaprosił cię do wzięcia udziału w "{contentTitle}" w strefie {spaceName}, rusza o {time}.', - '{displayName} invited you to the event "{contentTitle}".' => '{displayName} zaprosił cię na wydarzenie "{contentTitle}".', - '{name} Calendar' => '{name} kalendarza', - 'Also include participant email addresses' => '', - 'By upcoming events first' => '', - 'Calendar event content ID' => '', - 'Filter' => '', - 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', - 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', - 'Include participant information in exports' => '', - 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', - 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', - 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', - 'in seconds. 0 for no JWT token expiration.' => '', + 'Add profile calendar' => 'Dodaj kalendarz profilowy', + 'Choose target calendar' => 'Wybierz docelowy kalendarz', + 'Reminder settings' => 'Ustawienia przypomnień', + 'Add all Space members with status {status}' => 'Wszyscy użytkownicy strefy ze statusem {status}', + 'Add participants...' => 'Dodaj uczestników...', + 'Added: {users}' => 'Dodano: {users}', + 'Additional Information for participants' => 'Dodatkowa informacja dla uczestników', + 'Adds a calendar for private or public events to your profile and main menu.' => 'Dodaje kalendarz dla wydarzeń prywatnych lub publicznych do twojego profilu i głównego menu.', + 'Adds an event calendar to this space.' => 'Dodaje kalendarz wydarzeń do tej strefy.', + 'After (occurrences)' => 'Po (occurrences)', + 'All Day' => 'Wszystkie dni', + 'Allow option \'Decline\'' => 'Zezwól na opcję \'Odmawiam\'', + 'Allow option \'Undecided\'' => 'Zezwól na opcję \'Niezdecydowany\'', + 'Allows the user to create new calendar entries' => 'Pozwala użytkownikom tworzyć nowe pozycje w kalendarzu', + 'Allows the user to edit/delete existing calendar entries' => 'Pozwala użytkownikom edytować/usuwać istniejące pozycje w kalendarzu', + 'Also include participant email addresses' => '', + 'Attending' => 'Biorę udział', + 'Before a target calendar can be selected, the module must be activated in at least one Space.' => 'Przed wybraniem kalendarza docelowego moduł musi być aktywowany w co najmniej jednej strefie.', + 'Birthday' => 'Urodziny', + 'By upcoming events first' => '', + 'CalDAV' => 'CalDAV', + 'Calendar' => 'Kalendarz', + 'Calendar event' => 'Wydarzenie kalendarza', + 'Calendar event content ID' => '', + 'Calendar events' => 'Wydarzenia kalendarza', + 'Cancel Event' => 'Anuluj wydarzenie', + 'Cannot remove the participant!' => 'Nie można usunąć uczestnika!', + 'Create entry' => 'Tworzenie pozycji', + 'Custom reminder' => 'Własne przypomnienie', + 'Day' => 'Dzień', + 'Days' => 'Dni', + 'Default reminder settings' => 'Domyślne ustawienia przypomnień', + 'Delete all events' => 'Usuń wszystkie wydarzenia', + 'Deleted' => 'Usunięte', + 'Description' => 'Opis', + 'Display events within the next X days' => 'Wyświetl wydarzenia z kolejnych X dni', + 'Do you want to install this module on your profile?' => 'Czy chcesz zainstalować ten moduł na swoim profilu?', + 'Download ICS' => 'Pobierz ICS', + 'Edit' => 'Edytuj', + 'Edit Event' => 'Zmień wydarzenie', + 'Edit all events' => 'Edytuj wszystkie wydarzenia', + 'Edit this and following events' => 'Edytuj to i kolejne wydarzenia', + 'Edit this event' => 'Edytuj to wydarzenie', + 'Email' => 'E-mail', + 'Enable' => 'Włącz', + 'Enable Reminder' => 'Włącz przypomnienie', + 'End' => 'Koniec', + 'End Date' => 'Data zakończenia', + 'End Time' => 'Koniec', + 'End time must be after start time!' => 'Data zakończenia musi być po dacie początku!', + 'Event' => 'Wydarzenie', + 'Event Type' => 'Typ wydarzenia', + 'Event Types' => 'Typy wydarzeń', + 'Event could not be deleted!' => 'Wydarzenie nie może zostać skasowane!', + 'Event has been be deleted!' => 'Wydarzenie zostało skasowane!', + 'Event not found!' => 'Nie znaleziono wydarzenia!', + 'Export as {type}' => 'Eksportuj jako {type}', + 'Files' => 'Pliki', + 'Filter' => 'Filtr', + 'Filter by types' => 'Filtruj wg typu', + 'Friday' => 'Piątek', + 'Here you can configure default settings for all calendar events.' => 'Tutaj możesz dostosować domyślne ustawienia dla wszystkich wydarzeń.', + 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => 'Tutaj możesz ustawić globalne domyślne przypomnienia. Te ustawienia mogą zostać zastąpione na poziomie strefy/profilu.', + 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', + 'Hour' => 'Godzina', + 'I\'m attending' => 'Biorę udział', + 'ID' => 'Identyfikator', + 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', + 'In order to add events to your profile, you have to enable the calendar module first.' => 'Aby dodać wydarzenia do Twojego profilu, musisz najpierw uruchomić moduł kalendarza.', + 'Include participant information in exports' => '', + 'Interested' => 'Zainteresowany', + 'Invalid date or time format!' => 'Błędny format daty lub czasu!', + 'Invalid day of month given' => 'Podano nieprawidłowy dzień miesiąca', + 'Invalid event type id selected.' => 'Wybrano niepoprawne ID typu wydarzenia.', + 'Invalid frequency given' => 'Podano nieprawidłową częstotliwość', + 'Invalid interval given' => 'Podano nieprawidłowy odstęp', + 'Invalid week day selection' => 'Nieprawidłowy wybór dnia tygodnia', + 'Invite' => 'Zaproś', + 'Invited: {users}' => 'Zaproszeni: {users}', + 'JWT Key' => 'Klucz JWT', + 'JWT Token Expiration' => 'Wygaśnięcie tokena JWT', + 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', + 'List' => 'Lista', + 'Location' => 'Miejsce', + 'Manage entries' => 'Zarządzanie pozycjami', + 'Maximum number of participants' => 'Maksymalna liczba uczestników', + 'Minute' => 'Minuta', + 'Mode' => 'Tryb', + 'Monday' => 'Poniedziałek', + 'Month' => 'Miesiąc', + 'Monthly on day {dayOfMonth}' => 'Co miesiąc w dniu {dayOfMonth}', + 'Monthly on the {position} {dayOfWeek}' => 'Co miesiąc w {position} {dayOfWeek}', + 'Months' => 'Miesięcy', + 'Never' => 'Nigdy', + 'Next' => 'Następny', + 'No new participants were added.' => 'Nie dodano nowych uczestników.', + 'No new participants were invited.' => 'Nie zaproszono nowych uczestników.', + 'No reminder' => 'Brak przypomnienia', + 'Notify participants about changes' => 'Powiadom uczestników o zmianach', + 'On date' => 'W dniu', + 'Participant removed.' => 'Uczestnicy usunięci.', + 'Participants' => 'Uczestnicy', + 'Participation Status' => 'Status uczestnictwa', + 'Please select new participants.' => 'Proszę wybierz nowych uczestników.', + 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => 'Wydarzenia prywatne są widoczne tylko dla Ciebie i, jeśli system znajomości jest włączony, dla Twoich znajomych.', + 'Profile Calendar' => 'Kalendarz profilowy', + 'Public' => 'Publiczny', + 'Recurring' => 'Powtarzające się', + 'Reopen Event' => 'Ponownie otwórz wydarzenie', + 'Repeat every' => 'Powtarzaj w każdy', + 'Saturday' => 'Sobota', + 'Select calendar...' => 'Wybierz kalendarz...', + 'Select space...' => 'Wybierz strefę...', + 'Set reminder' => 'Ustaw przypomnienie', + 'Show past events' => 'Pokaż dawne wydarzenia', + 'Start Date' => 'Data początku', + 'Start Time' => 'Początek', + 'Status cannot be updated.' => 'Status nie może zostać zaktualizowany.', + 'Status updated.' => 'Zaktualizowano status.', + 'Sunday' => 'Niedziela', + 'The event has already ended.' => 'Wydarzenie już się skończyło.', + 'This event does not support recurrent events' => 'To wydarzenie nie obsługuje powtarzanych zdarzeń', + 'Thursday' => 'Czwartek', + 'Time Zone' => 'Strefa czasowa', + 'Title' => 'Tytuł', + 'Today' => 'Dziś', + 'Tuesday' => 'Wtorek', + 'Upcoming {type}' => 'Nadchodzące {type}', + 'Upcoming {type}: {title}' => 'Nadchodzące {type}: {title}', + 'Use default reminder' => 'Użyj domyślnego przypomnienia', + 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', + 'User birthdays' => 'Urodziny użytownika', + 'Wednesday' => 'Środa', + 'Week' => 'Tydzień', + 'Weeks' => 'Tygodnie', + 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', + 'Year' => 'Rok', + 'Years' => 'Lata', + 'You cannot invite participants!' => 'Nie możesz zaprosić uczestników!', + 'You don\'t have permission to delete this event!' => 'Nie masz uprawnień aby usunąć to wydarzenie!', + 'You have an {type} coming up' => 'Posiadasz zbliżające się {type}', + 'You have an {type} coming up: {title}' => 'Posiadasz zbliżające się {type}: {title}', + 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => 'Zapisałeś się na wydarzenie "{contentTitle}" w {spaceName}, ruszające o {time}', + 'You have been registered for the event "{contentTitle}", starting at {time}.' => 'Przyjęto rejestrację na wydarzenie "{contentTitle}", ruszające o {time}.', + 'You have been registered for the event "{contentTitle}".' => 'Zapisałeś się na wydarzenie "{contentTitle}".', + 'Your reminder settings for event: \'{title}\'' => 'Twoje ustawienie przypomnienia dla wydarzenia: \'{title}\'', + 'canceled' => 'anulowano', + 'disabled' => 'wyłączony', + 'first' => 'pierwszy', + 'forth' => 'czwarty', + 'global' => 'globalne', + 'iCal' => 'iCal', + 'in seconds. 0 for no JWT token expiration.' => '', + 'last' => 'ostatnie', + 'on weekdays' => 'w dni tygodnia', + 'second' => 'sekund', + 'third' => 'trzecia', + '{displayName} Birthday' => 'Urodziny {displayName}', + '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} właśnie dodał(a) Cię do wydarzenia "{contentTitle} w strefie {spaceName}, które startuje o {time}', + '{displayName} added you to the event "{contentTitle}".' => '{displayName} dodał/a Cię do wydarzenia "{contentTitle}".', + '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} zaprosił cię do wzięcia udziału w "{contentTitle}" w strefie {spaceName}, rusza o {time}.', + '{displayName} invited you to the event "{contentTitle}".' => '{displayName} zaprosił cię na wydarzenie "{contentTitle}".', + '{name} Calendar' => '{name} kalendarza', ]; diff --git a/messages/pt/base.php b/messages/pt/base.php index 0e624788..7e57cfe1 100644 --- a/messages/pt/base.php +++ b/messages/pt/base.php @@ -1,167 +1,166 @@ Add profile calendar' => 'Adicionar calendário pessoal', - 'Choose target calendar' => 'Escolher calendário alvo', - 'Reminder settings' => 'Definições do lembrete', - 'Add participants...' => 'Adicionar participantes...', - 'Added: {users}' => 'Adicionado: {users}', - 'Additional Information for participants' => 'Informação adicional para os participantes', - 'Adds a calendar for private or public events to your profile and main menu.' => 'Adiciona um calendário para eventos públicos ou privados ao teu perfil e ao menu principal.', - 'Adds an event calendar to this space.' => 'Adiciona um evento a este espaço.', - 'After (occurrences)' => 'Após (ocorrências)', - 'All Day' => 'Todo o dia', - 'Allow option \'Decline\'' => 'Permitir a opção \'Recusar\'', - 'Allow option \'Undecided\'' => 'Permitir a opção \'Talvez\'', - 'Allows the user to create new calendar entries' => 'Permite à pessoa criar novas entradas de calendário', - 'Allows the user to edit/delete existing calendar entries' => 'Permite à pessoa editar/apagar entradas de calendário existentes', - 'Attending' => 'Participam', - 'Birthday' => 'Aniversário', - 'Calendar' => 'Calendário', - 'Cancel Event' => 'Cancelar Evento', - 'Cannot remove the participant!' => 'Não podes remover o participante!', - 'Create entry' => 'Criar entrada', - 'Custom reminder' => 'Lembrete personalizado', - 'Day' => 'Dia', - 'Days' => 'Dias', - 'Default reminder settings' => 'Definições padrão para o lembrete', - 'Delete all events' => 'Apagar todos os eventos', - 'Deleted' => 'Eliminada', - 'Description' => 'Descrição', - 'Do you want to install this module on your profile?' => 'Queres instalar este módulo no teu perfil?', - 'Download ICS' => 'Descarregar ICS', - 'Edit' => 'Editar', - 'Edit Event' => 'Editar Evento', - 'Edit all events' => 'Editar todos os eventos', - 'Edit this and following events' => 'Editar este evento e seguintes', - 'Edit this event' => 'Editar este evento', - 'Email' => 'Email', - 'Enable' => 'Ativar', - 'Enable Reminder' => 'Ativar Lembrete', - 'End' => 'Final', - 'End Date' => 'Data de Término', - 'End Time' => 'Hora de Término', - 'End time must be after start time!' => 'Hora do final tem que ser depois da hora de início!', - 'Event' => 'Evento', - 'Event Type' => 'Tipo de Evento', - 'Event Types' => 'Tipos de Evento', - 'Event not found!' => 'Evento não encontrado!', - 'Files' => 'Ficheiros', - 'Friday' => 'Sexta-feira', - 'Here you can configure default settings for all calendar events.' => 'Aqui podes configurar as definições padrão para todos os eventos no calendário.', - 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => 'Aqui podes configurar avisos globais. Estas configurações podem ser sobrescritas ao nível do espaço/perfil.', - 'Hour' => 'Hora', - 'I\'m attending' => 'Vou', - 'ID' => 'ID', - 'In order to add events to your profile, you have to enable the calendar module first.' => 'Para adicionares eventos ao teu calendário, tens de ativar o módulo de calendário primeiro', - 'Interested' => 'Interessados', - 'Invalid date or time format!' => 'Formato de data ou hora inválido!', - 'Invalid day of month given' => 'Dia do mês inválido', - 'Invalid event type id selected.' => 'Selecionado id de tipo de evento inválido.', - 'Invalid frequency given' => 'Frequência inválida', - 'Invalid interval given' => 'Intervalo inválido', - 'Invalid week day selection' => 'Selecionado dia da semana inválido', - 'Invite' => 'Convidar', - 'Invited: {users}' => 'Convidados: {users}', - 'List' => 'Lista', - 'Location' => 'Local', - 'Manage entries' => 'Gerir entradas', - 'Maximum number of participants' => 'Número máximo de participantes', - 'Mode' => 'Modo', - 'Monday' => 'Segunda-feira', - 'Month' => 'Mês', - 'Monthly on day {dayOfMonth}' => 'Mensalmente no dia {dayOfMonth}', - 'Monthly on the {position} {dayOfWeek}' => 'Mensalmente na {position} {dayOfWeek}', - 'Months' => 'Meses', - 'Never' => 'Nunca', - 'Next' => 'Seguinte', - 'No new participants were added.' => 'Não foram adicionados novos participantes.', - 'No new participants were invited.' => 'Não foram convidados novos participantes.', - 'No reminder' => 'Sem lembrete', - 'Notify participants about changes' => 'Notificar alterações aos particapantes', - 'On date' => 'Na data', - 'Participant removed.' => 'Participante removido.', - 'Participants' => 'Participantes', - 'Please select new participants.' => 'Por favor, seleciona novos participantes.', - 'Profile Calendar' => 'Calendário Pessoal', - 'Public' => 'Público', - 'Recurring' => 'Recorrente', - 'Reopen Event' => 'Reabrir Evento', - 'Repeat every' => 'Repetir a cada', - 'Saturday' => 'Sábado', - 'Set reminder' => 'Definir aviso', - 'Start Date' => 'Data de Início', - 'Start Time' => 'Hora de Início', - 'Status updated.' => 'Estado atualizado.', - 'Sunday' => 'Domingo', - 'This event does not support recurrent events' => 'Este evento não permite recorrência', - 'Thursday' => 'Quinta-feira', - 'Time Zone' => 'Fuso Horário', - 'Title' => 'Título', - 'Today' => 'Hoje', - 'Tuesday' => 'Terça-feira', - 'Upcoming {type}' => 'Próximo {type}', - 'Upcoming {type}: {title}' => 'Próximo {type}: {title}', - 'Use default reminder' => 'Usar lembrete padrão', - 'User birthdays' => 'Aniversários dos membros', - 'Wednesday' => 'Quarta-feira', - 'Week' => 'Semana', - 'Weeks' => 'Semanas', - 'Year' => 'Ano', - 'Years' => 'Anos', - 'You cannot invite participants!' => 'Não podes convidar participantes!', - 'You don\'t have permission to delete this event!' => 'Não tens permissão para apagar este evento!', - 'You have an {type} coming up' => 'Tens um {type} em breve', - 'You have an {type} coming up: {title}' => 'Tens um {type} em breve: {title}', - 'Your reminder settings for event: \'{title}\'' => 'As tuas definições de lembrete para o evento: \'{title}\'', - 'canceled' => 'cancelado', - 'disabled' => 'Desativado', - 'first' => 'primeira', - 'forth' => 'quarta', - 'last' => 'última', - 'on weekdays' => 'em dias úteis', - 'second' => 'segunda', - 'third' => 'terceira', - '{displayName} Birthday' => 'Aniversário de {displayName}', - '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} adicionou-te ao evento "{contentTitle}" no espaço {spaceName} com início às {time}.', - '{displayName} added you to the event "{contentTitle}".' => '{displayName} adicionou-te ao evento "{contentTitle}".', - '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} convidou-te para o evento "{contentTitle}" no espaço {spaceName} que terá início às {time}.', - '{displayName} invited you to the event "{contentTitle}".' => '{displayName} convidou-te para o evento "{contentTitle}".', - 'Add all Space members with status {status}' => '', - 'Also include participant email addresses' => '', - 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', - 'By upcoming events first' => '', - 'CalDAV' => '', - 'Calendar event' => '', - 'Calendar event content ID' => '', - 'Calendar events' => '', - 'Display events within the next X days' => '', - 'Event could not be deleted!' => '', - 'Event has been be deleted!' => '', - 'Export as {type}' => '', - 'Filter' => '', - 'Filter by types' => '', - 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', - 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', - 'Include participant information in exports' => '', - 'JWT Key' => '', - 'JWT Token Expiration' => '', - 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', - 'Minute' => '', - 'Participation Status' => '', - 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => '', - 'Select calendar...' => '', - 'Select space...' => '', - 'Show past events' => '', - 'Status cannot be updated.' => '', - 'The event has already ended.' => '', - 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', - 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', - 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', - 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', - 'You have been registered for the event "{contentTitle}".' => '', - 'global' => '', - 'iCal' => '', - 'in seconds. 0 for no JWT token expiration.' => '', - '{name} Calendar' => '', + 'Add profile calendar' => 'Adicionar calendário pessoal', + 'Choose target calendar' => 'Escolher calendário alvo', + 'Reminder settings' => 'Definições do lembrete', + 'Add all Space members with status {status}' => '', + 'Add participants...' => 'Adicionar participantes...', + 'Added: {users}' => 'Adicionado: {users}', + 'Additional Information for participants' => 'Informação adicional para os participantes', + 'Adds a calendar for private or public events to your profile and main menu.' => 'Adiciona um calendário para eventos públicos ou privados ao teu perfil e ao menu principal.', + 'Adds an event calendar to this space.' => 'Adiciona um evento a este espaço.', + 'After (occurrences)' => 'Após (ocorrências)', + 'All Day' => 'Todo o dia', + 'Allow option \'Decline\'' => 'Permitir a opção \'Recusar\'', + 'Allow option \'Undecided\'' => 'Permitir a opção \'Talvez\'', + 'Allows the user to create new calendar entries' => 'Permite à pessoa criar novas entradas de calendário', + 'Allows the user to edit/delete existing calendar entries' => 'Permite à pessoa editar/apagar entradas de calendário existentes', + 'Also include participant email addresses' => '', + 'Attending' => 'Participam', + 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', + 'Birthday' => 'Aniversário', + 'By upcoming events first' => '', + 'CalDAV' => '', + 'Calendar' => 'Calendário', + 'Calendar event' => '', + 'Calendar event content ID' => '', + 'Calendar events' => '', + 'Cancel Event' => 'Cancelar Evento', + 'Cannot remove the participant!' => 'Não podes remover o participante!', + 'Create entry' => 'Criar entrada', + 'Custom reminder' => 'Lembrete personalizado', + 'Day' => 'Dia', + 'Days' => 'Dias', + 'Default reminder settings' => 'Definições padrão para o lembrete', + 'Delete all events' => 'Apagar todos os eventos', + 'Deleted' => 'Eliminada', + 'Description' => 'Descrição', + 'Display events within the next X days' => '', + 'Do you want to install this module on your profile?' => 'Queres instalar este módulo no teu perfil?', + 'Download ICS' => 'Descarregar ICS', + 'Edit' => 'Editar', + 'Edit Event' => 'Editar Evento', + 'Edit all events' => 'Editar todos os eventos', + 'Edit this and following events' => 'Editar este evento e seguintes', + 'Edit this event' => 'Editar este evento', + 'Email' => 'Email', + 'Enable' => 'Ativar', + 'Enable Reminder' => 'Ativar Lembrete', + 'End' => 'Final', + 'End Date' => 'Data de Término', + 'End Time' => 'Hora de Término', + 'End time must be after start time!' => 'Hora do final tem que ser depois da hora de início!', + 'Event' => 'Evento', + 'Event Type' => 'Tipo de Evento', + 'Event Types' => 'Tipos de Evento', + 'Event could not be deleted!' => '', + 'Event has been be deleted!' => '', + 'Event not found!' => 'Evento não encontrado!', + 'Export as {type}' => '', + 'Files' => 'Ficheiros', + 'Filter' => 'Filtro', + 'Filter by types' => '', + 'Friday' => 'Sexta-feira', + 'Here you can configure default settings for all calendar events.' => 'Aqui podes configurar as definições padrão para todos os eventos no calendário.', + 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => 'Aqui podes configurar avisos globais. Estas configurações podem ser sobrescritas ao nível do espaço/perfil.', + 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', + 'Hour' => 'Hora', + 'I\'m attending' => 'Vou', + 'ID' => 'ID', + 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', + 'In order to add events to your profile, you have to enable the calendar module first.' => 'Para adicionares eventos ao teu calendário, tens de ativar o módulo de calendário primeiro', + 'Include participant information in exports' => '', + 'Interested' => 'Interessados', + 'Invalid date or time format!' => 'Formato de data ou hora inválido!', + 'Invalid day of month given' => 'Dia do mês inválido', + 'Invalid event type id selected.' => 'Selecionado id de tipo de evento inválido.', + 'Invalid frequency given' => 'Frequência inválida', + 'Invalid interval given' => 'Intervalo inválido', + 'Invalid week day selection' => 'Selecionado dia da semana inválido', + 'Invite' => 'Convidar', + 'Invited: {users}' => 'Convidados: {users}', + 'JWT Key' => '', + 'JWT Token Expiration' => '', + 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', + 'List' => 'Lista', + 'Location' => 'Local', + 'Manage entries' => 'Gerir entradas', + 'Maximum number of participants' => 'Número máximo de participantes', + 'Minute' => '', + 'Mode' => 'Modo', + 'Monday' => 'Segunda-feira', + 'Month' => 'Mês', + 'Monthly on day {dayOfMonth}' => 'Mensalmente no dia {dayOfMonth}', + 'Monthly on the {position} {dayOfWeek}' => 'Mensalmente na {position} {dayOfWeek}', + 'Months' => 'Meses', + 'Never' => 'Nunca', + 'Next' => 'Seguinte', + 'No new participants were added.' => 'Não foram adicionados novos participantes.', + 'No new participants were invited.' => 'Não foram convidados novos participantes.', + 'No reminder' => 'Sem lembrete', + 'Notify participants about changes' => 'Notificar alterações aos particapantes', + 'On date' => 'Na data', + 'Participant removed.' => 'Participante removido.', + 'Participants' => 'Participantes', + 'Participation Status' => '', + 'Please select new participants.' => 'Por favor, seleciona novos participantes.', + 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => '', + 'Profile Calendar' => 'Calendário Pessoal', + 'Public' => 'Público', + 'Recurring' => 'Recorrente', + 'Reopen Event' => 'Reabrir Evento', + 'Repeat every' => 'Repetir a cada', + 'Saturday' => 'Sábado', + 'Select calendar...' => '', + 'Select space...' => '', + 'Set reminder' => 'Definir aviso', + 'Show past events' => '', + 'Start Date' => 'Data de Início', + 'Start Time' => 'Hora de Início', + 'Status cannot be updated.' => '', + 'Status updated.' => 'Estado atualizado.', + 'Sunday' => 'Domingo', + 'The event has already ended.' => '', + 'This event does not support recurrent events' => 'Este evento não permite recorrência', + 'Thursday' => 'Quinta-feira', + 'Time Zone' => 'Fuso Horário', + 'Title' => 'Título', + 'Today' => 'Hoje', + 'Tuesday' => 'Terça-feira', + 'Upcoming {type}' => 'Próximo {type}', + 'Upcoming {type}: {title}' => 'Próximo {type}: {title}', + 'Use default reminder' => 'Usar lembrete padrão', + 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', + 'User birthdays' => 'Aniversários dos membros', + 'Wednesday' => 'Quarta-feira', + 'Week' => 'Semana', + 'Weeks' => 'Semanas', + 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', + 'Year' => 'Ano', + 'Years' => 'Anos', + 'You cannot invite participants!' => 'Não podes convidar participantes!', + 'You don\'t have permission to delete this event!' => 'Não tens permissão para apagar este evento!', + 'You have an {type} coming up' => 'Tens um {type} em breve', + 'You have an {type} coming up: {title}' => 'Tens um {type} em breve: {title}', + 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', + 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', + 'You have been registered for the event "{contentTitle}".' => '', + 'Your reminder settings for event: \'{title}\'' => 'As tuas definições de lembrete para o evento: \'{title}\'', + 'canceled' => 'cancelado', + 'disabled' => 'Desativado', + 'first' => 'primeira', + 'forth' => 'quarta', + 'global' => '', + 'iCal' => '', + 'in seconds. 0 for no JWT token expiration.' => '', + 'last' => 'última', + 'on weekdays' => 'em dias úteis', + 'second' => 'segunda', + 'third' => 'terceira', + '{displayName} Birthday' => 'Aniversário de {displayName}', + '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} adicionou-te ao evento "{contentTitle}" no espaço {spaceName} com início às {time}.', + '{displayName} added you to the event "{contentTitle}".' => '{displayName} adicionou-te ao evento "{contentTitle}".', + '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} convidou-te para o evento "{contentTitle}" no espaço {spaceName} que terá início às {time}.', + '{displayName} invited you to the event "{contentTitle}".' => '{displayName} convidou-te para o evento "{contentTitle}".', + '{name} Calendar' => '', ]; diff --git a/messages/ro/base.php b/messages/ro/base.php index 8507d9f1..13421df0 100644 --- a/messages/ro/base.php +++ b/messages/ro/base.php @@ -1,167 +1,166 @@ 'Se adaugă un calendar pentru evenimente private sau publice pe profilul tău și pe meniul principal.', - 'Adds an event calendar to this space.' => 'Se adaugă un calendar de evenimente pe acest spațiu.', - 'All Day' => 'Toată Ziua', - 'Calendar' => 'Calendar', - 'Description' => 'Descriere', - 'Edit' => 'Editează', - 'Edit this event' => 'Editează acest eveniment', - 'Email' => 'Email', - 'End Date' => 'Data Scadentă', - 'End Time' => 'Sfarsit', - 'End time must be after start time!' => 'Timpul scadent trebuie să fie după timpul de început!', - 'Event' => 'Eveniment', - 'Event not found!' => 'Evenimentul nu a fost găsit!', - 'Files' => 'Fisiere', - 'I\'m attending' => 'Particip', - 'ID' => 'ID', - 'Invite' => 'Invită', - 'List' => 'Listă', - 'Location' => 'Locație', - 'Never' => 'Niciodată', - 'Next' => 'Inainte', - 'Participants' => 'Participanți', - 'Public' => 'Public', - 'Start Date' => 'Data Începerii', - 'Start Time' => 'Inceput', - 'Time Zone' => 'Timp Zonal', - 'Title' => 'Titlul', - 'You don\'t have permission to delete this event!' => 'Nu ai permisiunea să ștergi acest eveniment!', - 'disabled' => 'dezactivat', - 'Add profile calendar' => '', - 'Choose target calendar' => '', - 'Reminder settings' => '', - 'Add all Space members with status {status}' => '', - 'Add participants...' => '', - 'Added: {users}' => '', - 'Additional Information for participants' => '', - 'After (occurrences)' => '', - 'Allow option \'Decline\'' => '', - 'Allow option \'Undecided\'' => '', - 'Allows the user to create new calendar entries' => '', - 'Allows the user to edit/delete existing calendar entries' => '', - 'Also include participant email addresses' => '', - 'Attending' => '', - 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', - 'Birthday' => '', - 'By upcoming events first' => '', - 'CalDAV' => '', - 'Calendar event' => '', - 'Calendar event content ID' => '', - 'Calendar events' => '', - 'Cancel Event' => '', - 'Cannot remove the participant!' => '', - 'Create entry' => '', - 'Custom reminder' => '', - 'Day' => '', - 'Days' => '', - 'Default reminder settings' => '', - 'Delete all events' => '', - 'Deleted' => '', - 'Display events within the next X days' => '', - 'Do you want to install this module on your profile?' => '', - 'Download ICS' => '', - 'Edit Event' => '', - 'Edit all events' => '', - 'Edit this and following events' => '', - 'Enable' => '', - 'Enable Reminder' => '', - 'End' => '', - 'Event Type' => '', - 'Event Types' => '', - 'Event could not be deleted!' => '', - 'Event has been be deleted!' => '', - 'Export as {type}' => '', - 'Filter' => '', - 'Filter by types' => '', - 'Friday' => '', - 'Here you can configure default settings for all calendar events.' => '', - 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => '', - 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', - 'Hour' => '', - 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', - 'In order to add events to your profile, you have to enable the calendar module first.' => '', - 'Include participant information in exports' => '', - 'Interested' => '', - 'Invalid date or time format!' => '', - 'Invalid day of month given' => '', - 'Invalid event type id selected.' => '', - 'Invalid frequency given' => '', - 'Invalid interval given' => '', - 'Invalid week day selection' => '', - 'Invited: {users}' => '', - 'JWT Key' => '', - 'JWT Token Expiration' => '', - 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', - 'Manage entries' => '', - 'Maximum number of participants' => '', - 'Minute' => '', - 'Mode' => '', - 'Monday' => '', - 'Month' => '', - 'Monthly on day {dayOfMonth}' => '', - 'Monthly on the {position} {dayOfWeek}' => '', - 'Months' => '', - 'No new participants were added.' => '', - 'No new participants were invited.' => '', - 'No reminder' => '', - 'Notify participants about changes' => '', - 'On date' => '', - 'Participant removed.' => '', - 'Participation Status' => '', - 'Please select new participants.' => '', - 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => '', - 'Profile Calendar' => '', - 'Recurring' => '', - 'Reopen Event' => '', - 'Repeat every' => '', - 'Saturday' => '', - 'Select calendar...' => '', - 'Select space...' => '', - 'Set reminder' => '', - 'Show past events' => '', - 'Status cannot be updated.' => '', - 'Status updated.' => '', - 'Sunday' => '', - 'The event has already ended.' => '', - 'This event does not support recurrent events' => '', - 'Thursday' => '', - 'Today' => '', - 'Tuesday' => '', - 'Upcoming {type}' => '', - 'Upcoming {type}: {title}' => '', - 'Use default reminder' => '', - 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', - 'User birthdays' => '', - 'Wednesday' => '', - 'Week' => '', - 'Weeks' => '', - 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', - 'Year' => '', - 'Years' => '', - 'You cannot invite participants!' => '', - 'You have an {type} coming up' => '', - 'You have an {type} coming up: {title}' => '', - 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', - 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', - 'You have been registered for the event "{contentTitle}".' => '', - 'Your reminder settings for event: \'{title}\'' => '', - 'canceled' => '', - 'first' => '', - 'forth' => '', - 'global' => '', - 'iCal' => '', - 'in seconds. 0 for no JWT token expiration.' => '', - 'last' => '', - 'on weekdays' => '', - 'second' => '', - 'third' => '', - '{displayName} Birthday' => '', - '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', - '{displayName} added you to the event "{contentTitle}".' => '', - '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', - '{displayName} invited you to the event "{contentTitle}".' => '', - '{name} Calendar' => '', + 'Add profile calendar' => '', + 'Choose target calendar' => '', + 'Reminder settings' => '', + 'Add all Space members with status {status}' => '', + 'Add participants...' => '', + 'Added: {users}' => '', + 'Additional Information for participants' => '', + 'Adds a calendar for private or public events to your profile and main menu.' => 'Se adaugă un calendar pentru evenimente private sau publice pe profilul tău și pe meniul principal.', + 'Adds an event calendar to this space.' => 'Se adaugă un calendar de evenimente pe acest spațiu.', + 'After (occurrences)' => '', + 'All Day' => 'Toată Ziua', + 'Allow option \'Decline\'' => '', + 'Allow option \'Undecided\'' => '', + 'Allows the user to create new calendar entries' => '', + 'Allows the user to edit/delete existing calendar entries' => '', + 'Also include participant email addresses' => '', + 'Attending' => '', + 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', + 'Birthday' => '', + 'By upcoming events first' => '', + 'CalDAV' => '', + 'Calendar' => 'Calendar', + 'Calendar event' => '', + 'Calendar event content ID' => '', + 'Calendar events' => '', + 'Cancel Event' => '', + 'Cannot remove the participant!' => '', + 'Create entry' => '', + 'Custom reminder' => '', + 'Day' => '', + 'Days' => '', + 'Default reminder settings' => '', + 'Delete all events' => '', + 'Deleted' => '', + 'Description' => 'Descriere', + 'Display events within the next X days' => '', + 'Do you want to install this module on your profile?' => '', + 'Download ICS' => '', + 'Edit' => 'Editează', + 'Edit Event' => '', + 'Edit all events' => '', + 'Edit this and following events' => '', + 'Edit this event' => 'Editează acest eveniment', + 'Email' => 'Email', + 'Enable' => '', + 'Enable Reminder' => '', + 'End' => '', + 'End Date' => 'Data Scadentă', + 'End Time' => 'Sfarsit', + 'End time must be after start time!' => 'Timpul scadent trebuie să fie după timpul de început!', + 'Event' => 'Eveniment', + 'Event Type' => '', + 'Event Types' => '', + 'Event could not be deleted!' => '', + 'Event has been be deleted!' => '', + 'Event not found!' => 'Evenimentul nu a fost găsit!', + 'Export as {type}' => '', + 'Files' => 'Fisiere', + 'Filter' => 'Filtrează', + 'Filter by types' => '', + 'Friday' => '', + 'Here you can configure default settings for all calendar events.' => '', + 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => '', + 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', + 'Hour' => '', + 'I\'m attending' => 'Particip', + 'ID' => 'ID', + 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', + 'In order to add events to your profile, you have to enable the calendar module first.' => '', + 'Include participant information in exports' => '', + 'Interested' => '', + 'Invalid date or time format!' => '', + 'Invalid day of month given' => '', + 'Invalid event type id selected.' => '', + 'Invalid frequency given' => '', + 'Invalid interval given' => '', + 'Invalid week day selection' => '', + 'Invite' => 'Invită', + 'Invited: {users}' => '', + 'JWT Key' => '', + 'JWT Token Expiration' => '', + 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', + 'List' => 'Listă', + 'Location' => 'Locație', + 'Manage entries' => '', + 'Maximum number of participants' => '', + 'Minute' => '', + 'Mode' => '', + 'Monday' => '', + 'Month' => '', + 'Monthly on day {dayOfMonth}' => '', + 'Monthly on the {position} {dayOfWeek}' => '', + 'Months' => '', + 'Never' => 'Niciodată', + 'Next' => 'Inainte', + 'No new participants were added.' => '', + 'No new participants were invited.' => '', + 'No reminder' => '', + 'Notify participants about changes' => '', + 'On date' => '', + 'Participant removed.' => '', + 'Participants' => 'Participanți', + 'Participation Status' => '', + 'Please select new participants.' => '', + 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => '', + 'Profile Calendar' => '', + 'Public' => 'Public', + 'Recurring' => '', + 'Reopen Event' => '', + 'Repeat every' => '', + 'Saturday' => '', + 'Select calendar...' => '', + 'Select space...' => '', + 'Set reminder' => '', + 'Show past events' => '', + 'Start Date' => 'Data Începerii', + 'Start Time' => 'Inceput', + 'Status cannot be updated.' => '', + 'Status updated.' => '', + 'Sunday' => '', + 'The event has already ended.' => '', + 'This event does not support recurrent events' => '', + 'Thursday' => '', + 'Time Zone' => 'Timp Zonal', + 'Title' => 'Titlul', + 'Today' => '', + 'Tuesday' => '', + 'Upcoming {type}' => '', + 'Upcoming {type}: {title}' => '', + 'Use default reminder' => '', + 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', + 'User birthdays' => '', + 'Wednesday' => '', + 'Week' => '', + 'Weeks' => '', + 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', + 'Year' => '', + 'Years' => '', + 'You cannot invite participants!' => '', + 'You don\'t have permission to delete this event!' => 'Nu ai permisiunea să ștergi acest eveniment!', + 'You have an {type} coming up' => '', + 'You have an {type} coming up: {title}' => '', + 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', + 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', + 'You have been registered for the event "{contentTitle}".' => '', + 'Your reminder settings for event: \'{title}\'' => '', + 'canceled' => '', + 'disabled' => 'dezactivat', + 'first' => '', + 'forth' => '', + 'global' => '', + 'iCal' => '', + 'in seconds. 0 for no JWT token expiration.' => '', + 'last' => '', + 'on weekdays' => '', + 'second' => '', + 'third' => '', + '{displayName} Birthday' => '', + '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', + '{displayName} added you to the event "{contentTitle}".' => '', + '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', + '{displayName} invited you to the event "{contentTitle}".' => '', + '{name} Calendar' => '', ]; diff --git a/messages/ru/base.php b/messages/ru/base.php index ade094a4..b350885f 100644 --- a/messages/ru/base.php +++ b/messages/ru/base.php @@ -1,167 +1,166 @@ Add profile calendar' => 'Добавить календарь профиля', - 'Choose target calendar' => 'Выберите целевой календарь', - 'Reminder settings' => 'Настройки напоминания', - 'Add all Space members with status {status}' => 'Добавить всех участников сообщества со статусом {status}', - 'Add participants...' => 'Добавить участников...', - 'Added: {users}' => 'Добавлены: {users}', - 'Additional Information for participants' => 'Дополнительная информация для участников', - 'Adds a calendar for private or public events to your profile and main menu.' => 'Добавляет календарь для лчиных или публичных событий в ваш профиль или в главное меню.', - 'Adds an event calendar to this space.' => 'Добавляет календарь к этому Пространству', - 'All Day' => 'Весь день', - 'Allow option \'Decline\'' => 'Разрешить вариант "Отказаться"', - 'Allow option \'Undecided\'' => 'Разрешить вариант "Не определился"', - 'Allows the user to create new calendar entries' => 'Позволить пользователю создавать новые записи в календаре', - 'Allows the user to edit/delete existing calendar entries' => 'Позволить пользователю редактировать/удалять записи в календаре', - 'Attending' => 'Участвует', - 'Before a target calendar can be selected, the module must be activated in at least one Space.' => 'Перед тем как выбрать целевой календарь, модуль должен быть включён хотя бы в одном сообществе.', - 'Birthday' => 'День рождения', - 'Calendar' => 'Календарь', - 'Cancel Event' => 'Отменить событие', - 'Cannot remove the participant!' => 'Не удалось удалить участника!', - 'Create entry' => 'Создать запись', - 'Day' => 'День', - 'Delete all events' => 'Удалить все события', - 'Deleted' => 'Удалено', - 'Description' => 'Описание', - 'Do you want to install this module on your profile?' => 'Установить этот модуль в свой профиль?', - 'Download ICS' => 'Скачать ICS', - 'Edit' => 'Изменить', - 'Edit Event' => 'Редактировать событие', - 'Edit all events' => 'Редактировать все события', - 'Edit this and following events' => 'Редактировать это и последующие события', - 'Edit this event' => 'Редактировать событие', - 'Email' => 'Email', - 'Enable' => 'Включить', - 'Enable Reminder' => 'Включить напоминание', - 'End' => 'Конец', - 'End Date' => 'Дата окончания', - 'End Time' => 'Время окончания', - 'End time must be after start time!' => 'Время окончания должно быть позже начала', - 'Event' => 'Событие', - 'Event Type' => 'Тип события', - 'Event Types' => 'Типы событий', - 'Event not found!' => 'Событие не найдено!', - 'Export as {type}' => 'Экспортировать как {type}', - 'Files' => 'Файлы', - 'Filter by types' => 'Фильтр по типам', - 'Friday' => 'Пятница', - 'I\'m attending' => 'Я собираюсь посетить', - 'ID' => 'ID', - 'In order to add events to your profile, you have to enable the calendar module first.' => 'Чтобы добавить события в свой профиль, необходимо сначала включить модуль календаря.', - 'Interested' => 'Заинтересованы', - 'Invalid date or time format!' => 'Неверный формат даты или времени!', - 'Invalid day of month given' => 'Указан неверный день месяца', - 'Invalid event type id selected.' => 'Выбран неверный идентификатор типа события.', - 'Invalid interval given' => 'Указан неверный интервал', - 'Invalid week day selection' => 'Неверный выбор дня недели', - 'Invite' => 'Пригласить', - 'Invited: {users}' => 'Приглашены: {users}', - 'List' => 'Список', - 'Location' => 'Расположение', - 'Manage entries' => 'Управление записями', - 'Maximum number of participants' => 'Максимальное количество участников', - 'Mode' => 'Режим', - 'Monday' => 'Понедельник', - 'Month' => 'Месяц', - 'Monthly on day {dayOfMonth}' => 'Ежемесячно {dayOfMonth}', - 'Months' => 'Месяцы', - 'Never' => 'Никогда', - 'Next' => 'Следующий', - 'No new participants were added.' => 'Новых участников не добавлено.', - 'No new participants were invited.' => 'Новые участники не приглашены.', - 'Notify participants about changes' => 'Уведомить участников об изменениях', - 'On date' => 'В назначенную дату', - 'Participant removed.' => 'Участник удалён.', - 'Participants' => 'Участники', - 'Participation Status' => 'Статус участия', - 'Please select new participants.' => 'Выберите новых участников.', - 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => 'Приватные события видны только вам и, если активирована система дружбы, вашим друзьям.', - 'Profile Calendar' => 'Календарь профиля', - 'Public' => 'Публично', - 'Recurring' => 'Повторяющееся', - 'Reopen Event' => 'Повторно открыть событие', - 'Repeat every' => 'Повторять каждые', - 'Saturday' => 'Суббота', - 'Set reminder' => 'Установить напоминание', - 'Start Date' => 'Дата начала', - 'Start Time' => 'Время начала', - 'Status cannot be updated.' => 'Невозможно обновить статус.', - 'Status updated.' => 'Статус обновлён.', - 'Sunday' => 'Воскресенье', - 'The event has already ended.' => 'Мероприятие уже закончилось.', - 'This event does not support recurrent events' => 'Это событие не поддерживает повторяющиеся события', - 'Thursday' => 'Четверг', - 'Time Zone' => 'Часовой пояс', - 'Title' => 'Наименование', - 'Today' => 'Сегодня', - 'Tuesday' => 'Вторник', - 'User birthdays' => 'Дни рождения', - 'Wednesday' => 'Среда', - 'Week' => 'Неделя', - 'Weeks' => 'Недели', - 'Year' => 'Год', - 'Years' => 'Годы', - 'You cannot invite participants!' => 'Вы не можете приглашать участников!', - 'You don\'t have permission to delete this event!' => 'У вас нет доступа для удаления этого события!', - 'canceled' => 'отменено', - 'disabled' => 'инвалид', - 'first' => 'первый', - 'last' => 'последний', - 'on weekdays' => 'на выходных', - '{displayName} Birthday' => 'День рождения у {displayName}', - '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} только что добавил вас на мероприятие "{contentTitle}" в сообществе {spaceName}, которое начинается в {time}.', - '{displayName} added you to the event "{contentTitle}".' => '{displayName} только что добавил вас на мероприятие "{contentTitle}".', - '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} только что пригласил вас на мероприятие "{contentTitle}" в сообществе {spaceName}, которое начинается в {time}.', - '{displayName} invited you to the event "{contentTitle}".' => '{displayName} только что пригласил вас на мероприятие "{contentTitle}".', - 'After (occurrences)' => '', - 'Also include participant email addresses' => '', - 'By upcoming events first' => '', - 'CalDAV' => '', - 'Calendar event' => '', - 'Calendar event content ID' => '', - 'Calendar events' => '', - 'Custom reminder' => '', - 'Days' => '', - 'Default reminder settings' => '', - 'Display events within the next X days' => '', - 'Event could not be deleted!' => '', - 'Event has been be deleted!' => '', - 'Filter' => '', - 'Here you can configure default settings for all calendar events.' => '', - 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => '', - 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', - 'Hour' => '', - 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', - 'Include participant information in exports' => '', - 'Invalid frequency given' => '', - 'JWT Key' => '', - 'JWT Token Expiration' => '', - 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', - 'Minute' => '', - 'Monthly on the {position} {dayOfWeek}' => '', - 'No reminder' => '', - 'Select calendar...' => '', - 'Select space...' => '', - 'Show past events' => '', - 'Upcoming {type}' => '', - 'Upcoming {type}: {title}' => '', - 'Use default reminder' => '', - 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', - 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', - 'You have an {type} coming up' => '', - 'You have an {type} coming up: {title}' => '', - 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', - 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', - 'You have been registered for the event "{contentTitle}".' => '', - 'Your reminder settings for event: \'{title}\'' => '', - 'forth' => '', - 'global' => '', - 'iCal' => '', - 'in seconds. 0 for no JWT token expiration.' => '', - 'second' => '', - 'third' => '', - '{name} Calendar' => '', + 'Add profile calendar' => 'Добавить календарь профиля', + 'Choose target calendar' => 'Выберите целевой календарь', + 'Reminder settings' => 'Настройки напоминания', + 'Add all Space members with status {status}' => 'Добавить всех участников сообщества со статусом {status}', + 'Add participants...' => 'Добавить участников...', + 'Added: {users}' => 'Добавлены: {users}', + 'Additional Information for participants' => 'Дополнительная информация для участников', + 'Adds a calendar for private or public events to your profile and main menu.' => 'Добавляет календарь для лчиных или публичных событий в ваш профиль или в главное меню.', + 'Adds an event calendar to this space.' => 'Добавляет календарь к этому Пространству', + 'After (occurrences)' => '', + 'All Day' => 'Весь день', + 'Allow option \'Decline\'' => 'Разрешить вариант "Отказаться"', + 'Allow option \'Undecided\'' => 'Разрешить вариант "Не определился"', + 'Allows the user to create new calendar entries' => 'Позволить пользователю создавать новые записи в календаре', + 'Allows the user to edit/delete existing calendar entries' => 'Позволить пользователю редактировать/удалять записи в календаре', + 'Also include participant email addresses' => '', + 'Attending' => 'Участвует', + 'Before a target calendar can be selected, the module must be activated in at least one Space.' => 'Перед тем как выбрать целевой календарь, модуль должен быть включён хотя бы в одном сообществе.', + 'Birthday' => 'День рождения', + 'By upcoming events first' => '', + 'CalDAV' => '', + 'Calendar' => 'Календарь', + 'Calendar event' => '', + 'Calendar event content ID' => '', + 'Calendar events' => '', + 'Cancel Event' => 'Отменить событие', + 'Cannot remove the participant!' => 'Не удалось удалить участника!', + 'Create entry' => 'Создать запись', + 'Custom reminder' => '', + 'Day' => 'День', + 'Days' => '', + 'Default reminder settings' => '', + 'Delete all events' => 'Удалить все события', + 'Deleted' => 'Удалено', + 'Description' => 'Описание', + 'Display events within the next X days' => '', + 'Do you want to install this module on your profile?' => 'Установить этот модуль в свой профиль?', + 'Download ICS' => 'Скачать ICS', + 'Edit' => 'Изменить', + 'Edit Event' => 'Редактировать событие', + 'Edit all events' => 'Редактировать все события', + 'Edit this and following events' => 'Редактировать это и последующие события', + 'Edit this event' => 'Редактировать событие', + 'Email' => 'Email', + 'Enable' => 'Включить', + 'Enable Reminder' => 'Включить напоминание', + 'End' => 'Конец', + 'End Date' => 'Дата окончания', + 'End Time' => 'Время окончания', + 'End time must be after start time!' => 'Время окончания должно быть позже начала', + 'Event' => 'Событие', + 'Event Type' => 'Тип события', + 'Event Types' => 'Типы событий', + 'Event could not be deleted!' => '', + 'Event has been be deleted!' => '', + 'Event not found!' => 'Событие не найдено!', + 'Export as {type}' => 'Экспортировать как {type}', + 'Files' => 'Файлы', + 'Filter' => 'Фильтр', + 'Filter by types' => 'Фильтр по типам', + 'Friday' => 'Пятница', + 'Here you can configure default settings for all calendar events.' => '', + 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => '', + 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', + 'Hour' => '', + 'I\'m attending' => 'Я собираюсь посетить', + 'ID' => 'ID', + 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', + 'In order to add events to your profile, you have to enable the calendar module first.' => 'Чтобы добавить события в свой профиль, необходимо сначала включить модуль календаря.', + 'Include participant information in exports' => '', + 'Interested' => 'Заинтересованы', + 'Invalid date or time format!' => 'Неверный формат даты или времени!', + 'Invalid day of month given' => 'Указан неверный день месяца', + 'Invalid event type id selected.' => 'Выбран неверный идентификатор типа события.', + 'Invalid frequency given' => '', + 'Invalid interval given' => 'Указан неверный интервал', + 'Invalid week day selection' => 'Неверный выбор дня недели', + 'Invite' => 'Пригласить', + 'Invited: {users}' => 'Приглашены: {users}', + 'JWT Key' => '', + 'JWT Token Expiration' => '', + 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', + 'List' => 'Список', + 'Location' => 'Расположение', + 'Manage entries' => 'Управление записями', + 'Maximum number of participants' => 'Максимальное количество участников', + 'Minute' => '', + 'Mode' => 'Режим', + 'Monday' => 'Понедельник', + 'Month' => 'Месяц', + 'Monthly on day {dayOfMonth}' => 'Ежемесячно {dayOfMonth}', + 'Monthly on the {position} {dayOfWeek}' => '', + 'Months' => 'Месяцы', + 'Never' => 'Никогда', + 'Next' => 'Следующий', + 'No new participants were added.' => 'Новых участников не добавлено.', + 'No new participants were invited.' => 'Новые участники не приглашены.', + 'No reminder' => '', + 'Notify participants about changes' => 'Уведомить участников об изменениях', + 'On date' => 'В назначенную дату', + 'Participant removed.' => 'Участник удалён.', + 'Participants' => 'Участники', + 'Participation Status' => 'Статус участия', + 'Please select new participants.' => 'Выберите новых участников.', + 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => 'Приватные события видны только вам и, если активирована система дружбы, вашим друзьям.', + 'Profile Calendar' => 'Календарь профиля', + 'Public' => 'Публично', + 'Recurring' => 'Повторяющееся', + 'Reopen Event' => 'Повторно открыть событие', + 'Repeat every' => 'Повторять каждые', + 'Saturday' => 'Суббота', + 'Select calendar...' => '', + 'Select space...' => '', + 'Set reminder' => 'Установить напоминание', + 'Show past events' => '', + 'Start Date' => 'Дата начала', + 'Start Time' => 'Время начала', + 'Status cannot be updated.' => 'Невозможно обновить статус.', + 'Status updated.' => 'Статус обновлён.', + 'Sunday' => 'Воскресенье', + 'The event has already ended.' => 'Мероприятие уже закончилось.', + 'This event does not support recurrent events' => 'Это событие не поддерживает повторяющиеся события', + 'Thursday' => 'Четверг', + 'Time Zone' => 'Часовой пояс', + 'Title' => 'Наименование', + 'Today' => 'Сегодня', + 'Tuesday' => 'Вторник', + 'Upcoming {type}' => '', + 'Upcoming {type}: {title}' => '', + 'Use default reminder' => '', + 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', + 'User birthdays' => 'Дни рождения', + 'Wednesday' => 'Среда', + 'Week' => 'Неделя', + 'Weeks' => 'Недели', + 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', + 'Year' => 'Год', + 'Years' => 'Годы', + 'You cannot invite participants!' => 'Вы не можете приглашать участников!', + 'You don\'t have permission to delete this event!' => 'У вас нет доступа для удаления этого события!', + 'You have an {type} coming up' => '', + 'You have an {type} coming up: {title}' => '', + 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', + 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', + 'You have been registered for the event "{contentTitle}".' => '', + 'Your reminder settings for event: \'{title}\'' => '', + 'canceled' => 'отменено', + 'disabled' => 'инвалид', + 'first' => 'первый', + 'forth' => '', + 'global' => '', + 'iCal' => '', + 'in seconds. 0 for no JWT token expiration.' => '', + 'last' => 'последний', + 'on weekdays' => 'на выходных', + 'second' => '', + 'third' => '', + '{displayName} Birthday' => 'День рождения у {displayName}', + '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} только что добавил вас на мероприятие "{contentTitle}" в сообществе {spaceName}, которое начинается в {time}.', + '{displayName} added you to the event "{contentTitle}".' => '{displayName} только что добавил вас на мероприятие "{contentTitle}".', + '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} только что пригласил вас на мероприятие "{contentTitle}" в сообществе {spaceName}, которое начинается в {time}.', + '{displayName} invited you to the event "{contentTitle}".' => '{displayName} только что пригласил вас на мероприятие "{contentTitle}".', + '{name} Calendar' => '', ]; diff --git a/messages/sk/base.php b/messages/sk/base.php index 90d12ccc..6228a903 100644 --- a/messages/sk/base.php +++ b/messages/sk/base.php @@ -1,167 +1,166 @@ Add profile calendar' => 'Pridať profilový kalendár', - 'Choose target calendar' => 'Vyberte cieľový kalendár', - 'Reminder settings' => 'Nastavenie Pripomienky', - 'Add all Space members with status {status}' => 'Pridať všetkých členov priestoru so stavom {status}', - 'Add participants...' => 'Pridať účastníkov...', - 'Added: {users}' => 'Pridaný: {users}', - 'Additional Information for participants' => 'Doplňujúce informácie pre účastníkov', - 'Adds a calendar for private or public events to your profile and main menu.' => 'Pridať kalendár pre súkromné ​​alebo verejné udalosti do vášho profilu a hlavnej ponuky.', - 'Adds an event calendar to this space.' => 'Pridať do tohto priestoru kalendár udalostí.', - 'After (occurrences)' => 'Po (výskyty)', - 'All Day' => 'Celý deň', - 'Allow option \'Decline\'' => 'Povoliť možnosť „Odmietnuť“', - 'Allow option \'Undecided\'' => 'Povoliť možnosť „Nerozhodnutý“', - 'Allows the user to create new calendar entries' => 'Umožňuje používateľovi vytvárať nové záznamy v kalendári', - 'Allows the user to edit/delete existing calendar entries' => 'Umožňuje používateľovi upraviť/vymazať existujúce záznamy v kalendári', - 'Attending' => 'Zúčastním sa', - 'Before a target calendar can be selected, the module must be activated in at least one Space.' => 'Pred výberom cieľového kalendára musí byť modul aktivovaný aspoň v jednom priestore.', - 'Birthday' => 'Narodeniny', - 'Calendar' => 'Kalendár', - 'Cancel Event' => 'Zrušiť udalosť', - 'Cannot remove the participant!' => 'Účastníka nie je možné odstrániť!', - 'Create entry' => 'Vytvoriť záznam', - 'Custom reminder' => 'Vlastná pripomienka', - 'Day' => 'Deň', - 'Days' => 'Dni', - 'Default reminder settings' => 'Predvolené nastavenie pripomienky', - 'Delete all events' => 'Odstrániť všetky udalosti', - 'Deleted' => 'Odstránené', - 'Description' => 'Popis', - 'Do you want to install this module on your profile?' => 'Chcete si tento modul nainštalovať do svojho profilu?', - 'Download ICS' => 'Stiahnite si ICS', - 'Edit' => 'Upraviť', - 'Edit Event' => 'Upraviť udalosť', - 'Edit all events' => 'Upraviť všetky udalosti', - 'Edit this and following events' => 'Upravte túto a nasledujúce udalosti', - 'Edit this event' => 'Upraviť túto udalosť', - 'Email' => 'Email', - 'Enable' => 'Povoliť', - 'Enable Reminder' => 'Povoliť Pripomienku', - 'End' => 'Koniec', - 'End Date' => 'Dátum Ukončenia', - 'End Time' => 'Čas Ukončenia', - 'End time must be after start time!' => 'Čas ukončenia musí byť neskorší ako čas začiatku!', - 'Event' => 'Udalosť', - 'Event Type' => 'Typ Udalosti', - 'Event Types' => 'Typy udalostí', - 'Event could not be deleted!' => 'Udalosť sa nepodarilo odstrániť!', - 'Event has been be deleted!' => 'Udalosť bola vymazaná!', - 'Event not found!' => 'Udalosť sa nenašla!', - 'Export as {type}' => 'Exportovať ako {type}', - 'Files' => 'Súbory', - 'Filter by types' => 'Filtrovať podľa typov', - 'Friday' => 'Piatok', - 'Here you can configure default settings for all calendar events.' => 'Tu môžete nakonfigurovať predvolené nastavenie pre všetky udalosti kalendára.', - 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => 'Tu môžete nakonfigurovať globálne predvolené pripomienky. Tieto nastavenia je možné prepísať na úrovni priestoru/profilu.', - 'Hour' => 'Hodina', - 'I\'m attending' => 'Som účatníkom', - 'ID' => 'ID', - 'In order to add events to your profile, you have to enable the calendar module first.' => 'Ak chcete pridať udalosti do svojho profilu, musíte najskôr povoliť modul kalendára.', - 'Interested' => 'Záujem', - 'Invalid date or time format!' => 'Neplatný formát dátumu alebo času!', - 'Invalid day of month given' => 'Uvedený neplatný deň v mesiaci', - 'Invalid event type id selected.' => 'Vybrali ste neplatné ID typu udalosti.', - 'Invalid frequency given' => 'Uvedené neplatné opakovanie', - 'Invalid interval given' => 'Zadaný neplatný interval', - 'Invalid week day selection' => 'Neplatný výber dňa v týždni', - 'Invite' => 'Pozvať', - 'Invited: {users}' => 'Pozvaní: {users}', - 'List' => 'Zoznam', - 'Location' => 'Poloha', - 'Manage entries' => 'Spravovať záznamy', - 'Maximum number of participants' => 'Maximálny počet účastníkov', - 'Minute' => 'Minúta', - 'Mode' => 'Režim', - 'Monday' => 'Pondelok', - 'Month' => 'Mesiac', - 'Monthly on day {dayOfMonth}' => 'Mesačne v deň {dayOfMonth}', - 'Monthly on the {position} {dayOfWeek}' => 'Mesačne v {position} {dayOfWeek}', - 'Months' => 'Mesiace', - 'Never' => 'Nikdy', - 'Next' => 'Ďalej', - 'No new participants were added.' => 'Neboli pridaní žiadni noví účastníci.', - 'No new participants were invited.' => 'Neboli pozvaní žiadni noví účastníci.', - 'No reminder' => 'Žiadna pripomienka', - 'Notify participants about changes' => 'Informovať účastníkov o zmenách', - 'On date' => 'Pri dátume', - 'Participant removed.' => 'Účastník bol odstránený.', - 'Participants' => 'Účastníci', - 'Participation Status' => 'Stav Účasti', - 'Please select new participants.' => 'Vyberte nových účastníkov.', - 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => 'Súkromné ​​udalosti sú viditeľné iba pre vás, a ak je aktivovaný systém priateľstva, aj pre vašich priateľov.', - 'Profile Calendar' => 'Profilový Kalendár', - 'Public' => 'Verejné', - 'Recurring' => 'Opakujúce sa', - 'Reopen Event' => 'Znovu otvoriť udalosť', - 'Repeat every' => 'Opakovať každý', - 'Saturday' => 'Sobota', - 'Set reminder' => 'Nastaviť pripomienku', - 'Start Date' => 'Dátum Začiatku', - 'Start Time' => 'Doba Spustenia', - 'Status cannot be updated.' => 'Stav nie je možné aktualizovať.', - 'Status updated.' => 'Stav bol aktualizovaný.', - 'Sunday' => 'Nedeľa', - 'The event has already ended.' => 'Udalosť sa už skončila.', - 'This event does not support recurrent events' => 'Táto udalosť nepodporuje opakovanie', - 'Thursday' => 'Štvrtok', - 'Time Zone' => 'Časové Pásmo', - 'Title' => 'Názov', - 'Today' => 'Dnes', - 'Tuesday' => 'Utorok', - 'Upcoming {type}' => 'Nadchádzajúce {type}', - 'Upcoming {type}: {title}' => 'Nadchádzajúce {type}: {title}', - 'Use default reminder' => 'Použiť predvolenú pripomienku', - 'User birthdays' => 'Narodeniny používateľa', - 'Wednesday' => 'Streda', - 'Week' => 'Týždeň', - 'Weeks' => 'Týždňov', - 'Year' => 'Rok', - 'Years' => 'Rokov', - 'You cannot invite participants!' => 'Nemôžete pozvať účastníkov!', - 'You don\'t have permission to delete this event!' => 'Nemáte povolenie na odstránenie tejto udalosti!', - 'You have an {type} coming up' => 'Čaká vás {type}', - 'You have an {type} coming up: {title}' => 'Máte pred sebou {type}: {title}', - 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => 'Boli ste zaregistrovaní na udalosť „{contentTitle}“ v {spaceName} so začiatkom o {time}', - 'You have been registered for the event "{contentTitle}", starting at {time}.' => 'Boli ste zaregistrovaní na udalosť „{contentTitle}“, ktorá sa začína o {time}.', - 'You have been registered for the event "{contentTitle}".' => 'Boli ste zaregistrovaní na udalosť „{contentTitle}“.', - 'Your reminder settings for event: \'{title}\'' => 'Vaše nastavenie pripomienky pre udalosť: \'{title}\'', - 'canceled' => 'zrušené', - 'disabled' => 'zakázaný', - 'first' => 'najprv', - 'forth' => 'ďalej', - 'global' => 'globálny', - 'last' => 'posledný', - 'on weekdays' => 'vo všedné dni', - 'second' => 'druhý', - 'third' => 'tretí', - '{displayName} Birthday' => 'Narodeniny oslavuje {displayName}', - '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} vás pridal k udalosti „{contentTitle}“ v priestore {spaceName}, začínajúcej {time}.', - '{displayName} added you to the event "{contentTitle}".' => '{displayName} vás pridal k udalosti „{contentTitle}“.', - '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} vás pozval na podujatie „{contentTitle}“ v priestore {spaceName}, začínajúcej {time}.', - '{displayName} invited you to the event "{contentTitle}".' => '{displayName} vás pozval na podujatie „{contentTitle}“.', - 'Also include participant email addresses' => '', - 'By upcoming events first' => '', - 'CalDAV' => '', - 'Calendar event' => '', - 'Calendar event content ID' => '', - 'Calendar events' => '', - 'Display events within the next X days' => '', - 'Filter' => '', - 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', - 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', - 'Include participant information in exports' => '', - 'JWT Key' => '', - 'JWT Token Expiration' => '', - 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', - 'Select calendar...' => '', - 'Select space...' => '', - 'Show past events' => '', - 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', - 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', - 'iCal' => '', - 'in seconds. 0 for no JWT token expiration.' => '', - '{name} Calendar' => '', + 'Add profile calendar' => 'Pridať profilový kalendár', + 'Choose target calendar' => 'Vyberte cieľový kalendár', + 'Reminder settings' => 'Nastavenie Pripomienky', + 'Add all Space members with status {status}' => 'Pridať všetkých členov priestoru so stavom {status}', + 'Add participants...' => 'Pridať účastníkov...', + 'Added: {users}' => 'Pridaný: {users}', + 'Additional Information for participants' => 'Doplňujúce informácie pre účastníkov', + 'Adds a calendar for private or public events to your profile and main menu.' => 'Pridať kalendár pre súkromné ​​alebo verejné udalosti do vášho profilu a hlavnej ponuky.', + 'Adds an event calendar to this space.' => 'Pridať do tohto priestoru kalendár udalostí.', + 'After (occurrences)' => 'Po (výskyty)', + 'All Day' => 'Celý deň', + 'Allow option \'Decline\'' => 'Povoliť možnosť „Odmietnuť“', + 'Allow option \'Undecided\'' => 'Povoliť možnosť „Nerozhodnutý“', + 'Allows the user to create new calendar entries' => 'Umožňuje používateľovi vytvárať nové záznamy v kalendári', + 'Allows the user to edit/delete existing calendar entries' => 'Umožňuje používateľovi upraviť/vymazať existujúce záznamy v kalendári', + 'Also include participant email addresses' => '', + 'Attending' => 'Zúčastním sa', + 'Before a target calendar can be selected, the module must be activated in at least one Space.' => 'Pred výberom cieľového kalendára musí byť modul aktivovaný aspoň v jednom priestore.', + 'Birthday' => 'Narodeniny', + 'By upcoming events first' => '', + 'CalDAV' => '', + 'Calendar' => 'Kalendár', + 'Calendar event' => '', + 'Calendar event content ID' => '', + 'Calendar events' => '', + 'Cancel Event' => 'Zrušiť udalosť', + 'Cannot remove the participant!' => 'Účastníka nie je možné odstrániť!', + 'Create entry' => 'Vytvoriť záznam', + 'Custom reminder' => 'Vlastná pripomienka', + 'Day' => 'Deň', + 'Days' => 'Dni', + 'Default reminder settings' => 'Predvolené nastavenie pripomienky', + 'Delete all events' => 'Odstrániť všetky udalosti', + 'Deleted' => 'Odstránené', + 'Description' => 'Popis', + 'Display events within the next X days' => '', + 'Do you want to install this module on your profile?' => 'Chcete si tento modul nainštalovať do svojho profilu?', + 'Download ICS' => 'Stiahnite si ICS', + 'Edit' => 'Upraviť', + 'Edit Event' => 'Upraviť udalosť', + 'Edit all events' => 'Upraviť všetky udalosti', + 'Edit this and following events' => 'Upravte túto a nasledujúce udalosti', + 'Edit this event' => 'Upraviť túto udalosť', + 'Email' => 'Email', + 'Enable' => 'Povoliť', + 'Enable Reminder' => 'Povoliť Pripomienku', + 'End' => 'Koniec', + 'End Date' => 'Dátum Ukončenia', + 'End Time' => 'Čas Ukončenia', + 'End time must be after start time!' => 'Čas ukončenia musí byť neskorší ako čas začiatku!', + 'Event' => 'Udalosť', + 'Event Type' => 'Typ Udalosti', + 'Event Types' => 'Typy udalostí', + 'Event could not be deleted!' => 'Udalosť sa nepodarilo odstrániť!', + 'Event has been be deleted!' => 'Udalosť bola vymazaná!', + 'Event not found!' => 'Udalosť sa nenašla!', + 'Export as {type}' => 'Exportovať ako {type}', + 'Files' => 'Súbory', + 'Filter' => 'Filter', + 'Filter by types' => 'Filtrovať podľa typov', + 'Friday' => 'Piatok', + 'Here you can configure default settings for all calendar events.' => 'Tu môžete nakonfigurovať predvolené nastavenie pre všetky udalosti kalendára.', + 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => 'Tu môžete nakonfigurovať globálne predvolené pripomienky. Tieto nastavenia je možné prepísať na úrovni priestoru/profilu.', + 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', + 'Hour' => 'Hodina', + 'I\'m attending' => 'Som účatníkom', + 'ID' => 'ID', + 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', + 'In order to add events to your profile, you have to enable the calendar module first.' => 'Ak chcete pridať udalosti do svojho profilu, musíte najskôr povoliť modul kalendára.', + 'Include participant information in exports' => '', + 'Interested' => 'Záujem', + 'Invalid date or time format!' => 'Neplatný formát dátumu alebo času!', + 'Invalid day of month given' => 'Uvedený neplatný deň v mesiaci', + 'Invalid event type id selected.' => 'Vybrali ste neplatné ID typu udalosti.', + 'Invalid frequency given' => 'Uvedené neplatné opakovanie', + 'Invalid interval given' => 'Zadaný neplatný interval', + 'Invalid week day selection' => 'Neplatný výber dňa v týždni', + 'Invite' => 'Pozvať', + 'Invited: {users}' => 'Pozvaní: {users}', + 'JWT Key' => '', + 'JWT Token Expiration' => '', + 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', + 'List' => 'Zoznam', + 'Location' => 'Poloha', + 'Manage entries' => 'Spravovať záznamy', + 'Maximum number of participants' => 'Maximálny počet účastníkov', + 'Minute' => 'Minúta', + 'Mode' => 'Režim', + 'Monday' => 'Pondelok', + 'Month' => 'Mesiac', + 'Monthly on day {dayOfMonth}' => 'Mesačne v deň {dayOfMonth}', + 'Monthly on the {position} {dayOfWeek}' => 'Mesačne v {position} {dayOfWeek}', + 'Months' => 'Mesiace', + 'Never' => 'Nikdy', + 'Next' => 'Ďalej', + 'No new participants were added.' => 'Neboli pridaní žiadni noví účastníci.', + 'No new participants were invited.' => 'Neboli pozvaní žiadni noví účastníci.', + 'No reminder' => 'Žiadna pripomienka', + 'Notify participants about changes' => 'Informovať účastníkov o zmenách', + 'On date' => 'Pri dátume', + 'Participant removed.' => 'Účastník bol odstránený.', + 'Participants' => 'Účastníci', + 'Participation Status' => 'Stav Účasti', + 'Please select new participants.' => 'Vyberte nových účastníkov.', + 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => 'Súkromné ​​udalosti sú viditeľné iba pre vás, a ak je aktivovaný systém priateľstva, aj pre vašich priateľov.', + 'Profile Calendar' => 'Profilový Kalendár', + 'Public' => 'Verejné', + 'Recurring' => 'Opakujúce sa', + 'Reopen Event' => 'Znovu otvoriť udalosť', + 'Repeat every' => 'Opakovať každý', + 'Saturday' => 'Sobota', + 'Select calendar...' => '', + 'Select space...' => '', + 'Set reminder' => 'Nastaviť pripomienku', + 'Show past events' => '', + 'Start Date' => 'Dátum Začiatku', + 'Start Time' => 'Doba Spustenia', + 'Status cannot be updated.' => 'Stav nie je možné aktualizovať.', + 'Status updated.' => 'Stav bol aktualizovaný.', + 'Sunday' => 'Nedeľa', + 'The event has already ended.' => 'Udalosť sa už skončila.', + 'This event does not support recurrent events' => 'Táto udalosť nepodporuje opakovanie', + 'Thursday' => 'Štvrtok', + 'Time Zone' => 'Časové Pásmo', + 'Title' => 'Názov', + 'Today' => 'Dnes', + 'Tuesday' => 'Utorok', + 'Upcoming {type}' => 'Nadchádzajúce {type}', + 'Upcoming {type}: {title}' => 'Nadchádzajúce {type}: {title}', + 'Use default reminder' => 'Použiť predvolenú pripomienku', + 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', + 'User birthdays' => 'Narodeniny používateľa', + 'Wednesday' => 'Streda', + 'Week' => 'Týždeň', + 'Weeks' => 'Týždňov', + 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', + 'Year' => 'Rok', + 'Years' => 'Rokov', + 'You cannot invite participants!' => 'Nemôžete pozvať účastníkov!', + 'You don\'t have permission to delete this event!' => 'Nemáte povolenie na odstránenie tejto udalosti!', + 'You have an {type} coming up' => 'Čaká vás {type}', + 'You have an {type} coming up: {title}' => 'Máte pred sebou {type}: {title}', + 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => 'Boli ste zaregistrovaní na udalosť „{contentTitle}“ v {spaceName} so začiatkom o {time}', + 'You have been registered for the event "{contentTitle}", starting at {time}.' => 'Boli ste zaregistrovaní na udalosť „{contentTitle}“, ktorá sa začína o {time}.', + 'You have been registered for the event "{contentTitle}".' => 'Boli ste zaregistrovaní na udalosť „{contentTitle}“.', + 'Your reminder settings for event: \'{title}\'' => 'Vaše nastavenie pripomienky pre udalosť: \'{title}\'', + 'canceled' => 'zrušené', + 'disabled' => 'zakázaný', + 'first' => 'najprv', + 'forth' => 'ďalej', + 'global' => 'globálny', + 'iCal' => '', + 'in seconds. 0 for no JWT token expiration.' => '', + 'last' => 'posledný', + 'on weekdays' => 'vo všedné dni', + 'second' => 'druhý', + 'third' => 'tretí', + '{displayName} Birthday' => 'Narodeniny oslavuje {displayName}', + '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} vás pridal k udalosti „{contentTitle}“ v priestore {spaceName}, začínajúcej {time}.', + '{displayName} added you to the event "{contentTitle}".' => '{displayName} vás pridal k udalosti „{contentTitle}“.', + '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} vás pozval na podujatie „{contentTitle}“ v priestore {spaceName}, začínajúcej {time}.', + '{displayName} invited you to the event "{contentTitle}".' => '{displayName} vás pozval na podujatie „{contentTitle}“.', + '{name} Calendar' => '', ]; diff --git a/messages/sr/base.php b/messages/sr/base.php index 868ffe93..22abbcc9 100644 --- a/messages/sr/base.php +++ b/messages/sr/base.php @@ -1,167 +1,166 @@ Add profile calendar' => 'Dodaj profilni kalendar', - 'Choose target calendar' => 'Odaberite ciljani kalendar', - 'Reminder settings' => 'Postavke podsetnika', - 'Adds a calendar for private or public events to your profile and main menu.' => 'Dodavaje kalendara za privatne ili javne događaje na vaš profil i glavni meni.', - 'Adds an event calendar to this space.' => 'Dodaje kalendar događaja u ovaj prostor.', - 'After (occurrences)' => 'Nakon (pojave)', - 'All Day' => 'Celi dan', - 'Allows the user to create new calendar entries' => 'Korisniku omogućuje stvaranje novih unosa u kalendar', - 'Allows the user to edit/delete existing calendar entries' => 'Korisniku omogućuje uređivanje / brisanje postojećih unosa u kalendar', - 'Attending' => 'Prisustvuju', - 'Birthday' => 'Rođendan', - 'Calendar' => 'Kalendar', - 'Cancel Event' => 'Otkaži događaj', - 'Create entry' => 'Kreriaj unos', - 'Custom reminder' => 'Prilagođeni podsetnik', - 'Day' => 'Dan', - 'Days' => 'Dana', - 'Default reminder settings' => 'Podrazumevane postavke podsetnika', - 'Delete all events' => 'Izbriši sve događaje', - 'Deleted' => 'Obrisano', - 'Description' => 'Opis', - 'Do you want to install this module on your profile?' => 'Želite li instalirati ovaj modul na svoj profil?', - 'Edit' => 'Uredi', - 'Edit all events' => 'Uredi sve događaje', - 'Edit this and following events' => 'Uredite ovaj i sledeće događaje', - 'Edit this event' => 'Uredite ovaj događaj', - 'Email' => 'Email', - 'Enable' => 'Omogući', - 'End' => 'Završi', - 'End Date' => 'Datum završetka', - 'End Time' => 'Vreme završetka', - 'End time must be after start time!' => 'Vreme završetka mora biti nakon vremena početka!', - 'Event' => 'Događaj', - 'Event Type' => 'Tip događaja', - 'Event Types' => 'Vrste događaja', - 'Event not found!' => 'Događaj nije pronađen!', - 'Files' => 'Datoteke', - 'Friday' => 'Petak', - 'Here you can configure default settings for all calendar events.' => 'Ovde možete konfigurirati zadane postavke za sve kalendarske događaje.', - 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => 'Ovde možete konfigurirati globalne zadane podsetnike. Te se postavke mogu prebrisati na nivou prostora / profila.', - 'Hour' => 'Sat', - 'I\'m attending' => 'Ja prisustvujem', - 'ID' => 'ID', - 'In order to add events to your profile, you have to enable the calendar module first.' => 'Da biste dodali događaje u svoj profil, najprije morate omogućiti modul Kalendar.', - 'Interested' => 'Zainteresiran', - 'Invalid date or time format!' => 'Nevažeći format datuma ili vremena!', - 'Invalid day of month given' => 'Dat je nevažeći dan u mesecu', - 'Invalid event type id selected.' => 'Odabran je ID vrste vrste događaja koji nije valjan.', - 'Invalid frequency given' => 'Navedena je neispravna učestalost', - 'Invalid interval given' => 'Naveden je nevažeći interval', - 'Invalid week day selection' => 'Nevažeći odabir dana u nedelji', - 'Invite' => 'Poziv', - 'List' => 'Lista', - 'Location' => 'Lokacija', - 'Manage entries' => 'Upravljaj unosima', - 'Maximum number of participants' => 'Maksimalan broj učesnika', - 'Monday' => 'Ponedjeljak', - 'Month' => 'Mesec', - 'Monthly on day {dayOfMonth}' => 'Mesečno na dan {dayOfMonth}', - 'Monthly on the {position} {dayOfWeek}' => 'Mesečno na {position} {dayOfWeek}', - 'Months' => 'Mjeseci', - 'Never' => 'Nikada', - 'Next' => 'Dalje', - 'No reminder' => 'Nema podsetnika', - 'On date' => 'Na datum', - 'Participants' => 'Učesnici', - 'Profile Calendar' => 'Profil Kalendar', - 'Public' => 'Javno', - 'Recurring' => 'Ponavljajući', - 'Reopen Event' => 'Ponovo otvori događaj', - 'Repeat every' => 'Ponovite svaki', - 'Saturday' => 'Subota', - 'Set reminder' => 'Postavi podsetnik', - 'Start Date' => 'Datum početka', - 'Start Time' => 'Vreme početka', - 'Sunday' => 'Nedjelja', - 'This event does not support recurrent events' => 'Ovaj događaj ne podržava ponavljajuće događaje', - 'Thursday' => 'Četvrtak', - 'Time Zone' => 'Vremenska zona', - 'Title' => 'Funkcija', - 'Today' => 'Danas', - 'Tuesday' => 'Utorak', - 'Upcoming {type}' => 'Predstojeći {type}', - 'Upcoming {type}: {title}' => 'Predstojeći {type}: {title}', - 'Use default reminder' => 'Upotrijebi podrazumevani podsetnik ', - 'User birthdays' => 'Rođendan korisnika', - 'Wednesday' => 'Sreda', - 'Week' => 'Sedemica', - 'Weeks' => 'Nedelja', - 'Year' => 'Godina', - 'Years' => 'Godine', - 'You don\'t have permission to delete this event!' => 'Nemate dozvolu da obrišete ovaj događaj!', - 'You have an {type} coming up' => 'Predstoji vam {type}', - 'You have an {type} coming up: {title}' => 'Predstoji vam {type}: {title}', - 'Your reminder settings for event: \'{title}\'' => 'Postavke podsetnika za događaj: \'{title}\'', - 'canceled' => 'otkazano', - 'disabled' => 'onemogućeno', - 'first' => 'prvi', - 'forth' => 'unaprijed', - 'last' => 'poslednji', - 'on weekdays' => 'radnim danima', - 'second' => 'drugi', - 'third' => 'treći', - '{displayName} Birthday' => '{displayName} Rođendane', - '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} vas je upravo dodao na događaj "{contentTitle}" u prostoru {spaceName} koji počinje {time}.', - '{displayName} added you to the event "{contentTitle}".' => '{displayName} vas je upravo dodao na događaj "{contentTitle}".', - 'Add all Space members with status {status}' => '', - 'Add participants...' => '', - 'Added: {users}' => '', - 'Additional Information for participants' => '', - 'Allow option \'Decline\'' => '', - 'Allow option \'Undecided\'' => '', - 'Also include participant email addresses' => '', - 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', - 'By upcoming events first' => '', - 'CalDAV' => '', - 'Calendar event' => '', - 'Calendar event content ID' => '', - 'Calendar events' => '', - 'Cannot remove the participant!' => '', - 'Display events within the next X days' => '', - 'Download ICS' => '', - 'Edit Event' => '', - 'Enable Reminder' => '', - 'Event could not be deleted!' => '', - 'Event has been be deleted!' => '', - 'Export as {type}' => '', - 'Filter' => '', - 'Filter by types' => '', - 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', - 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', - 'Include participant information in exports' => '', - 'Invited: {users}' => '', - 'JWT Key' => '', - 'JWT Token Expiration' => '', - 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', - 'Minute' => '', - 'Mode' => '', - 'No new participants were added.' => '', - 'No new participants were invited.' => '', - 'Notify participants about changes' => '', - 'Participant removed.' => '', - 'Participation Status' => '', - 'Please select new participants.' => '', - 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => '', - 'Select calendar...' => '', - 'Select space...' => '', - 'Show past events' => '', - 'Status cannot be updated.' => '', - 'Status updated.' => '', - 'The event has already ended.' => '', - 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', - 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', - 'You cannot invite participants!' => '', - 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', - 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', - 'You have been registered for the event "{contentTitle}".' => '', - 'global' => '', - 'iCal' => '', - 'in seconds. 0 for no JWT token expiration.' => '', - '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', - '{displayName} invited you to the event "{contentTitle}".' => '', - '{name} Calendar' => '', + 'Add profile calendar' => 'Dodaj profilni kalendar', + 'Choose target calendar' => 'Odaberite ciljani kalendar', + 'Reminder settings' => 'Postavke podsetnika', + 'Add all Space members with status {status}' => '', + 'Add participants...' => '', + 'Added: {users}' => '', + 'Additional Information for participants' => '', + 'Adds a calendar for private or public events to your profile and main menu.' => 'Dodavaje kalendara za privatne ili javne događaje na vaš profil i glavni meni.', + 'Adds an event calendar to this space.' => 'Dodaje kalendar događaja u ovaj prostor.', + 'After (occurrences)' => 'Nakon (pojave)', + 'All Day' => 'Celi dan', + 'Allow option \'Decline\'' => '', + 'Allow option \'Undecided\'' => '', + 'Allows the user to create new calendar entries' => 'Korisniku omogućuje stvaranje novih unosa u kalendar', + 'Allows the user to edit/delete existing calendar entries' => 'Korisniku omogućuje uređivanje / brisanje postojećih unosa u kalendar', + 'Also include participant email addresses' => '', + 'Attending' => 'Prisustvuju', + 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', + 'Birthday' => 'Rođendan', + 'By upcoming events first' => '', + 'CalDAV' => '', + 'Calendar' => 'Kalendar', + 'Calendar event' => '', + 'Calendar event content ID' => '', + 'Calendar events' => '', + 'Cancel Event' => 'Otkaži događaj', + 'Cannot remove the participant!' => '', + 'Create entry' => 'Kreriaj unos', + 'Custom reminder' => 'Prilagođeni podsetnik', + 'Day' => 'Dan', + 'Days' => 'Dana', + 'Default reminder settings' => 'Podrazumevane postavke podsetnika', + 'Delete all events' => 'Izbriši sve događaje', + 'Deleted' => 'Obrisano', + 'Description' => 'Opis', + 'Display events within the next X days' => '', + 'Do you want to install this module on your profile?' => 'Želite li instalirati ovaj modul na svoj profil?', + 'Download ICS' => '', + 'Edit' => 'Uredi', + 'Edit Event' => '', + 'Edit all events' => 'Uredi sve događaje', + 'Edit this and following events' => 'Uredite ovaj i sledeće događaje', + 'Edit this event' => 'Uredite ovaj događaj', + 'Email' => 'Email', + 'Enable' => 'Omogući', + 'Enable Reminder' => '', + 'End' => 'Završi', + 'End Date' => 'Datum završetka', + 'End Time' => 'Vreme završetka', + 'End time must be after start time!' => 'Vreme završetka mora biti nakon vremena početka!', + 'Event' => 'Događaj', + 'Event Type' => 'Tip događaja', + 'Event Types' => 'Vrste događaja', + 'Event could not be deleted!' => '', + 'Event has been be deleted!' => '', + 'Event not found!' => 'Događaj nije pronađen!', + 'Export as {type}' => '', + 'Files' => 'Datoteke', + 'Filter' => 'Filter', + 'Filter by types' => '', + 'Friday' => 'Petak', + 'Here you can configure default settings for all calendar events.' => 'Ovde možete konfigurirati zadane postavke za sve kalendarske događaje.', + 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => 'Ovde možete konfigurirati globalne zadane podsetnike. Te se postavke mogu prebrisati na nivou prostora / profila.', + 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', + 'Hour' => 'Sat', + 'I\'m attending' => 'Ja prisustvujem', + 'ID' => 'ID', + 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', + 'In order to add events to your profile, you have to enable the calendar module first.' => 'Da biste dodali događaje u svoj profil, najprije morate omogućiti modul Kalendar.', + 'Include participant information in exports' => '', + 'Interested' => 'Zainteresiran', + 'Invalid date or time format!' => 'Nevažeći format datuma ili vremena!', + 'Invalid day of month given' => 'Dat je nevažeći dan u mesecu', + 'Invalid event type id selected.' => 'Odabran je ID vrste vrste događaja koji nije valjan.', + 'Invalid frequency given' => 'Navedena je neispravna učestalost', + 'Invalid interval given' => 'Naveden je nevažeći interval', + 'Invalid week day selection' => 'Nevažeći odabir dana u nedelji', + 'Invite' => 'Poziv', + 'Invited: {users}' => '', + 'JWT Key' => '', + 'JWT Token Expiration' => '', + 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', + 'List' => 'Lista', + 'Location' => 'Lokacija', + 'Manage entries' => 'Upravljaj unosima', + 'Maximum number of participants' => 'Maksimalan broj učesnika', + 'Minute' => '', + 'Mode' => '', + 'Monday' => 'Ponedjeljak', + 'Month' => 'Mesec', + 'Monthly on day {dayOfMonth}' => 'Mesečno na dan {dayOfMonth}', + 'Monthly on the {position} {dayOfWeek}' => 'Mesečno na {position} {dayOfWeek}', + 'Months' => 'Mjeseci', + 'Never' => 'Nikada', + 'Next' => 'Dalje', + 'No new participants were added.' => '', + 'No new participants were invited.' => '', + 'No reminder' => 'Nema podsetnika', + 'Notify participants about changes' => '', + 'On date' => 'Na datum', + 'Participant removed.' => '', + 'Participants' => 'Učesnici', + 'Participation Status' => '', + 'Please select new participants.' => '', + 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => '', + 'Profile Calendar' => 'Profil Kalendar', + 'Public' => 'Javno', + 'Recurring' => 'Ponavljajući', + 'Reopen Event' => 'Ponovo otvori događaj', + 'Repeat every' => 'Ponovite svaki', + 'Saturday' => 'Subota', + 'Select calendar...' => '', + 'Select space...' => '', + 'Set reminder' => 'Postavi podsetnik', + 'Show past events' => '', + 'Start Date' => 'Datum početka', + 'Start Time' => 'Vreme početka', + 'Status cannot be updated.' => '', + 'Status updated.' => '', + 'Sunday' => 'Nedjelja', + 'The event has already ended.' => '', + 'This event does not support recurrent events' => 'Ovaj događaj ne podržava ponavljajuće događaje', + 'Thursday' => 'Četvrtak', + 'Time Zone' => 'Vremenska zona', + 'Title' => 'Funkcija', + 'Today' => 'Danas', + 'Tuesday' => 'Utorak', + 'Upcoming {type}' => 'Predstojeći {type}', + 'Upcoming {type}: {title}' => 'Predstojeći {type}: {title}', + 'Use default reminder' => 'Upotrijebi podrazumevani podsetnik ', + 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', + 'User birthdays' => 'Rođendan korisnika', + 'Wednesday' => 'Sreda', + 'Week' => 'Sedemica', + 'Weeks' => 'Nedelja', + 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', + 'Year' => 'Godina', + 'Years' => 'Godine', + 'You cannot invite participants!' => '', + 'You don\'t have permission to delete this event!' => 'Nemate dozvolu da obrišete ovaj događaj!', + 'You have an {type} coming up' => 'Predstoji vam {type}', + 'You have an {type} coming up: {title}' => 'Predstoji vam {type}: {title}', + 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', + 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', + 'You have been registered for the event "{contentTitle}".' => '', + 'Your reminder settings for event: \'{title}\'' => 'Postavke podsetnika za događaj: \'{title}\'', + 'canceled' => 'otkazano', + 'disabled' => 'onemogućeno', + 'first' => 'prvi', + 'forth' => 'unaprijed', + 'global' => '', + 'iCal' => '', + 'in seconds. 0 for no JWT token expiration.' => '', + 'last' => 'poslednji', + 'on weekdays' => 'radnim danima', + 'second' => 'drugi', + 'third' => 'treći', + '{displayName} Birthday' => '{displayName} Rođendane', + '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} vas je upravo dodao na događaj "{contentTitle}" u prostoru {spaceName} koji počinje {time}.', + '{displayName} added you to the event "{contentTitle}".' => '{displayName} vas je upravo dodao na događaj "{contentTitle}".', + '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', + '{displayName} invited you to the event "{contentTitle}".' => '', + '{name} Calendar' => '', ]; diff --git a/messages/sv/base.php b/messages/sv/base.php index cd66894d..3aba0ec0 100644 --- a/messages/sv/base.php +++ b/messages/sv/base.php @@ -1,167 +1,166 @@ Add profile calendar' => 'Lägg till Profilkalender', - 'Choose target calendar' => 'Välj kalender', - 'Reminder settings' => 'Påminnelse inställning', - 'Add all Space members with status {status}' => 'Lägg till alla forum-medlemmar med status {status}', - 'Add participants...' => 'Lägg till deltagare...', - 'Added: {users}' => 'Lade till: {users}', - 'Additional Information for participants' => 'Ytterligare information för deltagare', - 'Adds a calendar for private or public events to your profile and main menu.' => 'Lägger till en kalender för privata eller publika aktiviteter till din profil och huvudmeny.', - 'Adds an event calendar to this space.' => 'Lägger till en kalender till detta forum', - 'After (occurrences)' => 'Efter', - 'All Day' => 'Hela dagen', - 'Allow option \'Decline\'' => 'Tillåt alternativet "Avvisa"', - 'Allow option \'Undecided\'' => 'Tillåt alternativet "Osäker"', - 'Allows the user to create new calendar entries' => 'Tillåter användaren att skapa nya kalenderinlägg', - 'Allows the user to edit/delete existing calendar entries' => 'Tillåter användaren att ändra/radera kalenderinlägg', - 'Attending' => 'Närvarar', - 'Before a target calendar can be selected, the module must be activated in at least one Space.' => 'Innan en målkalender kan väljas måste modulen aktiveras i minst ett forum.', - 'Birthday' => 'Födelsedag', - 'Calendar' => 'Kalender', - 'Cancel Event' => 'Ställ in aktivitet', - 'Cannot remove the participant!' => 'Det går inte att ta bort deltagaren!', - 'Create entry' => 'Skapa inlägg', - 'Custom reminder' => 'Anpassad påminnelse', - 'Day' => 'Dag', - 'Days' => 'Dagar', - 'Default reminder settings' => 'Standardinställningar för påminnelser', - 'Delete all events' => 'Ta bort alla händelser', - 'Deleted' => 'Raderat', - 'Description' => 'Beskrivning', - 'Do you want to install this module on your profile?' => 'Vill du installera denna modul i din profil', - 'Download ICS' => 'Ladda ner ICS', - 'Edit' => 'Ändra', - 'Edit Event' => 'Redigera händelse', - 'Edit all events' => 'Ändra alla händelser', - 'Edit this and following events' => 'Redigera det här och följande händelser', - 'Edit this event' => 'Redigera den här händelsen', - 'Email' => 'E-post', - 'Enable' => 'Aktivera', - 'Enable Reminder' => 'Aktivera påminnelse', - 'End' => 'Slut', - 'End Date' => 'Slutdatum', - 'End Time' => 'Sluttid', - 'End time must be after start time!' => 'Slut tid måste vara efter starttid', - 'Event' => 'Aktivitet', - 'Event Type' => 'Aktivitetstyp', - 'Event Types' => 'Aktivitetstyper', - 'Event could not be deleted!' => 'Eventet kunde inte raderas!', - 'Event has been be deleted!' => 'Eventet har tagits bort!', - 'Event not found!' => 'Hittar inte event', - 'Export as {type}' => 'Exportera som {type}', - 'Files' => 'Filer', - 'Filter by types' => 'Filtrera efter typ', - 'Friday' => 'Fredag', - 'Here you can configure default settings for all calendar events.' => 'Här kan du ställa in standardinställningar för alla kalenderhändelser.', - 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => 'Här kan du ställa in globala standardpåminnelser. Dessa kan åtsidosättas av inställningar på forum-/profilnivå', - 'Hour' => 'Timma', - 'I\'m attending' => 'Jag deltar', - 'ID' => 'ID', - 'In order to add events to your profile, you have to enable the calendar module first.' => 'För att kunna lägga till kalenderuppgifter måste du aktivera kalendern först.', - 'Interested' => 'Intresserad', - 'Invalid date or time format!' => 'Felaktigt format', - 'Invalid day of month given' => 'Ogiltig dag i månaden angiven', - 'Invalid event type id selected.' => 'Felaktigt aktivitets-id valt.', - 'Invalid frequency given' => 'Ogiltig frekvens angiven', - 'Invalid interval given' => 'Ogiltigt intervall angivet', - 'Invalid week day selection' => 'Ogiltigt val av veckodag', - 'Invite' => 'Bjud in', - 'Invited: {users}' => 'Inbjudna: {users}', - 'List' => 'Lista', - 'Location' => 'Plats', - 'Manage entries' => 'Hantera inlägg', - 'Maximum number of participants' => 'Max antal deltagare', - 'Minute' => 'Minut', - 'Mode' => 'Läge', - 'Monday' => 'Måndag', - 'Month' => 'Månad', - 'Monthly on day {dayOfMonth}' => 'Månadsvis på dagen {dayOfMonth}', - 'Monthly on the {position} {dayOfWeek}' => 'Månadsvis på den {position} {dayOfWeek}', - 'Months' => 'Månader', - 'Never' => 'Aldrig', - 'Next' => 'Nästa', - 'No new participants were added.' => 'Inga nya deltagare har lagts till.', - 'No new participants were invited.' => 'Inga nya deltagare bjöds in.', - 'No reminder' => 'Ingen påminnelse', - 'Notify participants about changes' => 'Meddela deltagare om ändringar', - 'On date' => 'På datum', - 'Participant removed.' => 'Deltagare borttagen.', - 'Participants' => 'Deltagare', - 'Participation Status' => 'Deltagarstatus', - 'Please select new participants.' => 'Välj nya deltagare.', - 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => 'Privata evenemang är endast synliga för dig och, om vänskapssystemet är aktiverat, för dina vänner.', - 'Profile Calendar' => 'Profilkalender', - 'Public' => 'Publik', - 'Recurring' => 'Återkommande', - 'Reopen Event' => 'Återöppna Aktivitet', - 'Repeat every' => 'Upprepa varje', - 'Saturday' => 'Lördag', - 'Set reminder' => 'Påminnelse', - 'Start Date' => 'Start datum', - 'Start Time' => 'Starttid', - 'Status cannot be updated.' => 'Status kan inte uppdateras.', - 'Status updated.' => 'Status uppdaterad.', - 'Sunday' => 'Söndag', - 'The event has already ended.' => 'Evenemanget har redan avslutats.', - 'This event does not support recurrent events' => 'Den här händelsen stödjer inte återkommande händelser', - 'Thursday' => 'Torsdag', - 'Time Zone' => 'Tidszon', - 'Title' => 'Rubrik', - 'Today' => 'I dag', - 'Tuesday' => 'Tisdag', - 'Upcoming {type}' => 'Kommande {type}', - 'Upcoming {type}: {title}' => 'Kommande {type}: {title}', - 'Use default reminder' => 'Använd standardpåminnelse', - 'User birthdays' => 'Användares födelsedagar', - 'Wednesday' => 'Onsdag', - 'Week' => 'Vecka', - 'Weeks' => 'Veckor', - 'Year' => 'År', - 'Years' => 'År', - 'You cannot invite participants!' => 'Du kan inte bjuda in deltagare!', - 'You don\'t have permission to delete this event!' => 'Du har inte tillåtelse att ta bort denna händelse!', - 'You have an {type} coming up' => 'Du har en/ett {type} händelse snart', - 'You have an {type} coming up: {title}' => 'Du har en/ett {type} händelse snart: {title}', - 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => 'Du har registrerats för evenemanget "{contentTitle}" i {spaceName}, med start kl. {time}', - 'You have been registered for the event "{contentTitle}", starting at {time}.' => 'Du har registrerats för evenemanget "{contentTitle}", som börjar kl. {time}.', - 'You have been registered for the event "{contentTitle}".' => 'Du har registrerats för evenemanget "{contentTitle}".', - 'Your reminder settings for event: \'{title}\'' => 'Din påminnelseinställning för händelse: \'{title}\'', - 'canceled' => 'Inställd', - 'disabled' => 'Inaktiverad', - 'first' => 'första', - 'forth' => 'fjärde', - 'global' => 'global', - 'last' => 'sista', - 'on weekdays' => 'på vardagar', - 'second' => 'andra', - 'third' => 'tredje', - '{displayName} Birthday' => '{displayName} Födelsedag', - '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} lade precis till dig till aktiviteten "{contentTitle}" i forumet {spaceName} startar {time}.', - '{displayName} added you to the event "{contentTitle}".' => '{displayName} lade just till dig till "{contentTitle}".', - '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} bjöd precis in dig till eventet "{contentTitle}" i forumet {spaceName} som börjar kl. {time}.', - '{displayName} invited you to the event "{contentTitle}".' => '{displayName} har precis bjudit in dig till eventet "{contentTitle}".', - 'Also include participant email addresses' => '', - 'By upcoming events first' => '', - 'CalDAV' => '', - 'Calendar event' => '', - 'Calendar event content ID' => '', - 'Calendar events' => '', - 'Display events within the next X days' => '', - 'Filter' => '', - 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', - 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', - 'Include participant information in exports' => '', - 'JWT Key' => '', - 'JWT Token Expiration' => '', - 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', - 'Select calendar...' => '', - 'Select space...' => '', - 'Show past events' => '', - 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', - 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', - 'iCal' => '', - 'in seconds. 0 for no JWT token expiration.' => '', - '{name} Calendar' => '', + 'Add profile calendar' => 'Lägg till Profilkalender', + 'Choose target calendar' => 'Välj kalender', + 'Reminder settings' => 'Påminnelse inställning', + 'Add all Space members with status {status}' => 'Lägg till alla forum-medlemmar med status {status}', + 'Add participants...' => 'Lägg till deltagare...', + 'Added: {users}' => 'Lade till: {users}', + 'Additional Information for participants' => 'Ytterligare information för deltagare', + 'Adds a calendar for private or public events to your profile and main menu.' => 'Lägger till en kalender för privata eller publika aktiviteter till din profil och huvudmeny.', + 'Adds an event calendar to this space.' => 'Lägger till en kalender till detta forum', + 'After (occurrences)' => 'Efter', + 'All Day' => 'Hela dagen', + 'Allow option \'Decline\'' => 'Tillåt alternativet "Avvisa"', + 'Allow option \'Undecided\'' => 'Tillåt alternativet "Osäker"', + 'Allows the user to create new calendar entries' => 'Tillåter användaren att skapa nya kalenderinlägg', + 'Allows the user to edit/delete existing calendar entries' => 'Tillåter användaren att ändra/radera kalenderinlägg', + 'Also include participant email addresses' => '', + 'Attending' => 'Närvarar', + 'Before a target calendar can be selected, the module must be activated in at least one Space.' => 'Innan en målkalender kan väljas måste modulen aktiveras i minst ett forum.', + 'Birthday' => 'Födelsedag', + 'By upcoming events first' => '', + 'CalDAV' => '', + 'Calendar' => 'Kalender', + 'Calendar event' => '', + 'Calendar event content ID' => '', + 'Calendar events' => '', + 'Cancel Event' => 'Ställ in aktivitet', + 'Cannot remove the participant!' => 'Det går inte att ta bort deltagaren!', + 'Create entry' => 'Skapa inlägg', + 'Custom reminder' => 'Anpassad påminnelse', + 'Day' => 'Dag', + 'Days' => 'Dagar', + 'Default reminder settings' => 'Standardinställningar för påminnelser', + 'Delete all events' => 'Ta bort alla händelser', + 'Deleted' => 'Raderat', + 'Description' => 'Beskrivning', + 'Display events within the next X days' => '', + 'Do you want to install this module on your profile?' => 'Vill du installera denna modul i din profil', + 'Download ICS' => 'Ladda ner ICS', + 'Edit' => 'Ändra', + 'Edit Event' => 'Redigera händelse', + 'Edit all events' => 'Ändra alla händelser', + 'Edit this and following events' => 'Redigera det här och följande händelser', + 'Edit this event' => 'Redigera den här händelsen', + 'Email' => 'E-post', + 'Enable' => 'Aktivera', + 'Enable Reminder' => 'Aktivera påminnelse', + 'End' => 'Slut', + 'End Date' => 'Slutdatum', + 'End Time' => 'Sluttid', + 'End time must be after start time!' => 'Slut tid måste vara efter starttid', + 'Event' => 'Aktivitet', + 'Event Type' => 'Aktivitetstyp', + 'Event Types' => 'Aktivitetstyper', + 'Event could not be deleted!' => 'Eventet kunde inte raderas!', + 'Event has been be deleted!' => 'Eventet har tagits bort!', + 'Event not found!' => 'Hittar inte event', + 'Export as {type}' => 'Exportera som {type}', + 'Files' => 'Filer', + 'Filter' => 'Filtrera', + 'Filter by types' => 'Filtrera efter typ', + 'Friday' => 'Fredag', + 'Here you can configure default settings for all calendar events.' => 'Här kan du ställa in standardinställningar för alla kalenderhändelser.', + 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => 'Här kan du ställa in globala standardpåminnelser. Dessa kan åtsidosättas av inställningar på forum-/profilnivå', + 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', + 'Hour' => 'Timma', + 'I\'m attending' => 'Jag deltar', + 'ID' => 'ID', + 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', + 'In order to add events to your profile, you have to enable the calendar module first.' => 'För att kunna lägga till kalenderuppgifter måste du aktivera kalendern först.', + 'Include participant information in exports' => '', + 'Interested' => 'Intresserad', + 'Invalid date or time format!' => 'Felaktigt format', + 'Invalid day of month given' => 'Ogiltig dag i månaden angiven', + 'Invalid event type id selected.' => 'Felaktigt aktivitets-id valt.', + 'Invalid frequency given' => 'Ogiltig frekvens angiven', + 'Invalid interval given' => 'Ogiltigt intervall angivet', + 'Invalid week day selection' => 'Ogiltigt val av veckodag', + 'Invite' => 'Bjud in', + 'Invited: {users}' => 'Inbjudna: {users}', + 'JWT Key' => '', + 'JWT Token Expiration' => '', + 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', + 'List' => 'Lista', + 'Location' => 'Plats', + 'Manage entries' => 'Hantera inlägg', + 'Maximum number of participants' => 'Max antal deltagare', + 'Minute' => 'Minut', + 'Mode' => 'Läge', + 'Monday' => 'Måndag', + 'Month' => 'Månad', + 'Monthly on day {dayOfMonth}' => 'Månadsvis på dagen {dayOfMonth}', + 'Monthly on the {position} {dayOfWeek}' => 'Månadsvis på den {position} {dayOfWeek}', + 'Months' => 'Månader', + 'Never' => 'Aldrig', + 'Next' => 'Nästa', + 'No new participants were added.' => 'Inga nya deltagare har lagts till.', + 'No new participants were invited.' => 'Inga nya deltagare bjöds in.', + 'No reminder' => 'Ingen påminnelse', + 'Notify participants about changes' => 'Meddela deltagare om ändringar', + 'On date' => 'På datum', + 'Participant removed.' => 'Deltagare borttagen.', + 'Participants' => 'Deltagare', + 'Participation Status' => 'Deltagarstatus', + 'Please select new participants.' => 'Välj nya deltagare.', + 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => 'Privata evenemang är endast synliga för dig och, om vänskapssystemet är aktiverat, för dina vänner.', + 'Profile Calendar' => 'Profilkalender', + 'Public' => 'Publik', + 'Recurring' => 'Återkommande', + 'Reopen Event' => 'Återöppna Aktivitet', + 'Repeat every' => 'Upprepa varje', + 'Saturday' => 'Lördag', + 'Select calendar...' => '', + 'Select space...' => '', + 'Set reminder' => 'Påminnelse', + 'Show past events' => '', + 'Start Date' => 'Start datum', + 'Start Time' => 'Starttid', + 'Status cannot be updated.' => 'Status kan inte uppdateras.', + 'Status updated.' => 'Status uppdaterad.', + 'Sunday' => 'Söndag', + 'The event has already ended.' => 'Evenemanget har redan avslutats.', + 'This event does not support recurrent events' => 'Den här händelsen stödjer inte återkommande händelser', + 'Thursday' => 'Torsdag', + 'Time Zone' => 'Tidszon', + 'Title' => 'Rubrik', + 'Today' => 'I dag', + 'Tuesday' => 'Tisdag', + 'Upcoming {type}' => 'Kommande {type}', + 'Upcoming {type}: {title}' => 'Kommande {type}: {title}', + 'Use default reminder' => 'Använd standardpåminnelse', + 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', + 'User birthdays' => 'Användares födelsedagar', + 'Wednesday' => 'Onsdag', + 'Week' => 'Vecka', + 'Weeks' => 'Veckor', + 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', + 'Year' => 'År', + 'Years' => 'År', + 'You cannot invite participants!' => 'Du kan inte bjuda in deltagare!', + 'You don\'t have permission to delete this event!' => 'Du har inte tillåtelse att ta bort denna händelse!', + 'You have an {type} coming up' => 'Du har en/ett {type} händelse snart', + 'You have an {type} coming up: {title}' => 'Du har en/ett {type} händelse snart: {title}', + 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => 'Du har registrerats för evenemanget "{contentTitle}" i {spaceName}, med start kl. {time}', + 'You have been registered for the event "{contentTitle}", starting at {time}.' => 'Du har registrerats för evenemanget "{contentTitle}", som börjar kl. {time}.', + 'You have been registered for the event "{contentTitle}".' => 'Du har registrerats för evenemanget "{contentTitle}".', + 'Your reminder settings for event: \'{title}\'' => 'Din påminnelseinställning för händelse: \'{title}\'', + 'canceled' => 'Inställd', + 'disabled' => 'Inaktiverad', + 'first' => 'första', + 'forth' => 'fjärde', + 'global' => 'global', + 'iCal' => '', + 'in seconds. 0 for no JWT token expiration.' => '', + 'last' => 'sista', + 'on weekdays' => 'på vardagar', + 'second' => 'andra', + 'third' => 'tredje', + '{displayName} Birthday' => '{displayName} Födelsedag', + '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} lade precis till dig till aktiviteten "{contentTitle}" i forumet {spaceName} startar {time}.', + '{displayName} added you to the event "{contentTitle}".' => '{displayName} lade just till dig till "{contentTitle}".', + '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} bjöd precis in dig till eventet "{contentTitle}" i forumet {spaceName} som börjar kl. {time}.', + '{displayName} invited you to the event "{contentTitle}".' => '{displayName} har precis bjudit in dig till eventet "{contentTitle}".', + '{name} Calendar' => '', ]; diff --git a/messages/th/base.php b/messages/th/base.php index 4fdf4cdc..a179cb0a 100644 --- a/messages/th/base.php +++ b/messages/th/base.php @@ -1,167 +1,166 @@ Add profile calendar' => 'เพิ่ม ปฏิทินโปรไฟล์', - 'Choose target calendar' => 'เลือก ปฏิทินเป้าหมาย', - 'Reminder settings' => 'การแจ้งเตือน การตั้งค่า', - 'Adds a calendar for private or public events to your profile and main menu.' => 'เพิ่มปฏิทินสำหรับกิจกรรมส่วนตัวหรือสาธารณะในโปรไฟล์และเมนูหลักของคุณ', - 'Adds an event calendar to this space.' => 'เพิ่มปฏิทินกิจกรรมในพื้นที่นี้', - 'After (occurrences)' => 'หลัง (ครั้ง)', - 'All Day' => 'ทั้งวัน', - 'Allows the user to create new calendar entries' => 'อนุญาตให้ผู้ใช้สร้างรายการปฏิทินใหม่', - 'Allows the user to edit/delete existing calendar entries' => 'อนุญาตให้ผู้ใช้แก้ไข/ลบรายการปฏิทินที่มีอยู่', - 'Attending' => 'เข้าร่วม', - 'Birthday' => 'วันเกิด', - 'Calendar' => 'ปฏิทิน', - 'Cancel Event' => 'ยกเลิกกิจกรรม', - 'Create entry' => 'สร้างรายการ', - 'Custom reminder' => 'การแจ้งเตือนที่กำหนดเองกำหนดเอง', - 'Day' => 'วัน', - 'Days' => 'วัน', - 'Default reminder settings' => 'การตั้งค่าการเตือนเริ่มต้น', - 'Delete all events' => 'ลบกิจกรรมทั้งหมด', - 'Deleted' => 'ถูกลบ', - 'Description' => 'คำอธิบาย', - 'Do you want to install this module on your profile?' => 'คุณต้องการติดตั้งโมดูลนี้ในโปรไฟล์ของคุณหรือไม่?', - 'Edit' => 'แก้ไข', - 'Edit all events' => 'แก้ไขกิจกรรมทั้งหมด', - 'Edit this and following events' => 'แก้ไขเหตุการณ์นี้และติดตาม', - 'Edit this event' => 'แก้ไขกิจกรรมนี้', - 'Email' => 'อีเมล', - 'Enable' => 'เปิดใช้งาน', - 'End' => 'จบ', - 'End Date' => 'วันที่สิ้นสุด', - 'End Time' => 'เวลาสิ้นสุด', - 'End time must be after start time!' => 'เวลาสิ้นสุดต้องอยู่หลังเวลาเริ่มต้น!', - 'Event' => 'เหตุการณ์', - 'Event Type' => 'ประเภทงาน', - 'Event Types' => 'ประเภทงาน', - 'Event not found!' => 'ไม่พบกิจกรรม!', - 'Files' => 'ไฟล์', - 'Friday' => 'วันศุกร์', - 'Here you can configure default settings for all calendar events.' => 'คุณสามารถกำหนดการตั้งค่าเริ่มต้นสำหรับกิจกรรมในปฏิทินทั้งหมดได้ที่นี่', - 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => 'คุณสามารถกำหนดค่าตัวเตือนเริ่มต้นส่วนกลางได้ที่นี่ การตั้งค่าเหล่านี้สามารถเขียนทับได้ในระดับพื้นที่/โปรไฟล์', - 'Hour' => 'ชั่วโมง', - 'I\'m attending' => 'ฉันกำลังเข้าร่วม', - 'ID' => 'ไอดี', - 'In order to add events to your profile, you have to enable the calendar module first.' => 'ในการเพิ่มกิจกรรมในโปรไฟล์ของคุณ คุณต้องเปิดใช้งานโมดูลปฏิทินก่อน', - 'Interested' => 'สนใจ', - 'Invalid date or time format!' => 'รูปแบบวันที่หรือเวลาไม่ถูกต้อง!', - 'Invalid day of month given' => 'วันที่ระบุเดือนไม่ถูกต้อง', - 'Invalid event type id selected.' => 'เลือกรหัสประเภทเหตุการณ์ไม่ถูกต้อง', - 'Invalid frequency given' => 'ระบุความถี่ไม่ถูกต้อง', - 'Invalid interval given' => 'ช่วงเวลาที่ระบุไม่ถูกต้อง', - 'Invalid week day selection' => 'การเลือกวันในสัปดาห์ไม่ถูกต้อง', - 'Invite' => 'เชิญ', - 'JWT Key' => 'JWT คีย์', - 'JWT Token Expiration' => 'JWT Token หมดอายุ', - 'List' => 'รายการ', - 'Location' => 'ที่ตั้ง', - 'Manage entries' => 'จัดการรายการ', - 'Maximum number of participants' => 'จำนวนผู้เข้าร่วมสูงสุด', - 'Monday' => 'วันจันทร์', - 'Month' => 'เดือน', - 'Monthly on day {dayOfMonth}' => 'รายเดือนในวันที่ {dayOfMonth}', - 'Monthly on the {position} {dayOfWeek}' => 'รายเดือนใน {position} {dayOfWeek}', - 'Months' => 'เดือน', - 'Never' => 'ไม่เคย', - 'Next' => 'ถัดไป', - 'No reminder' => 'ไม่มีการเตือน', - 'On date' => 'ในวันที่', - 'Participants' => 'ผู้เข้าร่วม', - 'Profile Calendar' => 'ปฏิทินโปรไฟล์', - 'Public' => 'สาธารณะ', - 'Recurring' => 'เกิดซ้ำ', - 'Reopen Event' => 'เปิดกิจกรรมอีกครั้ง Re', - 'Repeat every' => 'ทำซ้ำทุก ๆ', - 'Saturday' => 'วันเสาร์', - 'Set reminder' => 'ตั้งการเตือนความจำ', - 'Start Date' => 'วันที่เริ่มต้น', - 'Start Time' => 'เวลาเริ่มต้น', - 'Sunday' => 'วันอาทิตย์', - 'This event does not support recurrent events' => 'สัปดาห์', - 'Thursday' => 'วันพฤหัสบดี', - 'Time Zone' => 'เขตเวลา', - 'Title' => 'หัวข้อ', - 'Today' => 'วันนี้', - 'Tuesday' => 'วันอังคาร', - 'Upcoming {type}' => 'กำลังจะมาถึง {type}', - 'Upcoming {type}: {title}' => 'กำลังจะมีขึ้น {type}: {title}', - 'Use default reminder' => 'ใช้ตัวเตือนเริ่มต้น', - 'User birthdays' => 'วันเกิดผู้ใช้', - 'Wednesday' => 'วันพุธ', - 'Week' => 'สัปดาห์', - 'Weeks' => 'สัปดาห์', - 'Year' => 'ปี', - 'Years' => 'ปี', - 'You don\'t have permission to delete this event!' => 'คุณไม่ได้รับอนุญาตให้ลบกิจกรรมนี้!', - 'You have an {type} coming up' => 'คุณมี {type} ขึ้นมา', - 'You have an {type} coming up: {title}' => 'คุณมี {type} ขึ้นมา: {title}', - 'Your reminder settings for event: \'{title}\'' => 'การตั้งค่าการแจ้งเตือนสำหรับกิจกรรม: \'{title}\'', - 'canceled' => 'ยกเลิก', - 'disabled' => 'พิการ', - 'first' => 'ก่อน', - 'forth' => 'มา', - 'last' => 'ล่าสุด', - 'on weekdays' => 'ในวันธรรมดา', - 'second' => 'ที่สอง', - 'third' => 'ที่สาม', - '{displayName} Birthday' => '{displayName} วันเกิด', - '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} เพิ่งเพิ่มคุณในกิจกรรม "{contentTitle}" ในช่องว่าง {spaceName} เริ่มเมื่อ {time}', - '{displayName} added you to the event "{contentTitle}".' => '{displayName} เพิ่งเพิ่มคุณในกิจกรรม "{contentTitle}"', - 'Add all Space members with status {status}' => '', - 'Add participants...' => '', - 'Added: {users}' => '', - 'Additional Information for participants' => '', - 'Allow option \'Decline\'' => '', - 'Allow option \'Undecided\'' => '', - 'Also include participant email addresses' => '', - 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', - 'By upcoming events first' => '', - 'CalDAV' => '', - 'Calendar event' => '', - 'Calendar event content ID' => '', - 'Calendar events' => '', - 'Cannot remove the participant!' => '', - 'Display events within the next X days' => '', - 'Download ICS' => '', - 'Edit Event' => '', - 'Enable Reminder' => '', - 'Event could not be deleted!' => '', - 'Event has been be deleted!' => '', - 'Export as {type}' => '', - 'Filter' => '', - 'Filter by types' => '', - 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', - 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', - 'Include participant information in exports' => '', - 'Invited: {users}' => '', - 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', - 'Minute' => '', - 'Mode' => '', - 'No new participants were added.' => '', - 'No new participants were invited.' => '', - 'Notify participants about changes' => '', - 'Participant removed.' => '', - 'Participation Status' => '', - 'Please select new participants.' => '', - 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => '', - 'Select calendar...' => '', - 'Select space...' => '', - 'Show past events' => '', - 'Status cannot be updated.' => '', - 'Status updated.' => '', - 'The event has already ended.' => '', - 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', - 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', - 'You cannot invite participants!' => '', - 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', - 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', - 'You have been registered for the event "{contentTitle}".' => '', - 'global' => '', - 'iCal' => '', - 'in seconds. 0 for no JWT token expiration.' => '', - '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', - '{displayName} invited you to the event "{contentTitle}".' => '', - '{name} Calendar' => '', + 'Add profile calendar' => 'เพิ่ม ปฏิทินโปรไฟล์', + 'Choose target calendar' => 'เลือก ปฏิทินเป้าหมาย', + 'Reminder settings' => 'การแจ้งเตือน การตั้งค่า', + 'Add all Space members with status {status}' => '', + 'Add participants...' => '', + 'Added: {users}' => '', + 'Additional Information for participants' => '', + 'Adds a calendar for private or public events to your profile and main menu.' => 'เพิ่มปฏิทินสำหรับกิจกรรมส่วนตัวหรือสาธารณะในโปรไฟล์และเมนูหลักของคุณ', + 'Adds an event calendar to this space.' => 'เพิ่มปฏิทินกิจกรรมในพื้นที่นี้', + 'After (occurrences)' => 'หลัง (ครั้ง)', + 'All Day' => 'ทั้งวัน', + 'Allow option \'Decline\'' => '', + 'Allow option \'Undecided\'' => '', + 'Allows the user to create new calendar entries' => 'อนุญาตให้ผู้ใช้สร้างรายการปฏิทินใหม่', + 'Allows the user to edit/delete existing calendar entries' => 'อนุญาตให้ผู้ใช้แก้ไข/ลบรายการปฏิทินที่มีอยู่', + 'Also include participant email addresses' => '', + 'Attending' => 'เข้าร่วม', + 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', + 'Birthday' => 'วันเกิด', + 'By upcoming events first' => '', + 'CalDAV' => '', + 'Calendar' => 'ปฏิทิน', + 'Calendar event' => '', + 'Calendar event content ID' => '', + 'Calendar events' => '', + 'Cancel Event' => 'ยกเลิกกิจกรรม', + 'Cannot remove the participant!' => '', + 'Create entry' => 'สร้างรายการ', + 'Custom reminder' => 'การแจ้งเตือนที่กำหนดเองกำหนดเอง', + 'Day' => 'วัน', + 'Days' => 'วัน', + 'Default reminder settings' => 'การตั้งค่าการเตือนเริ่มต้น', + 'Delete all events' => 'ลบกิจกรรมทั้งหมด', + 'Deleted' => 'ถูกลบ', + 'Description' => 'คำอธิบาย', + 'Display events within the next X days' => '', + 'Do you want to install this module on your profile?' => 'คุณต้องการติดตั้งโมดูลนี้ในโปรไฟล์ของคุณหรือไม่?', + 'Download ICS' => '', + 'Edit' => 'แก้ไข', + 'Edit Event' => '', + 'Edit all events' => 'แก้ไขกิจกรรมทั้งหมด', + 'Edit this and following events' => 'แก้ไขเหตุการณ์นี้และติดตาม', + 'Edit this event' => 'แก้ไขกิจกรรมนี้', + 'Email' => 'อีเมล', + 'Enable' => 'เปิดใช้งาน', + 'Enable Reminder' => '', + 'End' => 'จบ', + 'End Date' => 'วันที่สิ้นสุด', + 'End Time' => 'เวลาสิ้นสุด', + 'End time must be after start time!' => 'เวลาสิ้นสุดต้องอยู่หลังเวลาเริ่มต้น!', + 'Event' => 'เหตุการณ์', + 'Event Type' => 'ประเภทงาน', + 'Event Types' => 'ประเภทงาน', + 'Event could not be deleted!' => '', + 'Event has been be deleted!' => '', + 'Event not found!' => 'ไม่พบกิจกรรม!', + 'Export as {type}' => '', + 'Files' => 'ไฟล์', + 'Filter' => 'กรอง', + 'Filter by types' => '', + 'Friday' => 'วันศุกร์', + 'Here you can configure default settings for all calendar events.' => 'คุณสามารถกำหนดการตั้งค่าเริ่มต้นสำหรับกิจกรรมในปฏิทินทั้งหมดได้ที่นี่', + 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => 'คุณสามารถกำหนดค่าตัวเตือนเริ่มต้นส่วนกลางได้ที่นี่ การตั้งค่าเหล่านี้สามารถเขียนทับได้ในระดับพื้นที่/โปรไฟล์', + 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', + 'Hour' => 'ชั่วโมง', + 'I\'m attending' => 'ฉันกำลังเข้าร่วม', + 'ID' => 'ไอดี', + 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', + 'In order to add events to your profile, you have to enable the calendar module first.' => 'ในการเพิ่มกิจกรรมในโปรไฟล์ของคุณ คุณต้องเปิดใช้งานโมดูลปฏิทินก่อน', + 'Include participant information in exports' => '', + 'Interested' => 'สนใจ', + 'Invalid date or time format!' => 'รูปแบบวันที่หรือเวลาไม่ถูกต้อง!', + 'Invalid day of month given' => 'วันที่ระบุเดือนไม่ถูกต้อง', + 'Invalid event type id selected.' => 'เลือกรหัสประเภทเหตุการณ์ไม่ถูกต้อง', + 'Invalid frequency given' => 'ระบุความถี่ไม่ถูกต้อง', + 'Invalid interval given' => 'ช่วงเวลาที่ระบุไม่ถูกต้อง', + 'Invalid week day selection' => 'การเลือกวันในสัปดาห์ไม่ถูกต้อง', + 'Invite' => 'เชิญ', + 'Invited: {users}' => '', + 'JWT Key' => 'JWT คีย์', + 'JWT Token Expiration' => 'JWT Token หมดอายุ', + 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', + 'List' => 'รายการ', + 'Location' => 'ที่ตั้ง', + 'Manage entries' => 'จัดการรายการ', + 'Maximum number of participants' => 'จำนวนผู้เข้าร่วมสูงสุด', + 'Minute' => '', + 'Mode' => '', + 'Monday' => 'วันจันทร์', + 'Month' => 'เดือน', + 'Monthly on day {dayOfMonth}' => 'รายเดือนในวันที่ {dayOfMonth}', + 'Monthly on the {position} {dayOfWeek}' => 'รายเดือนใน {position} {dayOfWeek}', + 'Months' => 'เดือน', + 'Never' => 'ไม่เคย', + 'Next' => 'ถัดไป', + 'No new participants were added.' => '', + 'No new participants were invited.' => '', + 'No reminder' => 'ไม่มีการเตือน', + 'Notify participants about changes' => '', + 'On date' => 'ในวันที่', + 'Participant removed.' => '', + 'Participants' => 'ผู้เข้าร่วม', + 'Participation Status' => '', + 'Please select new participants.' => '', + 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => '', + 'Profile Calendar' => 'ปฏิทินโปรไฟล์', + 'Public' => 'สาธารณะ', + 'Recurring' => 'เกิดซ้ำ', + 'Reopen Event' => 'เปิดกิจกรรมอีกครั้ง Re', + 'Repeat every' => 'ทำซ้ำทุก ๆ', + 'Saturday' => 'วันเสาร์', + 'Select calendar...' => '', + 'Select space...' => '', + 'Set reminder' => 'ตั้งการเตือนความจำ', + 'Show past events' => '', + 'Start Date' => 'วันที่เริ่มต้น', + 'Start Time' => 'เวลาเริ่มต้น', + 'Status cannot be updated.' => '', + 'Status updated.' => '', + 'Sunday' => 'วันอาทิตย์', + 'The event has already ended.' => '', + 'This event does not support recurrent events' => 'สัปดาห์', + 'Thursday' => 'วันพฤหัสบดี', + 'Time Zone' => 'เขตเวลา', + 'Title' => 'หัวข้อ', + 'Today' => 'วันนี้', + 'Tuesday' => 'วันอังคาร', + 'Upcoming {type}' => 'กำลังจะมาถึง {type}', + 'Upcoming {type}: {title}' => 'กำลังจะมีขึ้น {type}: {title}', + 'Use default reminder' => 'ใช้ตัวเตือนเริ่มต้น', + 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', + 'User birthdays' => 'วันเกิดผู้ใช้', + 'Wednesday' => 'วันพุธ', + 'Week' => 'สัปดาห์', + 'Weeks' => 'สัปดาห์', + 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', + 'Year' => 'ปี', + 'Years' => 'ปี', + 'You cannot invite participants!' => '', + 'You don\'t have permission to delete this event!' => 'คุณไม่ได้รับอนุญาตให้ลบกิจกรรมนี้!', + 'You have an {type} coming up' => 'คุณมี {type} ขึ้นมา', + 'You have an {type} coming up: {title}' => 'คุณมี {type} ขึ้นมา: {title}', + 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', + 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', + 'You have been registered for the event "{contentTitle}".' => '', + 'Your reminder settings for event: \'{title}\'' => 'การตั้งค่าการแจ้งเตือนสำหรับกิจกรรม: \'{title}\'', + 'canceled' => 'ยกเลิก', + 'disabled' => 'พิการ', + 'first' => 'ก่อน', + 'forth' => 'มา', + 'global' => '', + 'iCal' => '', + 'in seconds. 0 for no JWT token expiration.' => '', + 'last' => 'ล่าสุด', + 'on weekdays' => 'ในวันธรรมดา', + 'second' => 'ที่สอง', + 'third' => 'ที่สาม', + '{displayName} Birthday' => '{displayName} วันเกิด', + '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} เพิ่งเพิ่มคุณในกิจกรรม "{contentTitle}" ในช่องว่าง {spaceName} เริ่มเมื่อ {time}', + '{displayName} added you to the event "{contentTitle}".' => '{displayName} เพิ่งเพิ่มคุณในกิจกรรม "{contentTitle}"', + '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', + '{displayName} invited you to the event "{contentTitle}".' => '', + '{name} Calendar' => '', ]; diff --git a/messages/tr/base.php b/messages/tr/base.php index 44e06ed8..2bd9161b 100644 --- a/messages/tr/base.php +++ b/messages/tr/base.php @@ -1,167 +1,166 @@ Add profile calendar' => 'Profil takvimi ekle', - 'Adds a calendar for private or public events to your profile and main menu.' => 'Profilinize ve ana menünüze etkinlikler için bir takvim ekler.', - 'Adds an event calendar to this space.' => 'Bu mekana bir etkinlik takvimi ekler.', - 'All Day' => 'Tüm gün', - 'Attending' => 'Katılan', - 'Birthday' => 'Doğum günü', - 'Calendar' => 'Takvim', - 'Cancel Event' => 'Etkinliği İptal Et', - 'Custom reminder' => 'Özel hatırlatıcı', - 'Day' => 'Gün', - 'Days' => 'Günler', - 'Default reminder settings' => 'Varsayılan hatırlatıcı ayarları', - 'Delete all events' => 'Tüm etkinlikleri sil', - 'Description' => 'Açıklama', - 'Edit' => 'Düzenle', - 'Edit all events' => 'Tüm etkinlikleri düzenle', - 'Edit this event' => 'Etkinliği düzenle', - 'Email' => 'E-posta', - 'Enable' => 'Etkinleştirme', - 'End' => 'Son', - 'End Date' => 'Bitiş tarihi', - 'End Time' => 'Bitiş Zamanı', - 'End time must be after start time!' => 'Bitiş saati başlangıç ​​zamanından sonra olmalıdır!', - 'Event' => 'Etkinlik', - 'Event Type' => 'Etkinlik Türü', - 'Event Types' => 'Etkinlik Türleri', - 'Event not found!' => 'Etkinlik bulunamadı!', - 'Files' => 'Dosyalar', - 'Hour' => 'Saat', - 'I\'m attending' => 'Katılıyorum', - 'ID' => 'Kimlik', - 'In order to add events to your profile, you have to enable the calendar module first.' => 'Profilinize etkinlik eklemek için önce takvim modülünü etkinleştirmeniz gerekir.', - 'Interested' => 'İlgilenen', - 'Invalid event type id selected.' => 'Geçersiz etkinlik türü kimliği seçildi.', - 'Invite' => 'Davet', - 'List' => 'Liste', - 'Location' => 'Konum', - 'Maximum number of participants' => 'Maksimum katılımcı sayısı', - 'Month' => 'Ay', - 'Months' => 'Aylar', - 'Never' => 'Asla', - 'Next' => 'İleri', - 'Participants' => 'Katılımcılar', - 'Profile Calendar' => 'Profil Takvimi', - 'Public' => 'Herkese açık', - 'Reopen Event' => 'Etkinliği Yeniden Aç', - 'Start Date' => 'Başlangıç tarihi', - 'Start Time' => 'Başlangıç Zamanı', - 'Time Zone' => 'Saat Dilimi', - 'Title' => 'Başlık', - 'Use default reminder' => 'Varsayılan hatıralatcıyı kullan', - 'Week' => 'Hafta', - 'Weeks' => 'Haftalar', - 'Year' => 'Yıl', - 'Years' => 'Yıllar', - 'You don\'t have permission to delete this event!' => 'Bu etkinliği silmek için izniniz yok!', - 'canceled' => 'iptal edildi', - 'disabled' => 'engelli', - 'first' => 'İlk', - 'Choose target calendar' => '', - 'Reminder settings' => '', - 'Add all Space members with status {status}' => '', - 'Add participants...' => '', - 'Added: {users}' => '', - 'Additional Information for participants' => '', - 'After (occurrences)' => '', - 'Allow option \'Decline\'' => '', - 'Allow option \'Undecided\'' => '', - 'Allows the user to create new calendar entries' => '', - 'Allows the user to edit/delete existing calendar entries' => '', - 'Also include participant email addresses' => '', - 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', - 'By upcoming events first' => '', - 'CalDAV' => '', - 'Calendar event' => '', - 'Calendar event content ID' => '', - 'Calendar events' => '', - 'Cannot remove the participant!' => '', - 'Create entry' => '', - 'Deleted' => '', - 'Display events within the next X days' => '', - 'Do you want to install this module on your profile?' => '', - 'Download ICS' => '', - 'Edit Event' => '', - 'Edit this and following events' => '', - 'Enable Reminder' => '', - 'Event could not be deleted!' => '', - 'Event has been be deleted!' => '', - 'Export as {type}' => '', - 'Filter' => '', - 'Filter by types' => '', - 'Friday' => '', - 'Here you can configure default settings for all calendar events.' => '', - 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => '', - 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', - 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', - 'Include participant information in exports' => '', - 'Invalid date or time format!' => '', - 'Invalid day of month given' => '', - 'Invalid frequency given' => '', - 'Invalid interval given' => '', - 'Invalid week day selection' => '', - 'Invited: {users}' => '', - 'JWT Key' => '', - 'JWT Token Expiration' => '', - 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', - 'Manage entries' => '', - 'Minute' => '', - 'Mode' => '', - 'Monday' => '', - 'Monthly on day {dayOfMonth}' => '', - 'Monthly on the {position} {dayOfWeek}' => '', - 'No new participants were added.' => '', - 'No new participants were invited.' => '', - 'No reminder' => '', - 'Notify participants about changes' => '', - 'On date' => '', - 'Participant removed.' => '', - 'Participation Status' => '', - 'Please select new participants.' => '', - 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => '', - 'Recurring' => '', - 'Repeat every' => '', - 'Saturday' => '', - 'Select calendar...' => '', - 'Select space...' => '', - 'Set reminder' => '', - 'Show past events' => '', - 'Status cannot be updated.' => '', - 'Status updated.' => '', - 'Sunday' => '', - 'The event has already ended.' => '', - 'This event does not support recurrent events' => '', - 'Thursday' => '', - 'Today' => '', - 'Tuesday' => '', - 'Upcoming {type}' => '', - 'Upcoming {type}: {title}' => '', - 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', - 'User birthdays' => '', - 'Wednesday' => '', - 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', - 'You cannot invite participants!' => '', - 'You have an {type} coming up' => '', - 'You have an {type} coming up: {title}' => '', - 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', - 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', - 'You have been registered for the event "{contentTitle}".' => '', - 'Your reminder settings for event: \'{title}\'' => '', - 'forth' => '', - 'global' => '', - 'iCal' => '', - 'in seconds. 0 for no JWT token expiration.' => '', - 'last' => '', - 'on weekdays' => '', - 'second' => '', - 'third' => '', - '{displayName} Birthday' => '', - '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', - '{displayName} added you to the event "{contentTitle}".' => '', - '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', - '{displayName} invited you to the event "{contentTitle}".' => '', - '{name} Calendar' => '', + 'Add profile calendar' => 'Profil takvimi ekle', + 'Choose target calendar' => '', + 'Reminder settings' => '', + 'Add all Space members with status {status}' => '', + 'Add participants...' => '', + 'Added: {users}' => '', + 'Additional Information for participants' => '', + 'Adds a calendar for private or public events to your profile and main menu.' => 'Profilinize ve ana menünüze etkinlikler için bir takvim ekler.', + 'Adds an event calendar to this space.' => 'Bu mekana bir etkinlik takvimi ekler.', + 'After (occurrences)' => '', + 'All Day' => 'Tüm gün', + 'Allow option \'Decline\'' => '', + 'Allow option \'Undecided\'' => '', + 'Allows the user to create new calendar entries' => '', + 'Allows the user to edit/delete existing calendar entries' => '', + 'Also include participant email addresses' => '', + 'Attending' => 'Katılan', + 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', + 'Birthday' => 'Doğum günü', + 'By upcoming events first' => '', + 'CalDAV' => '', + 'Calendar' => 'Takvim', + 'Calendar event' => '', + 'Calendar event content ID' => '', + 'Calendar events' => '', + 'Cancel Event' => 'Etkinliği İptal Et', + 'Cannot remove the participant!' => '', + 'Create entry' => '', + 'Custom reminder' => 'Özel hatırlatıcı', + 'Day' => 'Gün', + 'Days' => 'Günler', + 'Default reminder settings' => 'Varsayılan hatırlatıcı ayarları', + 'Delete all events' => 'Tüm etkinlikleri sil', + 'Deleted' => '', + 'Description' => 'Açıklama', + 'Display events within the next X days' => '', + 'Do you want to install this module on your profile?' => '', + 'Download ICS' => '', + 'Edit' => 'Düzenle', + 'Edit Event' => '', + 'Edit all events' => 'Tüm etkinlikleri düzenle', + 'Edit this and following events' => '', + 'Edit this event' => 'Etkinliği düzenle', + 'Email' => 'E-posta', + 'Enable' => 'Etkinleştirme', + 'Enable Reminder' => '', + 'End' => 'Son', + 'End Date' => 'Bitiş tarihi', + 'End Time' => 'Bitiş Zamanı', + 'End time must be after start time!' => 'Bitiş saati başlangıç ​​zamanından sonra olmalıdır!', + 'Event' => 'Etkinlik', + 'Event Type' => 'Etkinlik Türü', + 'Event Types' => 'Etkinlik Türleri', + 'Event could not be deleted!' => '', + 'Event has been be deleted!' => '', + 'Event not found!' => 'Etkinlik bulunamadı!', + 'Export as {type}' => '', + 'Files' => 'Dosyalar', + 'Filter' => 'Filtre', + 'Filter by types' => '', + 'Friday' => '', + 'Here you can configure default settings for all calendar events.' => '', + 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => '', + 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', + 'Hour' => 'Saat', + 'I\'m attending' => 'Katılıyorum', + 'ID' => 'Kimlik', + 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', + 'In order to add events to your profile, you have to enable the calendar module first.' => 'Profilinize etkinlik eklemek için önce takvim modülünü etkinleştirmeniz gerekir.', + 'Include participant information in exports' => '', + 'Interested' => 'İlgilenen', + 'Invalid date or time format!' => '', + 'Invalid day of month given' => '', + 'Invalid event type id selected.' => 'Geçersiz etkinlik türü kimliği seçildi.', + 'Invalid frequency given' => '', + 'Invalid interval given' => '', + 'Invalid week day selection' => '', + 'Invite' => 'Davet', + 'Invited: {users}' => '', + 'JWT Key' => '', + 'JWT Token Expiration' => '', + 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', + 'List' => 'Liste', + 'Location' => 'Konum', + 'Manage entries' => '', + 'Maximum number of participants' => 'Maksimum katılımcı sayısı', + 'Minute' => '', + 'Mode' => '', + 'Monday' => '', + 'Month' => 'Ay', + 'Monthly on day {dayOfMonth}' => '', + 'Monthly on the {position} {dayOfWeek}' => '', + 'Months' => 'Aylar', + 'Never' => 'Asla', + 'Next' => 'İleri', + 'No new participants were added.' => '', + 'No new participants were invited.' => '', + 'No reminder' => '', + 'Notify participants about changes' => '', + 'On date' => '', + 'Participant removed.' => '', + 'Participants' => 'Katılımcılar', + 'Participation Status' => '', + 'Please select new participants.' => '', + 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => '', + 'Profile Calendar' => 'Profil Takvimi', + 'Public' => 'Herkese açık', + 'Recurring' => '', + 'Reopen Event' => 'Etkinliği Yeniden Aç', + 'Repeat every' => '', + 'Saturday' => '', + 'Select calendar...' => '', + 'Select space...' => '', + 'Set reminder' => '', + 'Show past events' => '', + 'Start Date' => 'Başlangıç tarihi', + 'Start Time' => 'Başlangıç Zamanı', + 'Status cannot be updated.' => '', + 'Status updated.' => '', + 'Sunday' => '', + 'The event has already ended.' => '', + 'This event does not support recurrent events' => '', + 'Thursday' => '', + 'Time Zone' => 'Saat Dilimi', + 'Title' => 'Başlık', + 'Today' => '', + 'Tuesday' => '', + 'Upcoming {type}' => '', + 'Upcoming {type}: {title}' => '', + 'Use default reminder' => 'Varsayılan hatıralatcıyı kullan', + 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', + 'User birthdays' => '', + 'Wednesday' => '', + 'Week' => 'Hafta', + 'Weeks' => 'Haftalar', + 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', + 'Year' => 'Yıl', + 'Years' => 'Yıllar', + 'You cannot invite participants!' => '', + 'You don\'t have permission to delete this event!' => 'Bu etkinliği silmek için izniniz yok!', + 'You have an {type} coming up' => '', + 'You have an {type} coming up: {title}' => '', + 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', + 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', + 'You have been registered for the event "{contentTitle}".' => '', + 'Your reminder settings for event: \'{title}\'' => '', + 'canceled' => 'iptal edildi', + 'disabled' => 'engelli', + 'first' => 'İlk', + 'forth' => '', + 'global' => '', + 'iCal' => '', + 'in seconds. 0 for no JWT token expiration.' => '', + 'last' => '', + 'on weekdays' => '', + 'second' => '', + 'third' => '', + '{displayName} Birthday' => '', + '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', + '{displayName} added you to the event "{contentTitle}".' => '', + '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', + '{displayName} invited you to the event "{contentTitle}".' => '', + '{name} Calendar' => '', ]; diff --git a/messages/vi/base.php b/messages/vi/base.php index a5bba5ba..d39fb15b 100644 --- a/messages/vi/base.php +++ b/messages/vi/base.php @@ -1,167 +1,166 @@ Add profile calendar' => 'Thêm lịch riêng', - 'Choose target calendar' => 'Chọn lịch mục tiêu', - 'Reminder settings' => 'Thiết lập Nhắc nhở', - 'Adds a calendar for private or public events to your profile and main menu.' => 'Thêm lịch cho sự kiện riêng tư hoặc công cộng vào Trang hồ sơ và Menu chính của bạn.', - 'Adds an event calendar to this space.' => 'Thêm lịch sự kiện vào diên đàn này', - 'After (occurrences)' => 'Sau (sự xảy ra)', - 'All Day' => 'Cả ngày', - 'Allows the user to create new calendar entries' => 'Cho phép người dùng tạo lịch mới', - 'Allows the user to edit/delete existing calendar entries' => 'Cho phép người dùng chỉnh sửa/xóa lịch hiện có', - 'Attending' => 'Sẽ tham gia', - 'Birthday' => 'Sinh nhật', - 'Calendar' => 'Lịch', - 'Cancel Event' => 'Hủy sự kiện', - 'Create entry' => 'Tạo lịch mới', - 'Custom reminder' => 'Tùy chỉnh nhắc nhở', - 'Day' => 'Ngày', - 'Days' => 'Những ngày', - 'Default reminder settings' => 'Thiết lập nhắc nhở mặc định', - 'Delete all events' => 'Xóa mọi sự kiện', - 'Deleted' => 'Đã xóa', - 'Description' => 'Mô tả', - 'Do you want to install this module on your profile?' => 'Bạn có muốn cài đặt module này vào trang cá nhân?', - 'Edit' => 'Chỉnh sửa', - 'Edit all events' => 'Sửa mọi sự kiện', - 'Edit this and following events' => 'Sửa sự kiện này và các sự kiện đang theo dõi', - 'Edit this event' => 'Sửa sự kiện này', - 'Email' => 'Email', - 'Enable' => 'Kích hoạt', - 'End' => 'Kết thúc', - 'End Date' => 'Ngày kết thúc', - 'End Time' => 'Giờ kết thúc', - 'End time must be after start time!' => 'Ngày kết thúc phải sau ngày bắt đầu!', - 'Event' => 'Sự kiện', - 'Event Type' => 'Loại sự kiện', - 'Event Types' => 'Loại sự kiện', - 'Event not found!' => 'Không tìm thấy sự kiện!', - 'Files' => 'Files', - 'Friday' => 'Thứ sáu', - 'Here you can configure default settings for all calendar events.' => 'ở đây bạn có thể thiết lập cấu hình mặc định cho mọi lịch sự kiện', - 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => 'Ở đây bạn có thể cấu hình nhắc nhở mặc định chung trên hệ thống. Những cấu hình này có thể bị ghi đè ở mức diễn đàn/trang cá nhân.', - 'Hour' => 'Giờ', - 'I\'m attending' => 'Tôi đang tham gia', - 'ID' => 'ID', - 'In order to add events to your profile, you have to enable the calendar module first.' => 'Để thêm sự kiện vào trang hồ sơ của bạn, bạn phải kích hoạt module Lịch trước.', - 'Interested' => 'Yêu thích.', - 'Invalid date or time format!' => 'Định dạng ngày giờ không hợp lệ', - 'Invalid day of month given' => 'Ngày của tháng không hợp lệ', - 'Invalid event type id selected.' => 'Sai ID loại sự kiện', - 'Invalid frequency given' => 'Tần suất không hợp lệ', - 'Invalid interval given' => 'Khoảng thời gian không hợp lệ', - 'Invalid week day selection' => 'Thứ lựa chọn không hợp lệ', - 'Invite' => 'Mời', - 'List' => 'Danh sách', - 'Location' => 'Địa điểm', - 'Manage entries' => 'Quản lý lịch', - 'Maximum number of participants' => 'Số người tham dự tối đa', - 'Monday' => 'Thứ hai', - 'Month' => 'Tháng', - 'Monthly on day {dayOfMonth}' => 'Hàng tháng vào ngày {dayOfMonth}', - 'Monthly on the {position} {dayOfWeek}' => 'Hàng tháng vào ngày {position} {dayOfWeek}', - 'Months' => 'Tháng', - 'Never' => 'Không bao giờ', - 'Next' => 'Tiếp theo', - 'No reminder' => 'Không nhắc', - 'On date' => 'Vào ngày', - 'Participants' => 'Người tham gia', - 'Profile Calendar' => 'Lịch hồ sơ cá nhân', - 'Public' => 'Công cộng', - 'Reopen Event' => 'Mở lại sự kiện', - 'Repeat every' => 'Lặp lại mỗi', - 'Saturday' => 'Thứ bảy', - 'Set reminder' => 'Thiết lập nhắc nhở', - 'Start Date' => 'Ngày bắt đầu', - 'Start Time' => 'Thời gian bắt đầu', - 'Sunday' => 'Chủ nhật', - 'This event does not support recurrent events' => 'Sự kiện này không hỗ trợ lặp lại', - 'Thursday' => 'Thứ năm', - 'Time Zone' => 'Múi giờ', - 'Title' => 'Tiêu đề', - 'Today' => 'Hôm nay', - 'Tuesday' => 'Thứ ba', - 'Upcoming {type}' => 'Sắp diễn ra {type}', - 'Upcoming {type}: {title}' => 'Sắp diễn ra {type}: {title}', - 'Use default reminder' => 'Dùng nhắc nhở mặc định', - 'Wednesday' => 'Thứ tư', - 'Week' => 'Tuần', - 'Weeks' => 'Các tuần', - 'Year' => 'Năm', - 'Years' => 'Các năm', - 'You don\'t have permission to delete this event!' => 'Bạn không có quyền xóa sự kiện này!', - 'You have an {type} coming up' => 'Bạn có một {type} sắp diễn ra', - 'You have an {type} coming up: {title}' => 'Bạn có một {type} sắp diễn ra: {title}', - 'Your reminder settings for event: \'{title}\'' => 'Cấu hình nhắc nhở cho sự kiện của bạn: \'{title}\'', - 'canceled' => 'đã hủy', - 'disabled' => 'tàn tật', - 'first' => 'Nhứ nhất', - 'forth' => 'Thứ tư', - 'on weekdays' => 'vào các ngày trong tuần', - 'second' => 'Thứ hai', - 'third' => 'Thứ ba', - '{displayName} Birthday' => 'Sinh nhật {displayName}', - '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} vừa mới thêm bạn vào sự kiện "{contentTitle}" trong diễn đàn {spaceName} bắt đầu từ {time}.', - '{displayName} added you to the event "{contentTitle}".' => '{displayName} vừa thêm bạn vào sự kiện "{contentTitle}".', - 'Add all Space members with status {status}' => '', - 'Add participants...' => '', - 'Added: {users}' => '', - 'Additional Information for participants' => '', - 'Allow option \'Decline\'' => '', - 'Allow option \'Undecided\'' => '', - 'Also include participant email addresses' => '', - 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', - 'By upcoming events first' => '', - 'CalDAV' => '', - 'Calendar event' => '', - 'Calendar event content ID' => '', - 'Calendar events' => '', - 'Cannot remove the participant!' => '', - 'Display events within the next X days' => '', - 'Download ICS' => '', - 'Edit Event' => '', - 'Enable Reminder' => '', - 'Event could not be deleted!' => '', - 'Event has been be deleted!' => '', - 'Export as {type}' => '', - 'Filter' => '', - 'Filter by types' => '', - 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', - 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', - 'Include participant information in exports' => '', - 'Invited: {users}' => '', - 'JWT Key' => '', - 'JWT Token Expiration' => '', - 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', - 'Minute' => '', - 'Mode' => '', - 'No new participants were added.' => '', - 'No new participants were invited.' => '', - 'Notify participants about changes' => '', - 'Participant removed.' => '', - 'Participation Status' => '', - 'Please select new participants.' => '', - 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => '', - 'Recurring' => '', - 'Select calendar...' => '', - 'Select space...' => '', - 'Show past events' => '', - 'Status cannot be updated.' => '', - 'Status updated.' => '', - 'The event has already ended.' => '', - 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', - 'User birthdays' => '', - 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', - 'You cannot invite participants!' => '', - 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', - 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', - 'You have been registered for the event "{contentTitle}".' => '', - 'global' => '', - 'iCal' => '', - 'in seconds. 0 for no JWT token expiration.' => '', - 'last' => '', - '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', - '{displayName} invited you to the event "{contentTitle}".' => '', - '{name} Calendar' => '', + 'Add profile calendar' => 'Thêm lịch riêng', + 'Choose target calendar' => 'Chọn lịch mục tiêu', + 'Reminder settings' => 'Thiết lập Nhắc nhở', + 'Add all Space members with status {status}' => '', + 'Add participants...' => '', + 'Added: {users}' => '', + 'Additional Information for participants' => '', + 'Adds a calendar for private or public events to your profile and main menu.' => 'Thêm lịch cho sự kiện riêng tư hoặc công cộng vào Trang hồ sơ và Menu chính của bạn.', + 'Adds an event calendar to this space.' => 'Thêm lịch sự kiện vào diên đàn này', + 'After (occurrences)' => 'Sau (sự xảy ra)', + 'All Day' => 'Cả ngày', + 'Allow option \'Decline\'' => '', + 'Allow option \'Undecided\'' => '', + 'Allows the user to create new calendar entries' => 'Cho phép người dùng tạo lịch mới', + 'Allows the user to edit/delete existing calendar entries' => 'Cho phép người dùng chỉnh sửa/xóa lịch hiện có', + 'Also include participant email addresses' => '', + 'Attending' => 'Sẽ tham gia', + 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', + 'Birthday' => 'Sinh nhật', + 'By upcoming events first' => '', + 'CalDAV' => '', + 'Calendar' => 'Lịch', + 'Calendar event' => '', + 'Calendar event content ID' => '', + 'Calendar events' => '', + 'Cancel Event' => 'Hủy sự kiện', + 'Cannot remove the participant!' => '', + 'Create entry' => 'Tạo lịch mới', + 'Custom reminder' => 'Tùy chỉnh nhắc nhở', + 'Day' => 'Ngày', + 'Days' => 'Những ngày', + 'Default reminder settings' => 'Thiết lập nhắc nhở mặc định', + 'Delete all events' => 'Xóa mọi sự kiện', + 'Deleted' => 'Đã xóa', + 'Description' => 'Mô tả', + 'Display events within the next X days' => '', + 'Do you want to install this module on your profile?' => 'Bạn có muốn cài đặt module này vào trang cá nhân?', + 'Download ICS' => '', + 'Edit' => 'Chỉnh sửa', + 'Edit Event' => '', + 'Edit all events' => 'Sửa mọi sự kiện', + 'Edit this and following events' => 'Sửa sự kiện này và các sự kiện đang theo dõi', + 'Edit this event' => 'Sửa sự kiện này', + 'Email' => 'Email', + 'Enable' => 'Kích hoạt', + 'Enable Reminder' => '', + 'End' => 'Kết thúc', + 'End Date' => 'Ngày kết thúc', + 'End Time' => 'Giờ kết thúc', + 'End time must be after start time!' => 'Ngày kết thúc phải sau ngày bắt đầu!', + 'Event' => 'Sự kiện', + 'Event Type' => 'Loại sự kiện', + 'Event Types' => 'Loại sự kiện', + 'Event could not be deleted!' => '', + 'Event has been be deleted!' => '', + 'Event not found!' => 'Không tìm thấy sự kiện!', + 'Export as {type}' => '', + 'Files' => 'Files', + 'Filter' => 'Lọc', + 'Filter by types' => '', + 'Friday' => 'Thứ sáu', + 'Here you can configure default settings for all calendar events.' => 'ở đây bạn có thể thiết lập cấu hình mặc định cho mọi lịch sự kiện', + 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => 'Ở đây bạn có thể cấu hình nhắc nhở mặc định chung trên hệ thống. Những cấu hình này có thể bị ghi đè ở mức diễn đàn/trang cá nhân.', + 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', + 'Hour' => 'Giờ', + 'I\'m attending' => 'Tôi đang tham gia', + 'ID' => 'ID', + 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', + 'In order to add events to your profile, you have to enable the calendar module first.' => 'Để thêm sự kiện vào trang hồ sơ của bạn, bạn phải kích hoạt module Lịch trước.', + 'Include participant information in exports' => '', + 'Interested' => 'Yêu thích.', + 'Invalid date or time format!' => 'Định dạng ngày giờ không hợp lệ', + 'Invalid day of month given' => 'Ngày của tháng không hợp lệ', + 'Invalid event type id selected.' => 'Sai ID loại sự kiện', + 'Invalid frequency given' => 'Tần suất không hợp lệ', + 'Invalid interval given' => 'Khoảng thời gian không hợp lệ', + 'Invalid week day selection' => 'Thứ lựa chọn không hợp lệ', + 'Invite' => 'Mời', + 'Invited: {users}' => '', + 'JWT Key' => '', + 'JWT Token Expiration' => '', + 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', + 'List' => 'Danh sách', + 'Location' => 'Địa điểm', + 'Manage entries' => 'Quản lý lịch', + 'Maximum number of participants' => 'Số người tham dự tối đa', + 'Minute' => '', + 'Mode' => '', + 'Monday' => 'Thứ hai', + 'Month' => 'Tháng', + 'Monthly on day {dayOfMonth}' => 'Hàng tháng vào ngày {dayOfMonth}', + 'Monthly on the {position} {dayOfWeek}' => 'Hàng tháng vào ngày {position} {dayOfWeek}', + 'Months' => 'Tháng', + 'Never' => 'Không bao giờ', + 'Next' => 'Tiếp theo', + 'No new participants were added.' => '', + 'No new participants were invited.' => '', + 'No reminder' => 'Không nhắc', + 'Notify participants about changes' => '', + 'On date' => 'Vào ngày', + 'Participant removed.' => '', + 'Participants' => 'Người tham gia', + 'Participation Status' => '', + 'Please select new participants.' => '', + 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => '', + 'Profile Calendar' => 'Lịch hồ sơ cá nhân', + 'Public' => 'Công cộng', + 'Recurring' => '', + 'Reopen Event' => 'Mở lại sự kiện', + 'Repeat every' => 'Lặp lại mỗi', + 'Saturday' => 'Thứ bảy', + 'Select calendar...' => '', + 'Select space...' => '', + 'Set reminder' => 'Thiết lập nhắc nhở', + 'Show past events' => '', + 'Start Date' => 'Ngày bắt đầu', + 'Start Time' => 'Thời gian bắt đầu', + 'Status cannot be updated.' => '', + 'Status updated.' => '', + 'Sunday' => 'Chủ nhật', + 'The event has already ended.' => '', + 'This event does not support recurrent events' => 'Sự kiện này không hỗ trợ lặp lại', + 'Thursday' => 'Thứ năm', + 'Time Zone' => 'Múi giờ', + 'Title' => 'Tiêu đề', + 'Today' => 'Hôm nay', + 'Tuesday' => 'Thứ ba', + 'Upcoming {type}' => 'Sắp diễn ra {type}', + 'Upcoming {type}: {title}' => 'Sắp diễn ra {type}: {title}', + 'Use default reminder' => 'Dùng nhắc nhở mặc định', + 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', + 'User birthdays' => '', + 'Wednesday' => 'Thứ tư', + 'Week' => 'Tuần', + 'Weeks' => 'Các tuần', + 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', + 'Year' => 'Năm', + 'Years' => 'Các năm', + 'You cannot invite participants!' => '', + 'You don\'t have permission to delete this event!' => 'Bạn không có quyền xóa sự kiện này!', + 'You have an {type} coming up' => 'Bạn có một {type} sắp diễn ra', + 'You have an {type} coming up: {title}' => 'Bạn có một {type} sắp diễn ra: {title}', + 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', + 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', + 'You have been registered for the event "{contentTitle}".' => '', + 'Your reminder settings for event: \'{title}\'' => 'Cấu hình nhắc nhở cho sự kiện của bạn: \'{title}\'', + 'canceled' => 'đã hủy', + 'disabled' => 'tàn tật', + 'first' => 'Nhứ nhất', + 'forth' => 'Thứ tư', + 'global' => '', + 'iCal' => '', + 'in seconds. 0 for no JWT token expiration.' => '', + 'last' => '', + 'on weekdays' => 'vào các ngày trong tuần', + 'second' => 'Thứ hai', + 'third' => 'Thứ ba', + '{displayName} Birthday' => 'Sinh nhật {displayName}', + '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} vừa mới thêm bạn vào sự kiện "{contentTitle}" trong diễn đàn {spaceName} bắt đầu từ {time}.', + '{displayName} added you to the event "{contentTitle}".' => '{displayName} vừa thêm bạn vào sự kiện "{contentTitle}".', + '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', + '{displayName} invited you to the event "{contentTitle}".' => '', + '{name} Calendar' => '', ]; diff --git a/messages/zh-CN/base.php b/messages/zh-CN/base.php index b434f72b..32515b68 100644 --- a/messages/zh-CN/base.php +++ b/messages/zh-CN/base.php @@ -1,167 +1,166 @@ '在主菜单和个人属性页为你的私有或公共事件增加一个日历。', - 'Adds an event calendar to this space.' => '为这个版块增加一个事件日历。', - 'All Day' => '全天', - 'Birthday' => '生日', - 'Calendar' => '日历', - 'Description' => '描述', - 'Edit' => '编辑', - 'Edit this event' => '编辑事件', - 'Email' => '邮箱', - 'Enable' => '生效', - 'End Date' => '结束日期', - 'End time must be after start time!' => '结束时间必须晚于开始时间!', - 'Event' => '事件', - 'Event not found!' => '没找到事件', - 'Files' => '附件设置', - 'I\'m attending' => '我参加', - 'ID' => 'ID', - 'Invite' => '邀请', - 'List' => '列表', - 'Never' => '从不', - 'Next' => '下一步', - 'Public' => '公共', - 'Start Date' => '开始日期', - 'Title' => '标题', - 'You don\'t have permission to delete this event!' => '你无权删除事件!', - 'disabled' => '残疾', - 'Add profile calendar' => '', - 'Choose target calendar' => '', - 'Reminder settings' => '', - 'Add all Space members with status {status}' => '', - 'Add participants...' => '', - 'Added: {users}' => '', - 'Additional Information for participants' => '', - 'After (occurrences)' => '', - 'Allow option \'Decline\'' => '', - 'Allow option \'Undecided\'' => '', - 'Allows the user to create new calendar entries' => '', - 'Allows the user to edit/delete existing calendar entries' => '', - 'Also include participant email addresses' => '', - 'Attending' => '', - 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', - 'By upcoming events first' => '', - 'CalDAV' => '', - 'Calendar event' => '', - 'Calendar event content ID' => '', - 'Calendar events' => '', - 'Cancel Event' => '', - 'Cannot remove the participant!' => '', - 'Create entry' => '', - 'Custom reminder' => '', - 'Day' => '', - 'Days' => '', - 'Default reminder settings' => '', - 'Delete all events' => '', - 'Deleted' => '', - 'Display events within the next X days' => '', - 'Do you want to install this module on your profile?' => '', - 'Download ICS' => '', - 'Edit Event' => '', - 'Edit all events' => '', - 'Edit this and following events' => '', - 'Enable Reminder' => '', - 'End' => '', - 'End Time' => '', - 'Event Type' => '', - 'Event Types' => '', - 'Event could not be deleted!' => '', - 'Event has been be deleted!' => '', - 'Export as {type}' => '', - 'Filter' => '', - 'Filter by types' => '', - 'Friday' => '', - 'Here you can configure default settings for all calendar events.' => '', - 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => '', - 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', - 'Hour' => '', - 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', - 'In order to add events to your profile, you have to enable the calendar module first.' => '', - 'Include participant information in exports' => '', - 'Interested' => '', - 'Invalid date or time format!' => '', - 'Invalid day of month given' => '', - 'Invalid event type id selected.' => '', - 'Invalid frequency given' => '', - 'Invalid interval given' => '', - 'Invalid week day selection' => '', - 'Invited: {users}' => '', - 'JWT Key' => '', - 'JWT Token Expiration' => '', - 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', - 'Location' => '', - 'Manage entries' => '', - 'Maximum number of participants' => '', - 'Minute' => '', - 'Mode' => '', - 'Monday' => '', - 'Month' => '', - 'Monthly on day {dayOfMonth}' => '', - 'Monthly on the {position} {dayOfWeek}' => '', - 'Months' => '', - 'No new participants were added.' => '', - 'No new participants were invited.' => '', - 'No reminder' => '', - 'Notify participants about changes' => '', - 'On date' => '', - 'Participant removed.' => '', - 'Participants' => '', - 'Participation Status' => '', - 'Please select new participants.' => '', - 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => '', - 'Profile Calendar' => '', - 'Recurring' => '', - 'Reopen Event' => '', - 'Repeat every' => '', - 'Saturday' => '', - 'Select calendar...' => '', - 'Select space...' => '', - 'Set reminder' => '', - 'Show past events' => '', - 'Start Time' => '', - 'Status cannot be updated.' => '', - 'Status updated.' => '', - 'Sunday' => '', - 'The event has already ended.' => '', - 'This event does not support recurrent events' => '', - 'Thursday' => '', - 'Time Zone' => '', - 'Today' => '', - 'Tuesday' => '', - 'Upcoming {type}' => '', - 'Upcoming {type}: {title}' => '', - 'Use default reminder' => '', - 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', - 'User birthdays' => '', - 'Wednesday' => '', - 'Week' => '', - 'Weeks' => '', - 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', - 'Year' => '', - 'Years' => '', - 'You cannot invite participants!' => '', - 'You have an {type} coming up' => '', - 'You have an {type} coming up: {title}' => '', - 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', - 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', - 'You have been registered for the event "{contentTitle}".' => '', - 'Your reminder settings for event: \'{title}\'' => '', - 'canceled' => '', - 'first' => '', - 'forth' => '', - 'global' => '', - 'iCal' => '', - 'in seconds. 0 for no JWT token expiration.' => '', - 'last' => '', - 'on weekdays' => '', - 'second' => '', - 'third' => '', - '{displayName} Birthday' => '', - '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', - '{displayName} added you to the event "{contentTitle}".' => '', - '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', - '{displayName} invited you to the event "{contentTitle}".' => '', - '{name} Calendar' => '', + 'Add profile calendar' => '', + 'Choose target calendar' => '', + 'Reminder settings' => '', + 'Add all Space members with status {status}' => '', + 'Add participants...' => '', + 'Added: {users}' => '', + 'Additional Information for participants' => '', + 'Adds a calendar for private or public events to your profile and main menu.' => '在主菜单和个人属性页为你的私有或公共事件增加一个日历。', + 'Adds an event calendar to this space.' => '为这个版块增加一个事件日历。', + 'After (occurrences)' => '', + 'All Day' => '全天', + 'Allow option \'Decline\'' => '', + 'Allow option \'Undecided\'' => '', + 'Allows the user to create new calendar entries' => '', + 'Allows the user to edit/delete existing calendar entries' => '', + 'Also include participant email addresses' => '', + 'Attending' => '', + 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', + 'Birthday' => '生日', + 'By upcoming events first' => '', + 'CalDAV' => '', + 'Calendar' => '日历', + 'Calendar event' => '', + 'Calendar event content ID' => '', + 'Calendar events' => '', + 'Cancel Event' => '', + 'Cannot remove the participant!' => '', + 'Create entry' => '', + 'Custom reminder' => '', + 'Day' => '', + 'Days' => '', + 'Default reminder settings' => '', + 'Delete all events' => '', + 'Deleted' => '', + 'Description' => '描述', + 'Display events within the next X days' => '', + 'Do you want to install this module on your profile?' => '', + 'Download ICS' => '', + 'Edit' => '编辑', + 'Edit Event' => '', + 'Edit all events' => '', + 'Edit this and following events' => '', + 'Edit this event' => '编辑事件', + 'Email' => '邮箱', + 'Enable' => '生效', + 'Enable Reminder' => '', + 'End' => '', + 'End Date' => '结束日期', + 'End Time' => '', + 'End time must be after start time!' => '结束时间必须晚于开始时间!', + 'Event' => '事件', + 'Event Type' => '', + 'Event Types' => '', + 'Event could not be deleted!' => '', + 'Event has been be deleted!' => '', + 'Event not found!' => '没找到事件', + 'Export as {type}' => '', + 'Files' => '附件设置', + 'Filter' => '筛选', + 'Filter by types' => '', + 'Friday' => '', + 'Here you can configure default settings for all calendar events.' => '', + 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => '', + 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', + 'Hour' => '', + 'I\'m attending' => '我参加', + 'ID' => 'ID', + 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', + 'In order to add events to your profile, you have to enable the calendar module first.' => '', + 'Include participant information in exports' => '', + 'Interested' => '', + 'Invalid date or time format!' => '', + 'Invalid day of month given' => '', + 'Invalid event type id selected.' => '', + 'Invalid frequency given' => '', + 'Invalid interval given' => '', + 'Invalid week day selection' => '', + 'Invite' => '邀请', + 'Invited: {users}' => '', + 'JWT Key' => '', + 'JWT Token Expiration' => '', + 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', + 'List' => '列表', + 'Location' => '', + 'Manage entries' => '', + 'Maximum number of participants' => '', + 'Minute' => '', + 'Mode' => '', + 'Monday' => '', + 'Month' => '', + 'Monthly on day {dayOfMonth}' => '', + 'Monthly on the {position} {dayOfWeek}' => '', + 'Months' => '', + 'Never' => '从不', + 'Next' => '下一步', + 'No new participants were added.' => '', + 'No new participants were invited.' => '', + 'No reminder' => '', + 'Notify participants about changes' => '', + 'On date' => '', + 'Participant removed.' => '', + 'Participants' => '', + 'Participation Status' => '', + 'Please select new participants.' => '', + 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => '', + 'Profile Calendar' => '', + 'Public' => '公共', + 'Recurring' => '', + 'Reopen Event' => '', + 'Repeat every' => '', + 'Saturday' => '', + 'Select calendar...' => '', + 'Select space...' => '', + 'Set reminder' => '', + 'Show past events' => '', + 'Start Date' => '开始日期', + 'Start Time' => '', + 'Status cannot be updated.' => '', + 'Status updated.' => '', + 'Sunday' => '', + 'The event has already ended.' => '', + 'This event does not support recurrent events' => '', + 'Thursday' => '', + 'Time Zone' => '', + 'Title' => '标题', + 'Today' => '', + 'Tuesday' => '', + 'Upcoming {type}' => '', + 'Upcoming {type}: {title}' => '', + 'Use default reminder' => '', + 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', + 'User birthdays' => '', + 'Wednesday' => '', + 'Week' => '', + 'Weeks' => '', + 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', + 'Year' => '', + 'Years' => '', + 'You cannot invite participants!' => '', + 'You don\'t have permission to delete this event!' => '你无权删除事件!', + 'You have an {type} coming up' => '', + 'You have an {type} coming up: {title}' => '', + 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', + 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', + 'You have been registered for the event "{contentTitle}".' => '', + 'Your reminder settings for event: \'{title}\'' => '', + 'canceled' => '', + 'disabled' => '残疾', + 'first' => '', + 'forth' => '', + 'global' => '', + 'iCal' => '', + 'in seconds. 0 for no JWT token expiration.' => '', + 'last' => '', + 'on weekdays' => '', + 'second' => '', + 'third' => '', + '{displayName} Birthday' => '', + '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', + '{displayName} added you to the event "{contentTitle}".' => '', + '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', + '{displayName} invited you to the event "{contentTitle}".' => '', + '{name} Calendar' => '', ]; diff --git a/messages/zh-TW/base.php b/messages/zh-TW/base.php index d7b3c458..2e7fbe50 100644 --- a/messages/zh-TW/base.php +++ b/messages/zh-TW/base.php @@ -1,167 +1,166 @@ '生日', - 'Description' => '描述', - 'Edit' => '編輯', - 'Email' => 'E-mail', - 'Enable' => '開啟', - 'Invite' => '邀請', - 'List' => '清單', - 'Location' => '地點', - 'Never' => '從不', - 'Next' => '下一個', - 'Participants' => '參與者', - 'Public' => '公開貼文', - 'Time Zone' => '時區', - 'Title' => '標題', - 'disabled' => '残疾', - 'Add profile calendar' => '', - 'Choose target calendar' => '', - 'Reminder settings' => '', - 'Add all Space members with status {status}' => '', - 'Add participants...' => '', - 'Added: {users}' => '', - 'Additional Information for participants' => '', - 'Adds a calendar for private or public events to your profile and main menu.' => '', - 'Adds an event calendar to this space.' => '', - 'After (occurrences)' => '', - 'All Day' => '', - 'Allow option \'Decline\'' => '', - 'Allow option \'Undecided\'' => '', - 'Allows the user to create new calendar entries' => '', - 'Allows the user to edit/delete existing calendar entries' => '', - 'Also include participant email addresses' => '', - 'Attending' => '', - 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', - 'By upcoming events first' => '', - 'CalDAV' => '', - 'Calendar' => '', - 'Calendar event' => '', - 'Calendar event content ID' => '', - 'Calendar events' => '', - 'Cancel Event' => '', - 'Cannot remove the participant!' => '', - 'Create entry' => '', - 'Custom reminder' => '', - 'Day' => '', - 'Days' => '', - 'Default reminder settings' => '', - 'Delete all events' => '', - 'Deleted' => '', - 'Display events within the next X days' => '', - 'Do you want to install this module on your profile?' => '', - 'Download ICS' => '', - 'Edit Event' => '', - 'Edit all events' => '', - 'Edit this and following events' => '', - 'Edit this event' => '', - 'Enable Reminder' => '', - 'End' => '', - 'End Date' => '', - 'End Time' => '', - 'End time must be after start time!' => '', - 'Event' => '', - 'Event Type' => '', - 'Event Types' => '', - 'Event could not be deleted!' => '', - 'Event has been be deleted!' => '', - 'Event not found!' => '', - 'Export as {type}' => '', - 'Files' => '', - 'Filter' => '', - 'Filter by types' => '', - 'Friday' => '', - 'Here you can configure default settings for all calendar events.' => '', - 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => '', - 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', - 'Hour' => '', - 'I\'m attending' => '', - 'ID' => '', - 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', - 'In order to add events to your profile, you have to enable the calendar module first.' => '', - 'Include participant information in exports' => '', - 'Interested' => '', - 'Invalid date or time format!' => '', - 'Invalid day of month given' => '', - 'Invalid event type id selected.' => '', - 'Invalid frequency given' => '', - 'Invalid interval given' => '', - 'Invalid week day selection' => '', - 'Invited: {users}' => '', - 'JWT Key' => '', - 'JWT Token Expiration' => '', - 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', - 'Manage entries' => '', - 'Maximum number of participants' => '', - 'Minute' => '', - 'Mode' => '', - 'Monday' => '', - 'Month' => '', - 'Monthly on day {dayOfMonth}' => '', - 'Monthly on the {position} {dayOfWeek}' => '', - 'Months' => '', - 'No new participants were added.' => '', - 'No new participants were invited.' => '', - 'No reminder' => '', - 'Notify participants about changes' => '', - 'On date' => '', - 'Participant removed.' => '', - 'Participation Status' => '', - 'Please select new participants.' => '', - 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => '', - 'Profile Calendar' => '', - 'Recurring' => '', - 'Reopen Event' => '', - 'Repeat every' => '', - 'Saturday' => '', - 'Select calendar...' => '', - 'Select space...' => '', - 'Set reminder' => '', - 'Show past events' => '', - 'Start Date' => '', - 'Start Time' => '', - 'Status cannot be updated.' => '', - 'Status updated.' => '', - 'Sunday' => '', - 'The event has already ended.' => '', - 'This event does not support recurrent events' => '', - 'Thursday' => '', - 'Today' => '', - 'Tuesday' => '', - 'Upcoming {type}' => '', - 'Upcoming {type}: {title}' => '', - 'Use default reminder' => '', - 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', - 'User birthdays' => '', - 'Wednesday' => '', - 'Week' => '', - 'Weeks' => '', - 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', - 'Year' => '', - 'Years' => '', - 'You cannot invite participants!' => '', - 'You don\'t have permission to delete this event!' => '', - 'You have an {type} coming up' => '', - 'You have an {type} coming up: {title}' => '', - 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', - 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', - 'You have been registered for the event "{contentTitle}".' => '', - 'Your reminder settings for event: \'{title}\'' => '', - 'canceled' => '', - 'first' => '', - 'forth' => '', - 'global' => '', - 'iCal' => '', - 'in seconds. 0 for no JWT token expiration.' => '', - 'last' => '', - 'on weekdays' => '', - 'second' => '', - 'third' => '', - '{displayName} Birthday' => '', - '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', - '{displayName} added you to the event "{contentTitle}".' => '', - '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', - '{displayName} invited you to the event "{contentTitle}".' => '', - '{name} Calendar' => '', + 'Add profile calendar' => '', + 'Choose target calendar' => '', + 'Reminder settings' => '', + 'Add all Space members with status {status}' => '', + 'Add participants...' => '', + 'Added: {users}' => '', + 'Additional Information for participants' => '', + 'Adds a calendar for private or public events to your profile and main menu.' => '', + 'Adds an event calendar to this space.' => '', + 'After (occurrences)' => '', + 'All Day' => '', + 'Allow option \'Decline\'' => '', + 'Allow option \'Undecided\'' => '', + 'Allows the user to create new calendar entries' => '', + 'Allows the user to edit/delete existing calendar entries' => '', + 'Also include participant email addresses' => '', + 'Attending' => '', + 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', + 'Birthday' => '生日', + 'By upcoming events first' => '', + 'CalDAV' => '', + 'Calendar' => '', + 'Calendar event' => '', + 'Calendar event content ID' => '', + 'Calendar events' => '', + 'Cancel Event' => '', + 'Cannot remove the participant!' => '', + 'Create entry' => '', + 'Custom reminder' => '', + 'Day' => '', + 'Days' => '', + 'Default reminder settings' => '', + 'Delete all events' => '', + 'Deleted' => '', + 'Description' => '描述', + 'Display events within the next X days' => '', + 'Do you want to install this module on your profile?' => '', + 'Download ICS' => '', + 'Edit' => '編輯', + 'Edit Event' => '', + 'Edit all events' => '', + 'Edit this and following events' => '', + 'Edit this event' => '', + 'Email' => 'E-mail', + 'Enable' => '開啟', + 'Enable Reminder' => '', + 'End' => '', + 'End Date' => '', + 'End Time' => '', + 'End time must be after start time!' => '', + 'Event' => '', + 'Event Type' => '', + 'Event Types' => '', + 'Event could not be deleted!' => '', + 'Event has been be deleted!' => '', + 'Event not found!' => '', + 'Export as {type}' => '', + 'Files' => '', + 'Filter' => '篩選條件', + 'Filter by types' => '', + 'Friday' => '', + 'Here you can configure default settings for all calendar events.' => '', + 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => '', + 'Here you can configure the default reminder settings for this event. Users are able to overwrite these settings by means of the
Set reminder link.' => '', + 'Hour' => '', + 'I\'m attending' => '', + 'ID' => '', + 'In addition to names, attendees’ email addresses will be included in ICS and CalDAV exports. Enable only if allowed by your privacy policy or data protection rules.' => '', + 'In order to add events to your profile, you have to enable the calendar module first.' => '', + 'Include participant information in exports' => '', + 'Interested' => '', + 'Invalid date or time format!' => '', + 'Invalid day of month given' => '', + 'Invalid event type id selected.' => '', + 'Invalid frequency given' => '', + 'Invalid interval given' => '', + 'Invalid week day selection' => '', + 'Invite' => '邀請', + 'Invited: {users}' => '', + 'JWT Key' => '', + 'JWT Token Expiration' => '', + 'Leave empty to list all events. Enter 0 to display only today\'s events.' => '', + 'List' => '清單', + 'Location' => '地點', + 'Manage entries' => '', + 'Maximum number of participants' => '', + 'Minute' => '', + 'Mode' => '', + 'Monday' => '', + 'Month' => '', + 'Monthly on day {dayOfMonth}' => '', + 'Monthly on the {position} {dayOfWeek}' => '', + 'Months' => '', + 'Never' => '從不', + 'Next' => '下一個', + 'No new participants were added.' => '', + 'No new participants were invited.' => '', + 'No reminder' => '', + 'Notify participants about changes' => '', + 'On date' => '', + 'Participant removed.' => '', + 'Participants' => '參與者', + 'Participation Status' => '', + 'Please select new participants.' => '', + 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => '', + 'Profile Calendar' => '', + 'Public' => '公開貼文', + 'Recurring' => '', + 'Reopen Event' => '', + 'Repeat every' => '', + 'Saturday' => '', + 'Select calendar...' => '', + 'Select space...' => '', + 'Set reminder' => '', + 'Show past events' => '', + 'Start Date' => '', + 'Start Time' => '', + 'Status cannot be updated.' => '', + 'Status updated.' => '', + 'Sunday' => '', + 'The event has already ended.' => '', + 'This event does not support recurrent events' => '', + 'Thursday' => '', + 'Time Zone' => '時區', + 'Title' => '標題', + 'Today' => '', + 'Tuesday' => '', + 'Upcoming {type}' => '', + 'Upcoming {type}: {title}' => '', + 'Use default reminder' => '', + 'Used for secure iCal feed URL generation and CalDAV authentication. Changing this key will revoke all existing iCal URLs and CalDAV logins. If empty, a random key is generated automatically.' => '', + 'User birthdays' => '', + 'Wednesday' => '', + 'Week' => '', + 'Weeks' => '', + 'When enabled, attendee names are included in ICS and CalDAV exports. The organizer is always included.' => '', + 'Year' => '', + 'Years' => '', + 'You cannot invite participants!' => '', + 'You don\'t have permission to delete this event!' => '', + 'You have an {type} coming up' => '', + 'You have an {type} coming up: {title}' => '', + 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => '', + 'You have been registered for the event "{contentTitle}", starting at {time}.' => '', + 'You have been registered for the event "{contentTitle}".' => '', + 'Your reminder settings for event: \'{title}\'' => '', + 'canceled' => '', + 'disabled' => '残疾', + 'first' => '', + 'forth' => '', + 'global' => '', + 'iCal' => '', + 'in seconds. 0 for no JWT token expiration.' => '', + 'last' => '', + 'on weekdays' => '', + 'second' => '', + 'third' => '', + '{displayName} Birthday' => '', + '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', + '{displayName} added you to the event "{contentTitle}".' => '', + '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '', + '{displayName} invited you to the event "{contentTitle}".' => '', + '{name} Calendar' => '', ]; From 7db2ebb1e3d3cd8ebc2a4d1a4d7ea01e01441834 Mon Sep 17 00:00:00 2001 From: Lucas Bartholemy Date: Fri, 5 Jun 2026 13:27:14 +0200 Subject: [PATCH 09/10] Release 1.9.0 --- docs/CHANGELOG.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 90286b6d..0430cb46 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,9 +1,9 @@ Changelog ========= -1.9.0 (TBD) ------------------------- -- Fix: HumHub v.19 Activity Handling +1.9.0 (June 5, 2026) +-------------------- +- Fix: HumHub 1.19 Activity Handling - Enh #673: Remove deprecations 1.8.15 (Unreleased) From 93df169c8441cb4d441d919f0084f0f3ff6377f0 Mon Sep 17 00:00:00 2001 From: HumHub Translations Date: Mon, 15 Jun 2026 03:30:19 +0000 Subject: [PATCH 10/10] Enh: Updated Translations (translate.humhub.org) --- messages/nl/views.php | 107 +++++++++++++++++++++--------------------- 1 file changed, 53 insertions(+), 54 deletions(-) diff --git a/messages/nl/views.php b/messages/nl/views.php index b06c7882..2ae3e040 100644 --- a/messages/nl/views.php +++ b/messages/nl/views.php @@ -1,57 +1,56 @@ ':count aanwezig', - ':count Declined' => ':count afgewezen', - ':count Invited' => ':count uitgenodigd', - ':count Undecided' => ':count onbepaald', - 'Create Event' => 'Maak gebeurtenis', - 'Create new event type' => 'Maak nieuw gebeurtenistype', - 'Edit Event' => 'Bewerk gebeurtenis', - 'Edit calendar' => 'Agenda bewerken', - 'Edit event type' => 'Bewerk gebeurtenistype', - 'Edit recurring event' => 'Bewerk herhalende gebeurtenis', - 'Upcoming events ' => 'Aankomende gebeurtenissen', - 'Additional information' => 'Extra informatie', - 'All' => 'Alle', - 'Are you sure want to remove the participant from the event?' => 'Weet u zeker dat u de deelnemer uit het gebeurtenis wilt verwijderen?', - 'Attend' => 'Deelnemen', - 'Attending' => 'Bijwonen', - 'Back' => 'Terug', - 'Calendars' => 'Agenda\'s', - 'Close' => 'Sluiten', - 'Decline' => 'Afwijzen', - 'Declined' => 'Afgewezen', - 'Defaults' => 'Standaard instellingen', - 'Event Types' => 'Gebeurtenis-types', - 'Everybody can participate' => 'Iedereen kan deelnemen', - 'Export' => 'Exporteren', - 'Filter' => 'Filter', - 'Filter events' => 'Gebeurtenissen filteren', - 'Followed spaces' => 'Gevolgde ruimtes', - 'Followed users' => 'Gevolgde gebruikers', - 'General' => 'Algemeen', - 'I\'m attending' => 'Ik ben aanwezig', - 'Invited' => 'Uitgenodigd', - 'Maybe' => 'Misschien', - 'Menu' => 'Menu', - 'My events' => 'Mijn gebeurtenissen', - 'My profile' => 'Mijn profiel', - 'My spaces' => 'Mijn ruimtes', - 'Next' => 'Volgende', - 'No participants' => 'Geen deelnemers', - 'Only by Invite' => 'Alleen op uitnodiging', - 'Open Calendar' => 'Open agenda', - 'Participants' => 'Deelnemers', - 'Recurrence' => 'Herhaling', - 'Reminder' => 'Herinnering', - 'Select calendars' => 'Kies kalenders', - 'Select event type...' => 'Kies een gebeurtenis-type...', - 'Settings' => 'Instellingen', - 'Snippet' => 'Codefragment', - 'Title' => 'Titel', - '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}.' => '', + ':count Attending' => ':count aanwezig', + ':count Declined' => ':count afgewezen', + ':count Invited' => ':count uitgenodigd', + ':count Undecided' => ':count onbepaald', + 'Create Event' => 'Maak gebeurtenis', + 'Create new event type' => 'Maak nieuw gebeurtenistype', + 'Edit Event' => 'Bewerk gebeurtenis', + 'Edit calendar' => 'Agenda bewerken', + 'Edit event type' => 'Bewerk gebeurtenistype', + 'Edit recurring event' => 'Bewerk herhalende gebeurtenis', + 'Upcoming events ' => 'Aankomende gebeurtenissen', + 'Additional information' => 'Extra informatie', + 'All' => 'Alle', + 'Are you sure want to remove the participant from the event?' => 'Weet u zeker dat u de deelnemer uit het gebeurtenis wilt verwijderen?', + 'Attend' => 'Deelnemen', + 'Attending' => 'Bijwonen', + 'Back' => 'Terug', + 'Calendars' => 'Agenda\'s', + 'Close' => 'Sluiten', + 'Decline' => 'Afwijzen', + 'Declined' => 'Afgewezen', + 'Defaults' => 'Standaard instellingen', + 'Event Types' => 'Gebeurtenis-types', + 'Everybody can participate' => 'Iedereen kan deelnemen', + 'Export' => 'Exporteren', + 'Filter' => 'Filter', + 'Filter events' => 'Gebeurtenissen filteren', + 'Followed spaces' => 'Gevolgde ruimtes', + 'Followed users' => 'Gevolgde gebruikers', + 'General' => 'Algemeen', + 'I\'m attending' => 'Ik ben aanwezig', + 'Invited' => 'Uitgenodigd', + 'Maybe' => 'Misschien', + 'Menu' => 'Menu', + 'My events' => 'Mijn gebeurtenissen', + 'My profile' => 'Mijn profiel', + 'My spaces' => 'Mijn ruimtes', + 'Next' => 'Volgende', + 'No participants' => 'Geen deelnemers', + 'Only by Invite' => 'Alleen op uitnodiging', + 'Open Calendar' => 'Open agenda', + 'Participants' => 'Deelnemers', + 'Recurrence' => 'Herhaling', + 'Reminder' => 'Herinnering', + 'Select calendars' => 'Kies kalenders', + 'Select event type...' => 'Kies een gebeurtenis-type...', + 'Settings' => 'Instellingen', + 'Snippet' => 'Codefragment', + 'Title' => 'Titel', + '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}.', ];